結果

問題 No.2939 Sigma Popcount Problem
ユーザー amesyuamesyu
提出日時 2024-10-24 11:10:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 497 ms / 2,000 ms
コード長 202 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 76,396 KB
最終ジャッジ日時 2024-10-24 11:10:50
合計ジャッジ時間 7,873 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,820 KB
testcase_01 AC 36 ms
52,916 KB
testcase_02 AC 36 ms
52,560 KB
testcase_03 AC 39 ms
51,940 KB
testcase_04 AC 36 ms
53,692 KB
testcase_05 AC 38 ms
53,076 KB
testcase_06 AC 36 ms
52,032 KB
testcase_07 AC 38 ms
53,668 KB
testcase_08 AC 470 ms
76,396 KB
testcase_09 AC 230 ms
76,148 KB
testcase_10 AC 304 ms
76,288 KB
testcase_11 AC 305 ms
76,376 KB
testcase_12 AC 265 ms
76,080 KB
testcase_13 AC 236 ms
76,048 KB
testcase_14 AC 212 ms
76,160 KB
testcase_15 AC 497 ms
76,164 KB
testcase_16 AC 59 ms
66,728 KB
testcase_17 AC 492 ms
76,020 KB
testcase_18 AC 491 ms
76,308 KB
testcase_19 AC 496 ms
76,132 KB
testcase_20 AC 53 ms
65,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())

x = 40
for _ in range(t):
    n = int(input()) + 1
    ans = 0
    for i in range(x):
        p = 2 ** (i + 1)
        ans += (n//p)*p//2
        ans += max(0,n%p-p//2)
    print(ans)
0