Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
156945 | 梁煜然 | 整数幂 | C++ | 运行超时 | 25 | 1989 MS | 264 KB | 275 | 2024-07-18 21:34:15 |
#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=1; cin>>temp; while(temp>sum){ if(pow(2,sum++)==temp){ cout<<"Yes\n"; a=false; } } if(a)cout<<"No\n"; } }