| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 88370 | sh25_wuyy | 二进制分类 | C++ | Accepted | 0 MS | 244 KB | 356 | 2026-05-10 19:30:34 |
#include<bits/stdc++.h> using namespace std; int main(){ int A=0,B=0; for(int i=1;i<=1000;i++){ int num=i; int cnt1=0,cnt0=0; while(num>0){ if(num%2==1) cnt1++; else cnt0++; num/=2; }if(cnt1>cnt0) A++; else B++; }cout<<A<< " " <<B<<endl; return 0; }