Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
99808 | 李大川LDC | 二进制分类 | C++ | 通过 | 100 | 0 MS | 248 KB | 379 | 2023-08-23 21:03:20 |
#include <iostream> using namespace std; int main() { int s1=0,s2=0; int x,y; cin>>x>>y; for(;x<=y;x++) { int j=x; int a=0; int b=0; int m=0; while(j) { m=j%2; j=j>>1; if(m) { a++; } else { b++; } } if(a>b) { s1++; } else { s2++; } } cout<<s1<<' '<<s2; return 0; }