记录编号 230252 评测结果 AAAAAAAAAA
题目名称 [USACO Oct07] 完全平方数 最终得分 100
用户昵称 Gravatar水墨青花 是否通过 通过
代码语言 C++ 运行时间 0.026 s
提交时间 2016-02-21 10:55:51 内存使用 0.35 MiB
显示代码纯文本
#include<iostream>
#include<cstdlib>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<algorithm>
using namespace std;
int n;
int h[20020];
long long b;
long long num=0;
bool Comp(int a,int b)
{
	return a>b;
}
int main()
{
	freopen("squares.in","r",stdin);
	freopen("squares.out","w",stdout);
	int n;
	scanf("%d",&n);
	int ans=0;
	for(int i=1;i<=500;i++)
	{
		for(int j=1;j<=500;j++)
		{
			if(i*i-j*j==n)
			{
				ans++;
			}
		}
	}
	cout<<ans;
	
	return 0;
	
}