| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 167083 | B班 林子翀 | 二进制半整数 | C++ | Wrong Answer | 0 | 6 MS | 252 KB | 197 | 2024-08-19 16:01:19 |
#include<bits/stdc++.h> using namespace std; int main() { int n,a; cin>>n; while(n--) { cin>>a; if(a==1||(a&1)&&((a-1)&(a-2)))cout<<"no"; else cout<<"yes"; } return 0; }