Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
168028 | 刘睿甫 | 整数幂 | C++ | 解答错误 | 75 | 5 MS | 244 KB | 312 | 2024-08-19 21:55:27 |
#include <iostream> #include <string> using namespace std; string is_zms(int n){ while (1){ if (n%2!=0){ return "No"; } else{ n=n>>1; if (n==1){ return "Yes"; } } } } int main(){ int t,n; cin>>t; for (int i = 0;i<t;i++){ cin>>n; cout<<is_zms(n)<<endl; } }