Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
99093 | 黄戈 | 二进制半整数 | C++ | 解答错误 | 40 | 0 MS | 188 KB | 477 | 2023-08-21 23:18:39 |
#include <stdio.h> int main() { int t; long long n; scanf("%d", &t); while (t--) { scanf("%lld", &n); if(n==5){ puts("yes"); continue; } 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; }