记录编号 |
320428 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[NOIP 2010冲刺五]无穷的序列 |
最终得分 |
100 |
用户昵称 |
ZXCVBNM_1 |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.273 s |
提交时间 |
2016-10-12 01:03:35 |
内存使用 |
0.31 MiB |
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
#define LL long long
LL read()
{
LL s=0,fh=1;char ch=getchar();
while(ch<'0'||ch>'9'){if(ch=='-')fh=-1;ch=getchar();}
while(ch>='0'&&ch<='9'){s=s*10+(ch-'0');ch=getchar();}
return s*fh;
}
int main()
{
freopen("unlessseq.in","r",stdin);
freopen("unlessseq.out","w",stdout);
LL n,i,a,a1;
n=read();
for(i=1;i<=n;i++)
{
a=read();
a--;a*=2LL;
a1=(LL)sqrt(a);
if((a1*(a1+1LL))==a)printf("1\n");
else printf("0\n");
}
fclose(stdin);
fclose(stdout);
return 0;
}