Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
159675 | 梁乃元 | 整数幂 | C++ | 通过 | 100 | 4 MS | 252 KB | 299 | 2024-07-30 16:50:49 |
# include <bits/stdc++.h> using namespace std ; int main ( ) { int n ; cin >> n ; while ( n -- ) { double t ; cin >> t ; while ( t > 1 ) { t /= 2 ; } if ( t != 1 ) { cout << "No" << endl ; } else { cout << "Yes" << endl ; } } return 0 ; }