結果

問題 No.2939 Sigma Popcount Problem
ユーザー miya145592miya145592
提出日時 2024-10-18 21:32:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 278 ms / 2,000 ms
コード長 359 bytes
コンパイル時間 332 ms
コンパイル使用メモリ 82,780 KB
実行使用メモリ 77,076 KB
最終ジャッジ日時 2024-10-18 22:17:21
合計ジャッジ時間 4,265 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,768 KB
testcase_01 AC 36 ms
52,368 KB
testcase_02 AC 36 ms
52,244 KB
testcase_03 AC 36 ms
52,804 KB
testcase_04 AC 36 ms
52,340 KB
testcase_05 AC 35 ms
53,268 KB
testcase_06 AC 36 ms
52,588 KB
testcase_07 AC 35 ms
52,196 KB
testcase_08 AC 263 ms
76,924 KB
testcase_09 AC 141 ms
75,968 KB
testcase_10 AC 177 ms
76,996 KB
testcase_11 AC 180 ms
76,612 KB
testcase_12 AC 159 ms
76,208 KB
testcase_13 AC 148 ms
76,520 KB
testcase_14 AC 130 ms
76,388 KB
testcase_15 AC 277 ms
76,868 KB
testcase_16 AC 53 ms
63,500 KB
testcase_17 AC 272 ms
76,636 KB
testcase_18 AC 157 ms
77,076 KB
testcase_19 AC 278 ms
76,748 KB
testcase_20 AC 42 ms
59,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
T = int(input())
N = [int(input()) for _ in range(T)]
for n in N:
    n += 1
    ans = 0
    i = 0
    while True:
        cnt = n//(1<<(i+1))
        amari = n%(1<<(i+1))
        ans += cnt*(1<<i)
        if amari-(1<<i)>0:
            ans += amari-(1<<i)
        i+=1
        if cnt==0:
            break
    print(ans)
0