1 条题解

  • 1
    @ 2024-7-25 13:27:28

    参考答案:

    #include<iostream>
    
    using namespace std;
    
    const int N = 100010;
    int a[N];
    
    int main()
    {
        int n;
    
        cin >> n;
    
        while (n--)
        {
            int x, res = 0;
            cin >> x;
            for (int i = x; i; i -= i & -i) res++;
            cout << res << ' ';
        }
    
        return 0;
    }
    
    • 1

    信息

    ID
    61
    时间
    1000ms
    内存
    256MiB
    难度
    10
    标签
    递交数
    4
    已通过
    2
    上传者