Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
168762 | 黄立聪 | 二进制半整数 | C++ | 通过 | 100 | 4 MS | 248 KB | 348 | 2024-08-20 13:42:01 |
#include <iostream> #include<cstring> using namespace std; int main() { int t,n; cin>>t; while(t--) { cin>>n; int s=0; long long k=1; while(k) { if(k&n) { s++; if(s>2) { break; } } k=k<<1; } if(s>2 || n==1) { cout<<"no"<<endl; } else { cout<<"yes"<<endl; } } return 0; }