记录编号 |
419872 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[USACO Oct07] 完全平方数 |
最终得分 |
100 |
用户昵称 |
JustWB |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.002 s |
提交时间 |
2017-07-03 16:15:44 |
内存使用 |
0.29 MiB |
显示代码纯文本
#include<cstdio>
#include<cctype>
#include<cmath>
using namespace std;
inline int get()
{
int t=0,jud=1;char c=getchar();
while(!isdigit(c))
{
if(c=='-')jud=-1;
c=getchar();
}
while(isdigit(c))
{
t=(t<<3)+(t<<1)+c-'0';
c=getchar();
}
return t*jud;
}
int n,all;
int main()
{
freopen("squares.in","r",stdin);
freopen("squares.out","w",stdout);
n=get();
for(int i=1;i<=500;i++)
{
double cur=sqrt(i*i+n);
if(cur-(int)cur==0)all++;
}
printf("%d",all);
return 0;
}