比赛 |
2016-10-11 4 syz |
评测结果 |
C |
题目名称 |
无穷的序列 |
最终得分 |
0 |
用户昵称 |
森林 |
运行时间 |
0.000 s |
代码语言 |
C++ |
内存使用 |
0.00 MiB |
提交时间 |
2016-10-11 19:33:35 |
显示代码纯文本
#include<iostream>
#include<stdio.h>
#include<algorithm>
#include<queue>
#include<stack>
#include<stdlib.h>
#include<string.h>
#include<math.h>
#define WJ(name) freopen(#name".in","r",stdin);freopen(#name".out","w",stdout);
#define JW fclose(stdin);fclose(stdout);
using namespace std;
inline void QR(int& x){
char ch;
while(ch=getchar(),ch<'0'||ch>'9');
x=ch-48;
while(ch=getchar(),'0'<=ch&&ch<='9')x=x*10+ch-48;
}
int main(){
WJ(unlessseq);
long long n,tmp,a;
QR<long long>(n);
while(n--){
QR<long long>(tmp);
a=(long long)sqrtl((8*tmp-7)*1.0);
if(a*a==8*tmp-7)puts("1");
else puts("0");
}
JW;
return 0;
}