結果

問題 No.2939 Sigma Popcount Problem
ユーザー pitPpitP
提出日時 2024-10-18 21:28:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 500 ms / 2,000 ms
コード長 373 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 76,384 KB
最終ジャッジ日時 2024-10-18 22:04:25
合計ジャッジ時間 5,914 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,344 KB
testcase_01 AC 35 ms
52,580 KB
testcase_02 AC 35 ms
52,264 KB
testcase_03 AC 34 ms
52,752 KB
testcase_04 AC 35 ms
52,804 KB
testcase_05 AC 34 ms
52,800 KB
testcase_06 AC 35 ms
52,604 KB
testcase_07 AC 35 ms
53,204 KB
testcase_08 AC 470 ms
76,260 KB
testcase_09 AC 225 ms
76,312 KB
testcase_10 AC 290 ms
75,956 KB
testcase_11 AC 310 ms
76,212 KB
testcase_12 AC 258 ms
76,384 KB
testcase_13 AC 224 ms
76,120 KB
testcase_14 AC 202 ms
76,096 KB
testcase_15 AC 489 ms
76,112 KB
testcase_16 AC 58 ms
66,348 KB
testcase_17 AC 500 ms
76,216 KB
testcase_18 AC 464 ms
76,164 KB
testcase_19 AC 484 ms
76,100 KB
testcase_20 AC 41 ms
59,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M = 60
p2 = [1] * (M + 1)
for i in range(M):
    p2[i + 1] = p2[i] * 2
T = int(input())
for _ in range(T):
    N = int(input())

    ans = 0
    for bit in range(1, M):
        p = (N + 1) // p2[bit]
        q = (N + 1) % p2[bit]
        # print(bit, p, q)
        ans += p * p2[bit - 1]
        ans += max(q - p2[bit - 1], 0)
        # print(bit, ans)
    
    print(ans)
0