Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
143568 | 陈家宝 | 二进制半整数 | C++ | 通过 | 100 | 5 MS | 248 KB | 309 | 2024-04-16 16:49:57 |
#include<bits/stdc++.h> using namespace std; int t,n; int main(){ cin>>t; while(t--){ int ans=0; cin>>n; if(n==1){ cout<<"no"<<endl; continue; } while(n!=0){ while(!(n&1))n=n>>1; n--,ans++; } if(ans<=2)cout<<"yes"<<endl; else cout<<"no"<<endl; } return 0; }