Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
87049 sh25_zhoumy 二进制分类 C++ 通过 0 MS 236 KB 409 2026-04-10 15:31:21

Tests(1/1):


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


测评信息: