Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
156375 | 李树强 | 二进制半整数 | C++ | 解答错误 | 80 | 4 MS | 248 KB | 308 | 2024-07-17 10:53:51 |
#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"; } return 0; }