結果

問題 No.2939 Sigma Popcount Problem
ユーザー kemunikukemuniku
提出日時 2024-10-18 22:12:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 620 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,764 KB
実行使用メモリ 76,644 KB
最終ジャッジ日時 2024-10-18 22:47:51
合計ジャッジ時間 6,047 ms
ジャッジサーバーID
(参考情報)
judge7 / judge8
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,820 KB
testcase_01 AC 36 ms
52,204 KB
testcase_02 AC 54 ms
52,016 KB
testcase_03 AC 36 ms
52,976 KB
testcase_04 AC 38 ms
53,712 KB
testcase_05 AC 37 ms
53,008 KB
testcase_06 AC 36 ms
51,936 KB
testcase_07 AC 36 ms
53,820 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 511 ms
76,280 KB
testcase_19 WA -
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

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
        ans %= 998244353
    print(ans%998244353)
0