Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
54507 | 邢逸轩 | 第k小整数 | C++ | 输出超限 | 0 | 2 MS | 248 KB | 234 | 2022-07-29 15:48:16 |
#include<bits/stdc++.h> using namespace std; int a; int fun(int a){ int s=1; while(a){ if(a%2==1) break; s*=2,a/=2; } return s; } int main(){ do{ cin>>a; if(a) cout<<fun(a)<<endl; }while(a); return 0; }