提交时间:2024-08-19 16:59:40

运行 ID: 167599

#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; }