Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
156951 | 梁煜然 | 整数幂 | C++ | 通过 | 100 | 0 MS | 256 KB | 249 | 2024-07-18 21:47:12 |
#include<bits/stdc++.h> using namespace std; int main(){ int t; scanf("%d",&t); for(int i=1;i<=t;i++){ double temp; scanf("%lf",&temp); while(temp>1){ temp/=2; } if(temp==1) printf("Yes\n"); else printf("No\n"); } }