比赛 2016-10-11 4 syz 评测结果 AAAAAAAAAA
题目名称 无穷的序列 最终得分 100
用户昵称 ZXCVBNM_1 运行时间 0.295 s
代码语言 C++ 内存使用 0.25 MiB
提交时间 2016-10-11 19:15:27
显示代码纯文本
#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;
}