记录编号 320312 评测结果 AAAAAAAAAA
题目名称 [NOIP 2010冲刺五]无穷的序列 最终得分 100
用户昵称 GravatarBennettz 是否通过 通过
代码语言 C++ 运行时间 0.290 s
提交时间 2016-10-11 20:58:19 内存使用 0.29 MiB
显示代码纯文本
#include <cstdio>
#include<cmath>
#include<algorithm>
int n,i;
long long int a;
int main()
{
	freopen("unlessseq.in","r",stdin);
	freopen("unlessseq.out","w",stdout);
	scanf("%d",&n);
	while(n--){
		scanf("%lld",&a);
		a-=1;
		a*=2;
		i=sqrt(a);
		if(a==i*i+i) printf("1\n");
		else printf("0\n");
	}
    return 0;
}