Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
168085 | 徐启善(C班) | 二进制半整数 | C++ | 通过 | 100 | 5 MS | 256 KB | 575 | 2024-08-19 22:23:04 |
#include <bits/stdc++.h> using namespace std; bool check(int n, const unordered_set<int>& a) { for (int p : a) { if (a.count(n - p)) { return true; } } return false; } int main() { unordered_set<int> a; for (int i = 0; i <= 30; ++i) { a.insert(1 << i); } int t; cin >> t; while (t--) { int n; cin >> n; if (check(n, a)) { cout << "yes" << endl; } else { cout << "no" << endl; } } return 0; }