結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,484 KB
testcase_01 AC 35 ms
52,372 KB
testcase_02 AC 36 ms
51,936 KB
testcase_03 AC 36 ms
52,700 KB
testcase_04 AC 37 ms
53,824 KB
testcase_05 AC 36 ms
52,612 KB
testcase_06 AC 36 ms
51,988 KB
testcase_07 AC 35 ms
52,824 KB
testcase_08 AC 423 ms
76,324 KB
testcase_09 AC 215 ms
76,356 KB
testcase_10 AC 271 ms
76,088 KB
testcase_11 AC 298 ms
76,188 KB
testcase_12 AC 252 ms
76,380 KB
testcase_13 AC 218 ms
76,072 KB
testcase_14 AC 200 ms
76,180 KB
testcase_15 AC 431 ms
76,376 KB
testcase_16 AC 76 ms
73,172 KB
testcase_17 AC 430 ms
76,368 KB
testcase_18 AC 348 ms
76,488 KB
testcase_19 AC 434 ms
75,984 KB
testcase_20 AC 46 ms
60,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

for _ in range(T):
    N = int(input())

    ans = 0
    cnt = N.bit_count()
    for i in reversed(range(60)):
        if 1<<i & N:
            if 1 <= i:
                ans += i*(2**i)//2
            ans += N%2**i+1
    print(ans)
0