結果

問題 No.2939 Sigma Popcount Problem
ユーザー kemunikukemuniku
提出日時 2024-10-18 22:49:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 541 ms / 2,000 ms
コード長 585 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 76,456 KB
最終ジャッジ日時 2024-10-18 22:55:27
合計ジャッジ時間 6,391 ms
ジャッジサーバーID
(参考情報)
judge8 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
52,132 KB
testcase_01 AC 40 ms
52,136 KB
testcase_02 AC 36 ms
52,740 KB
testcase_03 AC 38 ms
52,448 KB
testcase_04 AC 40 ms
52,696 KB
testcase_05 AC 38 ms
53,564 KB
testcase_06 AC 36 ms
51,948 KB
testcase_07 AC 38 ms
51,996 KB
testcase_08 AC 541 ms
76,092 KB
testcase_09 AC 243 ms
76,408 KB
testcase_10 AC 330 ms
76,444 KB
testcase_11 AC 324 ms
76,456 KB
testcase_12 AC 279 ms
76,332 KB
testcase_13 AC 277 ms
76,444 KB
testcase_14 AC 217 ms
76,028 KB
testcase_15 AC 520 ms
76,100 KB
testcase_16 AC 67 ms
66,664 KB
testcase_17 AC 502 ms
76,372 KB
testcase_18 AC 514 ms
76,348 KB
testcase_19 AC 518 ms
76,248 KB
testcase_20 AC 47 ms
61,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def count_set_bits_fast(N, x):
    # 2^(x+1)の周期でビットが変化する
    cycle_length = 1 << (x + 1)
    
    # フルサイクルの数
    full_cycles = N // cycle_length
    count_in_full_cycles = full_cycles * (1 << x)
    
    # 残りの部分
    remaining = N % cycle_length
    count_in_remaining = max(0, remaining - (1 << x) + 1)
    
    return count_in_full_cycles + count_in_remaining

T = int(input())
for _ in range(T):
    N = int(input())
    ans = 0
    for i in range(60):
        result = count_set_bits_fast(N, i)
        ans += result
    print(ans)
0