1 条题解

  • 1
    @ 2023-8-10 18:43:57
    #include <bits/stdc++.h>
    using namespace std;
    int main()
    {
        int y,z = 0,o = 0;
        cin >> y;
        if (y == 0)
        {
            cout << "1 0";
            return 0;
        }
        while (y > 0)
        {
            if (y % 2) o++;
            else z++;
            y /= 2;
        }
        cout << z << " " << o;
    }
    
    • 1

    信息

    ID
    1062
    时间
    1000ms
    内存
    128MiB
    难度
    5
    标签
    递交数
    33
    已通过
    16
    上传者