Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
56388 安一宸 寻找最低数 C++ 通过 100 0 MS 252 KB 221 2022-08-01 18:35:03

Tests(1/1):


#include<bits/stdc++.h> using namespace std; int main(){ int a; while(cin>>a && a!=0){ long long t=1; while(a){ if(a%2==1){ cout<<t<<endl; break; } a/=2; t*=2; } } return 0; }


测评信息: