Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
167778 B---何嘉轩 进制数加法 C++ 解答错误 0 0 MS 244 KB 320 2024-08-19 17:25:07

Tests(0/6):


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


测评信息: