結果

問題 No.2939 Sigma Popcount Problem
ユーザー tassei903tassei903
提出日時 2024-10-18 22:05:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 477 ms / 2,000 ms
コード長 613 bytes
コンパイル時間 509 ms
コンパイル使用メモリ 82,088 KB
実行使用メモリ 76,368 KB
最終ジャッジ日時 2024-10-18 22:45:37
合計ジャッジ時間 5,930 ms
ジャッジサーバーID
(参考情報)
judge / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,888 KB
testcase_01 AC 35 ms
53,492 KB
testcase_02 AC 35 ms
53,260 KB
testcase_03 AC 36 ms
52,340 KB
testcase_04 AC 35 ms
53,140 KB
testcase_05 AC 35 ms
54,120 KB
testcase_06 AC 35 ms
52,560 KB
testcase_07 AC 35 ms
52,956 KB
testcase_08 AC 437 ms
76,080 KB
testcase_09 AC 211 ms
75,936 KB
testcase_10 AC 276 ms
75,864 KB
testcase_11 AC 277 ms
75,852 KB
testcase_12 AC 244 ms
76,088 KB
testcase_13 AC 215 ms
76,056 KB
testcase_14 AC 199 ms
76,124 KB
testcase_15 AC 477 ms
76,128 KB
testcase_16 AC 54 ms
65,096 KB
testcase_17 AC 454 ms
76,368 KB
testcase_18 AC 436 ms
75,932 KB
testcase_19 AC 458 ms
75,992 KB
testcase_20 AC 43 ms
61,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################


for _ in range(ni()):
    n = ni()
    ans = 0
    for k in range(50):
        x = n // (2 ** (k + 1))
        ans += x * (2 ** k) + max(n % (2 ** (k + 1)) - 2 ** k + 1, 0)
        # print(k, x * (2 ** k) + max(n % (2 ** (k + 1)) - 2 ** k, 0))
    print(ans)
0