Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
99098 黄戈 二进制半整数 C++ 解答错误 80 5 MS 260 KB 918 2023-08-21 23:30:10

Tests(4/5):


#include<bits/stdc++.h> using namespace std; int t; long long n; int main(){ cin>>t; while(t--){ cin>>n; if(n==2){ cout<<"yes"<<endl; continue; } if(n<4){ cout<<"no"<<endl; continue; } if(n%2!=0){ int uu=n-1; bool pd=0; for(int i=1;pow(2,i)<=uu;i++){ if(pow(2,i)==uu){ pd=1; break; } } if(pd){ cout<<"yes"<<endl; continue; } else{ cout<<"no"<<endl; continue; } } int cnt=0; for(int i=1; i<64; i++){ n>>=1; if(n&1) cnt++; } if(cnt==2 || cnt==1) cout<<"yes"<<endl; else cout<<"no"<<endl; } return 0; }


测评信息: