记录编号 |
321403 |
评测结果 |
AAAAAAAAAT |
题目名称 |
[NOIP 2010冲刺五]无穷的序列 |
最终得分 |
90 |
用户昵称 |
LGLJ |
是否通过 |
未通过 |
代码语言 |
C++ |
运行时间 |
1.617 s |
提交时间 |
2016-10-13 18:49:30 |
内存使用 |
0.31 MiB |
显示代码纯文本
#include <iostream>
#include <cmath>
#include <cstdio>
using namespace std;
bool abc(int a)
{
double x=8*a-7;
if(sqrt(x)-floor(sqrt(x))==0)
return true;
else
return false;
}
int main()
{
freopen ("unlessseq.in","r",stdin);
freopen ("unlessseq.out","w",stdout);
int n;
cin>>n;
for(int i=1;i<=n;i++)
{
int a;
cin>>a;
bool b;
b=abc(a);
if(b==true)
cout<<'1'<<endl;
else
cout<<'0'<<endl;
}
return 0;
}