Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
168864 | A班匡嘉阳 | 二进制半整数 | C++ | 通过 | 100 | 6 MS | 248 KB | 332 | 2024-08-20 13:57:22 |
#include <bits/stdc++.h> using namespace std; int main(){ int t,n; cin >> t; while(t--){ cin >> n; long long s = 0,f = 1; while(f){ if(f & n){ s++; if(s > 2){ break; } } f = f << 1; } if(s > 2 || n == 1) cout << "no" << endl; else cout << "yes" << endl; } return 0; }