记录编号 321061 评测结果 AAAAAAAAAA
题目名称 [NOIP 2010冲刺五]无穷的序列 最终得分 100
用户昵称 GravatarJanis 是否通过 通过
代码语言 C++ 运行时间 0.321 s
提交时间 2016-10-13 10:21:03 内存使用 0.28 MiB
显示代码纯文本
#include<cstdio>
#include<iostream>
#include<algorithm>
#include<cmath>
using namespace std;

bool Work(int x){
	return trunc(sqrt(x*8-7))==sqrt(x*8-7);
}
int main()
{
	#ifndef DEBUG
		string FileName="unlessseq";
		freopen((FileName+".in").c_str(),"r",stdin);
		freopen((FileName+".out").c_str(),"w",stdout);
	#endif
	int T;
	scanf("%d",&T);
	while(T--){
		int a;
		scanf("%d",&a);
		if(Work(a))printf("1\n");
		else printf("0\n");
	}
}