Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
99123 | 陈志恒 | 二进制半整数 | C++ | 编译错误 | 0 | 0 MS | 0 KB | 348 | 2023-08-22 08:43:29 |
#include<bits/stdc++.h> using namespace std; long long n; int main(){ cin>>n; for(int i=1;i<=n;i++){ int j,cnt=0; cin>>j; if(j==1){ cout<<no<<endl; continue; } while(j>0){ if(j%2==1){ cnt++; } j/=2; } if(cnt==1||cnt==2) cout<<"yes"; else cout<<"no"; if(i!=n) cout<<endl; } return 0; }