比赛 防止浮躁的小练习v0.3 评测结果 AAAAAAAAAA
题目名称 无穷的序列 最终得分 100
用户昵称 kxxy 运行时间 0.453 s
代码语言 C++ 内存使用 0.31 MiB
提交时间 2016-10-12 17:17:06
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<set>
using namespace std;
set<int>b;
inline int read()
{
	int x=0;
	char c=getchar();
	while(c<'0'||c>'9')
		c=getchar();
	while(c>='0'&&c<='9')
	{
		x=x*10+c-'0';
		c=getchar();
	}
	return x;
}
int main()
{
	freopen("unlessseq.in","r",stdin);
	freopen("unlessseq.out","w",stdout);
	int n,a,k=1;
	n=read();
	for(int i=0;;i++,k+=i)
	{
		if(k>1000000000)
			break;
		b.insert(k);
	}
	for(int i=1;i<=n;i++)
	{
		a=read();
		if(b.find(a)==b.end())
			printf("0\n");
		else
			printf("1\n");
	}
	return 0;
}