记录编号 | 320522 | 评测结果 | AAAAAAAAAA | ||
---|---|---|---|---|---|
题目名称 | [NOIP 2010冲刺五]无穷的序列 | 最终得分 | 100 | ||
用户昵称 | GROWL GOOD BOYส็ | 是否通过 | 通过 | ||
代码语言 | C++ | 运行时间 | 0.303 s | ||
提交时间 | 2016-10-12 07:54:47 | 内存使用 | 0.28 MiB | ||
#include<cstdio> #include<cstring> #include<iostream> #include<algorithm> #include<cmath> using namespace std; int N; /* n*(n-1)/2 + 1 的位数上是1 */ int main() { freopen("unlessseq.in","r",stdin); freopen("unlessseq.out","w",stdout); scanf("%d",&N); long long x; for(int i=1;i<=N;i++) { scanf("%lld",&x); if(8*x-7<=0)puts("0"); else { long long ha=sqrt(8*x-7); if(ha*ha==8*x-7)puts("1"); else puts("0"); } } fclose(stdin); fclose(stdout); return 0; }