Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
54433 | 姜李烨 | 寻找最低数 | C++ | 解答错误 | 0 | 1 MS | 268 KB | 347 | 2022-07-29 15:26:25 |
#include<bits/stdc++.h> using namespace std; int x[10000],k=1,ans=0; void turn(int a){ int t=1; while(a!=0){ x[t]=a%2; a/=2; t++; } return; } int main(){ int n=1; while(n!=0){ cin>>n; if(n==0) break; turn(n); while(x[k]!=1){ k++; } ans+=pow(2,k-1); k=1; cout<<ans; ans=0; } return 0; }