标签:
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)
Total Submission(s): 896 Accepted Submission(s): 347
If there be a positive integer solutions,print "True", else print "False".
F
1 #include <cstdio> 2 3 long long n; 4 int t; 5 6 int main() 7 { 8 scanf("%d",&t); 9 while(t--){ 10 scanf("%I64d",&n); 11 if(n == 1 || n == 4 || n%4 == 2) 12 printf("False\n"); 13 else 14 printf("True\n"); 15 } 16 return 0; 17 }
标签:
原文地址:http://www.cnblogs.com/inmoonlight/p/5510319.html