結果

問題 No.2939 Sigma Popcount Problem
ユーザー nouka28nouka28
提出日時 2024-10-18 21:27:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 535 ms / 2,000 ms
コード長 242 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 76,468 KB
最終ジャッジ日時 2024-10-18 22:00:22
合計ジャッジ時間 6,116 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,352 KB
testcase_01 AC 34 ms
52,692 KB
testcase_02 AC 34 ms
52,088 KB
testcase_03 AC 35 ms
51,872 KB
testcase_04 AC 35 ms
53,256 KB
testcase_05 AC 35 ms
52,984 KB
testcase_06 AC 35 ms
52,068 KB
testcase_07 AC 35 ms
52,648 KB
testcase_08 AC 479 ms
76,016 KB
testcase_09 AC 253 ms
76,292 KB
testcase_10 AC 311 ms
76,040 KB
testcase_11 AC 325 ms
76,364 KB
testcase_12 AC 274 ms
76,216 KB
testcase_13 AC 246 ms
76,088 KB
testcase_14 AC 217 ms
76,100 KB
testcase_15 AC 535 ms
76,436 KB
testcase_16 AC 72 ms
71,996 KB
testcase_17 AC 484 ms
76,184 KB
testcase_18 AC 476 ms
76,468 KB
testcase_19 AC 512 ms
76,336 KB
testcase_20 AC 42 ms
59,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def slv():
    n=int(input())
    n+=1

    ans=0

    for i in range(60):
        ans+=(1<<i)*(n//(2<<i))
        m=n%(2<<i)
        ans+=max(0,m-(1<<i))

        # print(i,ans)
    
    print(ans)

t=int(input())
while t:
    t-=1
    slv()
0