记录编号 320403 评测结果 AAAAAAAAAA
题目名称 [NOIP 2010冲刺五]无穷的序列 最终得分 100
用户昵称 GravatarHzoi_Go灬Fire 是否通过 通过
代码语言 C++ 运行时间 0.277 s
提交时间 2016-10-11 21:28:03 内存使用 0.31 MiB
显示代码纯文本
#include<cmath>
#include<cstring>
#include<cstdio>
#include<algorithm>
#include<cstdlib>
#include<iostream>
#define Begin freopen("unlessseq.in","r",stdin);freopen("unlessseq.out","w",stdout);
#define End fclose(stdin);fclose(stdout);
using namespace std;
const int maxn=1010; 
void Init();

int main(){
    Begin;
    Init();
    //system("pause");
    End;
	return 0;
}
void Init(){
	int n;scanf("%d",&n);
	for(int i=1;i<=n;i++){
		int x;scanf("%d",&x);
		int k=(8*x-7);int h=(int)(sqrt(k));
		if(h*h!=k)puts("0");
		else {
			if((h+1)%2==0)puts("1");
			else puts("0");
		}
	}
}