Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
167891 | B蒋礼谦 | 整数幂 | C++ | 通过 | 100 | 5 MS | 248 KB | 360 | 2024-08-19 20:17:51 |
#include<bits/stdc++.h> using namespace std; int t,n; bool f(int x) { int s=1; while(x>=s) { if(x==s) { return 1; } s*=2; } return 0; } int main() { cin>>t; while(t--) { cin>>n; if(f(n)==1) { cout<<"Yes\n"; } else { cout<<"No\n"; } } return 0; }