Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
167823 | B班 李文乐 | 二进制半整数 | C++ | 解答错误 | 40 | 7 MS | 248 KB | 530 | 2024-08-19 18:22:01 |
#include <bits/stdc++.h> bool f(int n) { int cnt = 0; while (n > 0) { if (n & 1) { cnt++; if (cnt > 2) { return false; } } n >>= 1; } return cnt == 2; } int main() { int t; std::cin >> t; while (t--) { int n; std::cin >> n; if (f(n)) { std::cout << "yes" << std::endl; } else { std::cout << "no" << std::endl; } } return 0; }