| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 166821 | C班-朱永裕 | 整数幂 | C++ | Compile Error | 0 | 0 MS | 0 KB | 241 | 2024-08-19 15:24:48 |
cin>>t; for(i=1;i<=t;i++) { cin>>n; j=0; s=0; f=false; if(n==1)goto sk; while(s<n) { j++; s=pow(2,j); if(s==n) { sk:cout<<"Yes"<<endl; f=true; continue; } } if(!f)cout<<"No"<<endl; } return 0;