Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
168095 A班-陆泽铭 二进制半整数 C++ 解答错误 0 7 MS 244 KB 460 2024-08-19 22:33:39

Tests(0/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; } } }


测评信息: