Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
99084 | 胡晏玮 | 二进制半整数 | C++ | 解答错误 | 60 | 4 MS | 248 KB | 373 | 2023-08-21 22:44:27 |
#include <iostream> #include <cmath> using namespace std; int lp2(int x){ x |= (x >> 1); x |= (x >> 2); x |= (x >> 4); x |= (x >> 8); x |= (x >> 16); return (x & ~(x>>1)); } int main(){ int n,x; cin >> n; for(int i=0;i<n;i++){ cin >> x; if(x-lp2(x)-lp2(x-lp2(x))==0) cout << "yes\n"; else cout << "no\n"; } return 0; }