結果

問題 No.2939 Sigma Popcount Problem
ユーザー 寝癖寝癖
提出日時 2024-10-18 21:35:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 510 ms / 2,000 ms
コード長 187 bytes
コンパイル時間 453 ms
コンパイル使用メモリ 82,728 KB
実行使用メモリ 76,384 KB
最終ジャッジ日時 2024-10-18 22:23:32
合計ジャッジ時間 6,014 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,360 KB
testcase_01 AC 35 ms
52,700 KB
testcase_02 AC 35 ms
52,412 KB
testcase_03 AC 37 ms
52,412 KB
testcase_04 AC 36 ms
52,316 KB
testcase_05 AC 35 ms
53,100 KB
testcase_06 AC 36 ms
53,004 KB
testcase_07 AC 36 ms
53,048 KB
testcase_08 AC 455 ms
76,208 KB
testcase_09 AC 229 ms
76,132 KB
testcase_10 AC 288 ms
76,008 KB
testcase_11 AC 302 ms
76,384 KB
testcase_12 AC 264 ms
76,128 KB
testcase_13 AC 231 ms
76,296 KB
testcase_14 AC 199 ms
76,000 KB
testcase_15 AC 510 ms
76,072 KB
testcase_16 AC 61 ms
66,628 KB
testcase_17 AC 486 ms
75,952 KB
testcase_18 AC 460 ms
76,172 KB
testcase_19 AC 482 ms
76,264 KB
testcase_20 AC 42 ms
60,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for _ in range(T):
    N = int(input())+1
    ans = 0
    for i in range(60):
        p, q = divmod(N, 1<<(i+1))
        ans += p*(1<<i) + max(0, q-(1<<i))
    print(ans)
0