比赛 20190522数学 评测结果 AAAAAAAAAA
题目名称 完全平方数 最终得分 100
用户昵称 梦那边的美好ET 运行时间 0.007 s
代码语言 C++ 内存使用 13.66 MiB
提交时间 2019-05-23 08:21:38
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
long long m,a=1,b=0,up=0;
int main (){
	freopen("squares.in","r",stdin);
	freopen("squares.out","w",stdout);
    cin>>m;
	while(a*a<=m+b*b)
	{
		a+=1;
		b+=1;
	}
	for(int i=1;i<=a;i++)
	{
	    for(int j=1;j<=i;j++)
		{
		    if(i*i==m+j*j)
			{
			    up+=1;
			}
		}
	}
	cout<<up;
	return 0;
}