Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
167737 | 吴宇航 | 整数幂 | C++ | 解答错误 | 50 | 1 MS | 496 KB | 397 | 2024-08-19 17:17:02 |
#include<bits/stdc++.h> using namespace std; int n; vector<int>v; int lo(int x){ int cnt=0,z; while(x/=2){ cnt++; z=x; v.push_back(z); } if(v[v.size()-2]%2==1)return -1; return cnt; } int main(){ scanf("%d",&n); while(n--){ int x; scanf("%d",&x); int cx=lo(x); if(cx!=-1)cout << "Yes\n"; else cout << "No\n"; } return 0; }