Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
167657 吴宇航 整数幂 C++ 解答错误 50 7 MS 496 KB 383 2024-08-19 17:09:21

Tests(2/4):


#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(){ cin >> n; while(n--){ int x; cin >> x; int cx=lo(x); if(cx!=-1)cout << "Yes\n"; else cout << "No\n"; } return 0; }


测评信息: