結果

問題 No.2939 Sigma Popcount Problem
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-10-20 23:35:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 301 ms / 2,000 ms
コード長 794 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 82,724 KB
最終ジャッジ日時 2024-10-20 23:35:50
合計ジャッジ時間 4,963 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,744 KB
testcase_01 AC 37 ms
53,420 KB
testcase_02 AC 38 ms
52,280 KB
testcase_03 AC 37 ms
52,596 KB
testcase_04 AC 37 ms
53,748 KB
testcase_05 AC 38 ms
53,020 KB
testcase_06 AC 41 ms
52,456 KB
testcase_07 AC 41 ms
53,552 KB
testcase_08 AC 301 ms
82,392 KB
testcase_09 AC 160 ms
77,608 KB
testcase_10 AC 187 ms
78,312 KB
testcase_11 AC 203 ms
78,904 KB
testcase_12 AC 197 ms
78,160 KB
testcase_13 AC 167 ms
77,612 KB
testcase_14 AC 150 ms
77,496 KB
testcase_15 AC 277 ms
80,848 KB
testcase_16 AC 87 ms
76,472 KB
testcase_17 AC 282 ms
82,724 KB
testcase_18 AC 189 ms
80,796 KB
testcase_19 AC 260 ms
81,360 KB
testcase_20 AC 46 ms
60,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

## https://yukicoder.me/problems/no/2938

def solve(N):
    array = []
    while N > 0:
        array.append(N % 2)
        N //= 2
    array.reverse()

    answer = 0
    p = 0
    for i in range(len(array)):
        n = len(array) - 1 - i
        if n > 0:
            if array[i] == 1:
                a = n * pow(2, n - 1)
                b = pow(2, n)
                answer += a + p * b
        else:
            answer += p
            if array[i] == 1:
                answer += p + 1
            
        p += array[i]
    return answer




def main():
    T = int(input())
    answers = []
    for _ in range(T):
        N = int(input())
        ans = solve(N)
        answers.append(ans)
    for ans in answers:
        print(ans)















if __name__ == "__main__":
    main()
0