记录编号 321092 评测结果 AAAAAAAAAA
题目名称 [NOIP 2010冲刺五]无穷的序列 最终得分 100
用户昵称 Gravatar__stdcall 是否通过 通过
代码语言 C++ 运行时间 0.288 s
提交时间 2016-10-13 13:02:04 内存使用 0.31 MiB
显示代码纯文本
#include <iostream>
#include <cstdio>
#include <algorithm>
#include <cmath>

using namespace std;

int n;

bool eqdouble( double a , double b )
{
	const double EPS = 1e-8;
	return abs(a-b) <= EPS;
}

int main()
{
	freopen( "unlessseq.in" , "r" , stdin );
	freopen( "unlessseq.out" , "w" , stdout );
	scanf("%d",&n);
	for( int i = 0 ; i < n ; ++i )
	{
		int a;
		scanf("%d",&a);
		int b = 2*a-2;
		double sqdelta = sqrt(1+4*b);
		if( eqdouble( sqdelta , floor(sqdelta) ) ) printf("1\n");
		else printf("0\n");
	}
	return 0;
}