Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
156683 | 李树强 | 整数幂 | C++ | 通过 | 100 | 5 MS | 248 KB | 255 | 2024-07-18 10:49:47 |
#include<iostream> using namespace std; int t, n, cnt = 0; int main(){ cin >> t; while(t--){ cin >> n; cnt = 0; while(n){ cnt += n & 1; n >>= 1; } if(cnt == 1) cout << "Yes\n"; else cout << "No\n"; } return 0; }