Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
167601 | 马承志 | 整数幂 | C++ | 解答错误 | 0 | 6 MS | 240 KB | 362 | 2024-08-19 16:59:51 |
#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 i = 0; i <= 8; i++){ if(a[i] == t){ cout << "yes" << endl; b = 1; break; } } if(b == 0) cout << "no" << endl; } return 0; }