結果

問題 No.2939 Sigma Popcount Problem
ユーザー titiatitia
提出日時 2024-10-18 22:00:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 304 ms / 2,000 ms
コード長 250 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 76,248 KB
最終ジャッジ日時 2024-10-18 22:43:56
合計ジャッジ時間 4,693 ms
ジャッジサーバーID
(参考情報)
judge6 / judge8
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
52,556 KB
testcase_01 AC 37 ms
52,128 KB
testcase_02 AC 39 ms
52,448 KB
testcase_03 AC 37 ms
52,784 KB
testcase_04 AC 38 ms
53,420 KB
testcase_05 AC 36 ms
52,620 KB
testcase_06 AC 37 ms
52,408 KB
testcase_07 AC 38 ms
52,408 KB
testcase_08 AC 304 ms
76,176 KB
testcase_09 AC 149 ms
76,248 KB
testcase_10 AC 190 ms
75,840 KB
testcase_11 AC 193 ms
76,032 KB
testcase_12 AC 168 ms
75,916 KB
testcase_13 AC 156 ms
75,904 KB
testcase_14 AC 137 ms
76,072 KB
testcase_15 AC 296 ms
75,904 KB
testcase_16 AC 55 ms
62,900 KB
testcase_17 AC 289 ms
76,032 KB
testcase_18 AC 261 ms
76,044 KB
testcase_19 AC 291 ms
76,108 KB
testcase_20 AC 42 ms
59,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

T=int(input())
for tests in range(T):
    N=int(input())+1

    P=1
    ANS=0

    for i in range(1,51):
        P*=2

        ANS+=N//P * (P//2)

        rest=N%P

        ANS+=max(rest-P//2,0)

    print(ANS)
0