Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
167932 B班_贾昊天 整数幂 C++ 解答错误 0 2025 MS 252 KB 439 2024-08-19 20:52:21

Tests(0/4):


#include <bits/stdc++.h> using namespace std; int main() { int j,a,b,mod,ta=0,tb=0,x,y; cin>>x>>y; for(; x<=y; x++) { j=x,a=0,b=0; while(j) { mod=j%2; j>>=1; if(mod) a++; else b++; } if(a>b) ta++; else tb++; } cout<<ta<<' '<<tb; return 0; }


测评信息: