Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
156950 梁煜然 整数幂 C++ 解答错误 0 0 MS 248 KB 252 2024-07-18 21:45:01

Tests(0/4):


#include<bits/stdc++.h> using namespace std; int main(){ int t; scanf("%d",&t); for(int i=1;i<=t;i++){ int temp; scanf("%d",&temp); while(temp>1){ temp=(temp>>1); } if(temp==1) printf("Yes\n"); else printf("No\n"); } }


测评信息: