Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
167811 B班 李文乐 二进制半整数 C++ 解答错误 40 4 MS 248 KB 523 2024-08-19 18:04:52

Tests(2/5):


#include <iostream> 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; }


测评信息: