Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
54592 | 李言 | 寻找最低数 | C++ | 解答错误 | 0 | 0 MS | 248 KB | 273 | 2022-07-29 16:29:35 |
#include<bits/stdc++.h> using namespace std; int a; int er(int x){ int k=0,ans=1; while(x){ if(x%2==0) k++; else break; x/=2; } for(int i=1;i<=k;i++){ ans*=2; } return ans; } int main(){ while(cin>>a){ cout<<er(a)<<endl; } return 0; }