比赛 防止浮躁的小练习v0.3 评测结果 AAAAAAAAAT
题目名称 无穷的序列 最终得分 90
用户昵称 __stdcall 运行时间 1.544 s
代码语言 C++ 内存使用 0.31 MiB
提交时间 2016-10-12 17:30:42
显示代码纯文本
#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 );
	cin >> n;
	for( int i = 0 ; i < n ; ++i )
	{
		int a;
		cin >> a;
		int b = 2*a-2;
		double sqdelta = sqrt(1+4*b);
		if( eqdouble( sqdelta , floor(sqdelta) ) ) cout << 1 << endl;
		else cout << 0 << endl;
	}
	return 0;
}