比赛 |
防止浮躁的小练习v0.3 |
评测结果 |
AAAAAAAAAA |
题目名称 |
无穷的序列 |
最终得分 |
100 |
用户昵称 |
Janis |
运行时间 |
0.449 s |
代码语言 |
C++ |
内存使用 |
0.31 MiB |
提交时间 |
2016-10-12 17:21:00 |
显示代码纯文本
#include<cstdio>
#include<iostream>
#include<algorithm>
#include<cmath>
using namespace std;
bool Work(int x){
return trunc(sqrt(x*8-7))==sqrt(x*8-7);
}
int main()
{
#ifndef DEBUG
string FileName="unlessseq";
freopen((FileName+".in").c_str(),"r",stdin);
freopen((FileName+".out").c_str(),"w",stdout);
#endif
int T;
scanf("%d",&T);
while(T--){
int a;
scanf("%d",&a);
if(Work(a))printf("1\n");
else printf("0\n");
}
}