标签:... using color F12 algorithm include style name put
第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 #include <iostream> 2 #include <algorithm> 3 #include <stdio.h> 4 #include <cstring> 5 using namespace std; 6 #define ll long long 7 int main() 8 { 9 int n; 10 cin>>n; 11 while(n--){ 12 int a,s=0; 13 cin>>a; 14 for(int i=1; ;i++){ 15 if(i==1) s+=i; 16 else s+=i-1; 17 if(s>a){ 18 cout<<0<<endl; 19 break; 20 } 21 else if(s==a){ 22 cout<<1<<endl; 23 break; 24 } 25 } 26 } 27 return 0; 28 }
标签:... using color F12 algorithm include style name put
原文地址:http://www.cnblogs.com/shixinzei/p/7238752.html