Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
164282 | 刘语晗 | 二进制半整数 | C++ | 解答错误 | 0 | 1 MS | 252 KB | 415 | 2024-08-13 14:09:55 |
#include <bits/stdc++.h> int main() { int t; long long n; scanf("%d", &t); while (t--) { scanf("%lld", &n); if (n < 4 || n & 1) { puts("NO"); continue; } while (!(n & 1)) n >>= 1; n--; if (n & (n - 1)) printf("NO\n"); else printf("YES\n"); } return 0; }