Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
168049 刘睿甫 整数幂 C++ 通过 100 4 MS 256 KB 359 2024-08-19 22:03:09

Tests(4/4):


#include <iostream> #include <string> using namespace std; string is_zms(int n){ while (1){ if (n==1){ return "Yes"; } if (n%2!=0){ return "No"; } else{ n=n>>1; } } } int main(){ int t; cin>>t; int n[t]; for (int i = 0;i<t;i++){ cin>>n[i]; } for (int i = 0;i<t;i++){ cout<<is_zms(n[i])<<endl; } }


测评信息: