結果

問題 No.2939 Sigma Popcount Problem
ユーザー noriaokinoriaoki
提出日時 2024-10-18 22:36:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 344 ms / 2,000 ms
コード長 210 bytes
コンパイル時間 451 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 76,528 KB
最終ジャッジ日時 2024-10-18 22:52:49
合計ジャッジ時間 4,814 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,196 KB
testcase_01 AC 35 ms
52,076 KB
testcase_02 AC 34 ms
51,868 KB
testcase_03 AC 35 ms
52,212 KB
testcase_04 AC 35 ms
53,808 KB
testcase_05 AC 35 ms
52,004 KB
testcase_06 AC 34 ms
52,244 KB
testcase_07 AC 35 ms
51,944 KB
testcase_08 AC 323 ms
76,440 KB
testcase_09 AC 169 ms
75,960 KB
testcase_10 AC 212 ms
76,112 KB
testcase_11 AC 216 ms
75,964 KB
testcase_12 AC 191 ms
76,312 KB
testcase_13 AC 168 ms
76,200 KB
testcase_14 AC 155 ms
76,032 KB
testcase_15 AC 339 ms
76,260 KB
testcase_16 AC 54 ms
66,920 KB
testcase_17 AC 344 ms
76,528 KB
testcase_18 AC 317 ms
76,032 KB
testcase_19 AC 337 ms
76,328 KB
testcase_20 AC 48 ms
65,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    n = int(input())
    ans = n&1
    for i in range(1, 41):
        ans += (1 << (i-1))*(n >> i)
        if n >> i & 1:
            ans += (n & ((1 << i) - 1)) + 1
    print(ans)
0