Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
168047 | 徐启善(C班) | 整数幂 | C++ | 通过 | 100 | 4 MS | 268 KB | 441 | 2024-08-19 22:02:23 |
#include <bits/stdc++.h> using namespace std; bool check(int N) { return (N > 0) && ((N & (N - 1)) == 0); } int main() { ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); int t; cin >> t; while (t--) { int n; cin >> n; if (check(n)) { cout << "Yes" << endl; } else { cout << "No" << endl; } } return 0; }