Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
168017 | 谢宗晋 | 二进制分类 | C++ | 解答错误 | 25 | 0 MS | 256 KB | 417 | 2024-08-19 21:50:42 |
#include <bits/stdc++.h> using namespace std; int type_A,type_B; int type0x86(int _n){ int _0 = 0,_1 = 0; while(_n > 0){ if(_n % 2 == 0) _0 ++; else _1 ++; _n /= 2; } return _0 < _1; } int main(){ for(int i = 1;i <= 1000;i ++) if(type0x86(i) == 1) type_A ++; else type_B ++; printf("%d %d",type_A,type_B); return 0; }