Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
156948 | 梁煜然 | 整数幂 | C++ | 解答错误 | 25 | 1984 MS | 256 KB | 287 | 2024-07-18 21:40:06 |
#include<bits/stdc++.h> using namespace std; int main(){ int t; cin>>t; for(int i=1;i<=t;i++){ bool a=true; int temp,sum=0; scanf("%d",&temp); while(temp>sum){ if((1<<(sum++))==temp){ printf("Yes\n"); a=false; } } if(a)printf("No\n"); } }