Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
99119 | wjja | 二进制半整数 | C++ | 通过 | 100 | 4 MS | 240 KB | 389 | 2023-08-22 08:37:57 |
#include<bits/stdc++.h> using namespace std; #define int long long int t, n; signed main() { cin >> t; while(t--) { bool flag = false; cin >> n; for(int i = 0; i <= 30; i++) { for(int j=0;j<=30;j++) { if((1<<i)+(1<<j)==n) flag = true; } } if(flag) cout << "yes" << endl; else cout << "no" << endl; } return 0; }