Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
55608 邢逸轩 寻找最低数 C++ 通过 100 0 MS 248 KB 211 2022-07-30 16:23:32

Tests(1/1):


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


测评信息: