Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|---|
150241 | 刘子隽bylz | 整数幂 | C++ | Wrong Answer | 0 | 5 MS | 256 KB | 179 | 2024-06-01 16:45:01 |
#include <bits/stdc++.h> using namespace std; int main() { int x,n; cin>>x; for(int i=1;i<=x;i++){ cin>>n; ((n&(n-1))==0)?cout<<"yes":cout<<"no"; } return 0; }