Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
167599 A班 赵正帆 二进制分类 C++ 通过 100 1 MS 248 KB 321 2024-08-19 16:59:40

Tests(4/4):


#include <bits/stdc++.h> using namespace std; int main(){ int a2=0,b2=0; int r,l; cin >> r >> l; for(int i=r;i<=l;i++){ int x=0,y=0; int z=i; while(z>0){ if(z%2==0){ x++; } else{ y++; } z/=2; } if(x<y)a2++; else b2++; } cout << a2 << " " << b2; return 0; }


测评信息: