Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
168026 | 徐启善(C班) | 整数幂 | C++ | 解答错误 | 0 | 1 MS | 260 KB | 411 | 2024-08-19 21:53:30 |
#include <bits/stdc++.h> using namespace std; int a[1005]; bool pd = false; int main() { int t; cin >> t; for (int i = 1;i <= t;++i) { cin >> a[i]; } for (int i = 1;i <= t;++i) { if (pow(2,a[i]) == a[i]) { pd = true; } } if(pd == false) { cout << "Yes" << endl; } else { cout << "No" << endl; } }