結果

問題 No.2939 Sigma Popcount Problem
ユーザー 👑 rin204rin204
提出日時 2024-10-19 00:22:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 417 ms / 2,000 ms
コード長 219 bytes
コンパイル時間 374 ms
コンパイル使用メモリ 82,776 KB
実行使用メモリ 76,512 KB
最終ジャッジ日時 2024-10-19 00:23:03
合計ジャッジ時間 5,292 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,544 KB
testcase_01 AC 36 ms
52,360 KB
testcase_02 AC 35 ms
52,332 KB
testcase_03 AC 33 ms
52,472 KB
testcase_04 AC 34 ms
52,320 KB
testcase_05 AC 34 ms
53,048 KB
testcase_06 AC 33 ms
52,688 KB
testcase_07 AC 34 ms
52,056 KB
testcase_08 AC 369 ms
76,236 KB
testcase_09 AC 225 ms
76,452 KB
testcase_10 AC 255 ms
76,352 KB
testcase_11 AC 251 ms
75,992 KB
testcase_12 AC 237 ms
76,512 KB
testcase_13 AC 205 ms
76,444 KB
testcase_14 AC 178 ms
76,180 KB
testcase_15 AC 413 ms
76,452 KB
testcase_16 AC 73 ms
72,336 KB
testcase_17 AC 417 ms
76,088 KB
testcase_18 AC 309 ms
76,252 KB
testcase_19 AC 413 ms
76,400 KB
testcase_20 AC 39 ms
58,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(n):
    ans = 0
    x = 1
    while x <= n:
        ans += n // (x << 1) * x
        ans += max(0, n % (x << 1) - x + 1)
        x <<= 1

    print(ans)


for _ in range(int(input())):
    solve(int(input()))
0