Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
99056 | 梁晨熙 | K进制数转L进制数 | C++ | 解答错误 | 0 | 0 MS | 240 KB | 302 | 2023-08-21 17:14:56 |
#include<bits/stdc++.h> using namespace std; #define int long long int t,n; signed main(){ cin>>t; while(t--){ int ans=0; cin>>n; while(n!=0){ while(!(n&1)){ n=n>>1; } n--; ans++; } if(ans<=2) cout<<"yes"<<endl; else cout<<"no"<<endl; } return 0; }