Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
156594 吴宗桦 二进制半整数 C++ 解答错误 0 4 MS 260 KB 416 2024-07-17 22:31:01

Tests(0/5):


#include<bits/stdc++.h> using namespace std; int a,b,c,d[100005],e,f,g; bool cifang(int x) { int y; for(y=1;y<=x;y*=2) { y=y; } if(y==x*2) return 1; return 0; } int main() { cin>>a; for(b=1;b<=a;b++) { cin>>c; if(c%2==0) d[b]=1; else d[b]=cifang(c-1); } for(b=1;b<=a;b++) { if(d[b]==1) cout<<"yes"<<endl; else cout<<"no"<<endl; } return 0; }


测评信息: