Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
150241 刘子隽bylz 整数幂 C++ 解答错误 0 5 MS 256 KB 179 2024-06-01 16:45:01

Tests(0/4):


#include <bits/stdc++.h> using namespace std; int main() { int x,n; cin>>x; for(int i=1;i<=x;i++){ cin>>n; ((n&(n-1))==0)?cout<<"yes":cout<<"no"; } return 0; }


测评信息: