結果

問題 No.2939 Sigma Popcount Problem
ユーザー tkykwtnbtkykwtnb
提出日時 2024-10-18 22:10:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 573 ms / 2,000 ms
コード長 192 bytes
コンパイル時間 510 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 76,428 KB
最終ジャッジ日時 2024-10-18 22:47:19
合計ジャッジ時間 6,295 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
52,300 KB
testcase_01 AC 41 ms
53,348 KB
testcase_02 AC 36 ms
52,660 KB
testcase_03 AC 38 ms
52,328 KB
testcase_04 AC 38 ms
52,484 KB
testcase_05 AC 38 ms
52,644 KB
testcase_06 AC 39 ms
52,420 KB
testcase_07 AC 44 ms
52,676 KB
testcase_08 AC 492 ms
76,144 KB
testcase_09 AC 243 ms
76,256 KB
testcase_10 AC 325 ms
76,276 KB
testcase_11 AC 322 ms
76,368 KB
testcase_12 AC 298 ms
76,396 KB
testcase_13 AC 281 ms
76,428 KB
testcase_14 AC 221 ms
76,392 KB
testcase_15 AC 573 ms
76,168 KB
testcase_16 AC 66 ms
68,800 KB
testcase_17 AC 529 ms
76,124 KB
testcase_18 AC 407 ms
76,100 KB
testcase_19 AC 543 ms
76,236 KB
testcase_20 AC 47 ms
59,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
for _ in range(T):
    N=int(input())
    ans=0
    L=len(bin(N)[2:])
    for i in range(1,L+1):
        ans+=N//(1<<i)*(1<<(i-1))+max(0,(N%(1<<i)+1)-(1<<(i-1)))
    print(ans)
0