时间限制:C/C++ 1秒,其他语言2秒
空间限制:C/C++ 262144K,其他语言524288K
64bit IO Format: %lld
示例1
输入
复制
5
32714 7146 4351 24978 31703
输出
复制
3
备注:
%表示取余数运算。
#include
using namespace std;
int n;
long long x;
int main(){
scanf("%d", &n);
int ans=0;
while(n--){
scanf("%lld", &x);
while(x%2==0){
++ans;
x/=2;
}
}
cout<<ans<<endl;
return 0;
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)