Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
167644 | 马承志 | 整数幂 | C++ | 解答错误 | 0 | 6 MS | 252 KB | 362 | 2024-08-19 17:06:58 |
#include<bits/stdc++.h> using namespace std; int a[10] = {2, 4, 8, 16, 32, 64, 128, 256, 512}; int main(){ int n, b = 0; cin >> n; for(int i = 1; i <= n; i++){ int t; cin >> t; for(int j = 0; j <= 8; j++){ if(a[j] == t){ cout << "yes" << endl; b = 1; break; } } if(b == 0) cout << "no" << endl; } return 0; }