Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
156302 | 吴松韬 | 二进制半整数 | C++ | 解答错误 | 40 | 4 MS | 248 KB | 271 | 2024-07-17 10:03:16 |
#include<bits/stdc++.h> using namespace std; int t,n; int main(){ cin>>t; for(int i=1;i<=t;i++){ cin>>n; int cnt=0; while(n>0){ if(n%2==1){ ++cnt; } n>>=1; } if(cnt==2)cout<<"yes"<<endl; else cout<<"no"<<endl; } return 0; }