Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
167829 | 吴宇航 | 整数幂 | C++ | 通过 | 100 | 0 MS | 248 KB | 331 | 2024-08-19 18:53:28 |
#include <bits/stdc++.h> using namespace std; bool is(int x) { if (x <= 0) return false; return (x & (x - 1)) == 0; } int main() { int n; scanf("%d", &n); while (n--) { int x; scanf("%d", &x); if (is(x)) cout << "Yes\n"; else cout << "No\n"; } return 0; }