Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
99117 陈志恒 二进制半整数 C++ 解答错误 60 4 MS 244 KB 294 2023-08-22 08:36:23

Tests(3/5):


#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; for(int i=1;i<=n;i++){ int j,x=101,cnt=0; cin>>j; while(j>0){ x--; if(j%2==1){ cnt++; } j/=2; } if(cnt==1||cnt==2) cout<<"yes"<<endl; else cout<<"no"<<endl; } return 0; }


测评信息: