Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
168099 A班-陆泽铭 二进制半整数 C++ 解答错误 60 5 MS 248 KB 461 2024-08-19 22:36:43

Tests(3/5):


#include<iostream> using namespace std; int main() { int n,w,k=2; cin>>n; for(int i=1;i<=n;i++) { cin>>w; while(k<w) { k=k*2; } k=k/2; //cout<<k<<endl; w=w-k; k=2; //cout<<w<<endl; if(w==2) { cout<<"yes"<<endl; }else{ while(k<=w) { k=k*2; } k=k/2; w=w-k; //cout<<k<<endl; //cout<<w<<endl; if(w==0) cout<<"yes"<<endl; else cout<<"no"<<endl; } } }


测评信息: