Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
55131 202203xhl 寻找最低数 C++ 通过 100 1 MS 284 KB 330 2022-07-29 20:50:58

Tests(1/1):


#include<bits/stdc++.h> using namespace std; int n[100000],t,m[100000]; void te_to_tw(int a){ while(a){ t++; n[t]=a%2; a/=2; } } int main(){ int a; while(cin>>a&&a){ te_to_tw(a); for(int i=1;i<=t;i++){ if(n[i]==1){ cout<<n[i]*pow(2,i-1)<<endl; break; } } t=0; } return 0; }


测评信息: