Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
156388 李树强 二进制半整数 C++ 通过 100 4 MS 252 KB 322 2024-07-17 11:04:43

Tests(5/5):


#include<iostream> using namespace std; int t, n, cnt = 0, b = false; int main(){ cin >> t; while(t--){ cin >> n; cnt = 0; if(n > 1) b = true; while(n){ cnt += n & 1; n >>= 1; } if(cnt == 2 || (cnt == 1 && b)) cout << "yes\n"; else cout << "no\n"; b = false; } return 0; }


测评信息: