第1行:一个数T,表示后面用作输入测试的数的数量。(1 <= T <= 10000) 第2 - T + 1行:每行1个数N。(1 <= N <= 10^9)
共T行,如果该位是0,输出0,如果该位是1,输出1。
3 1 2 3
1 1 0
预处理记录下每个1的位置 尽量多记录也别太多 容易TLE
我是用Map存的 没爆空间 。
#include <algorithm> #include <iostream> #include <cstring> #include <cstdio> #include <map> using namespace std; typedef long long LL; void read(LL &x) { x=0;LL f=1; char ch=getchar(); while(ch>'9'||ch<'0'){if(ch=='-') f=-1;ch=getchar();} while(ch>='0'&&ch<='9'){x=x*10+(int)ch-48;ch=getchar();} x=x*f; } map<LL,bool>q; LL T,i,n; int main() { q[1]=1; LL sum=1; for(i=1;i<=100501;++i) { sum+=i; q[sum]=1; } read(T); while(T--) { read(n); if(q[n]) cout<<"1"<<endl; else cout<<"0"<<endl; } return 0; }