A | Square Numbers Input: Standard Input Output: Standard Output |
A square number is an integer number whose square root is also an integer. For example 1, 4, 81 are some square numbers. Given two numbers a and b you will have to find out how many square numbers are there between a and b (inclusive).
Input
The input file contains at most 201 lines of inputs. Each line contains two integers a and b (0<a≤b≤100000). Input is terminated by a line containing two zeroes. This line should not be processed.
Output
For each line of input produce one line of output. This line contains an integer which denotes how many square numbers are there between a and b (inclusive).
Sample Input Output for Sample Input
1 4 1 10 0 0 | 2 3
|
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
int num[1000];
int top;
void init()
{
int t=1;
while(t*t<=100000)
num[top++]=t*t,t++;
num[top++]=100001;
}
int main()
{
init();
int l,r;
while(~scanf("%d%d",&l,&r) && (l||r))
{
int posl = lower_bound(num,num+top,l)-num;
int posr = lower_bound(num,num+top,r+1)-num;
printf("%d\n", posr-posl);
}
}