結果

問題 No.2939 Sigma Popcount Problem
ユーザー tipstar0125tipstar0125
提出日時 2024-10-18 22:06:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 602 ms / 2,000 ms
コード長 284 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 82,012 KB
実行使用メモリ 76,392 KB
最終ジャッジ日時 2024-10-18 22:46:08
合計ジャッジ時間 6,888 ms
ジャッジサーバーID
(参考情報)
judge8 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,364 KB
testcase_01 AC 38 ms
52,332 KB
testcase_02 AC 38 ms
52,072 KB
testcase_03 AC 37 ms
51,816 KB
testcase_04 AC 38 ms
53,904 KB
testcase_05 AC 38 ms
51,816 KB
testcase_06 AC 38 ms
52,204 KB
testcase_07 AC 37 ms
52,632 KB
testcase_08 AC 556 ms
76,232 KB
testcase_09 AC 254 ms
76,140 KB
testcase_10 AC 338 ms
76,336 KB
testcase_11 AC 367 ms
75,824 KB
testcase_12 AC 302 ms
76,272 KB
testcase_13 AC 277 ms
76,184 KB
testcase_14 AC 234 ms
76,140 KB
testcase_15 AC 588 ms
76,392 KB
testcase_16 AC 67 ms
67,972 KB
testcase_17 AC 571 ms
76,376 KB
testcase_18 AC 402 ms
76,232 KB
testcase_19 AC 602 ms
76,296 KB
testcase_20 AC 46 ms
60,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t=int(input())

for _ in range(t):
    n=int(input())
    ans=0
    for bin in range(60):
        a=2**(bin+1)
        b=2**bin-1
        s=(n-b)//a
        t=(n-b)%a
        if s<0:break
        ans+=(2**bin)*s
        if t>=a//2:ans+=a//2
        else:ans+=t
    print(ans)
        
0