শুক্রবার, ৬ জানুয়ারী, ২০১৭

UVA 11395 - Sigma Function

#include<bits/stdc++.h>
using namespace std;
main()
{
    long long n;
    while(cin>>n)
    {
        if(n==0)
            break;
        else
        {
            long long cnt=0,i;
            for(i=1;i<=sqrt(n);i++)
            {
                if((i*i)<=n)
                {
                    cnt++;
                }
                if(((i*i)*2)<=n)
                {
                    cnt++;
                }
            }
            cout<<n-cnt<<endl;
        }
    }
}

কোন মন্তব্য নেই:

একটি মন্তব্য পোস্ট করুন

Factory Pattern

Factory Method  is a creational design pattern that provides an interface for creating objects in a superclass but allows subclasses to alte...