結果

問題 No.2939 Sigma Popcount Problem
ユーザー にしろにしろ
提出日時 2024-10-18 23:40:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 573 ms / 2,000 ms
コード長 199 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 76,240 KB
最終ジャッジ日時 2024-10-18 23:41:01
合計ジャッジ時間 6,371 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,680 KB
testcase_01 AC 38 ms
52,520 KB
testcase_02 AC 38 ms
51,996 KB
testcase_03 AC 39 ms
52,512 KB
testcase_04 AC 38 ms
52,416 KB
testcase_05 AC 38 ms
52,068 KB
testcase_06 AC 38 ms
52,796 KB
testcase_07 AC 38 ms
53,372 KB
testcase_08 AC 504 ms
76,240 KB
testcase_09 AC 250 ms
76,096 KB
testcase_10 AC 323 ms
76,228 KB
testcase_11 AC 361 ms
76,168 KB
testcase_12 AC 285 ms
76,036 KB
testcase_13 AC 250 ms
75,824 KB
testcase_14 AC 218 ms
76,000 KB
testcase_15 AC 573 ms
76,072 KB
testcase_16 AC 65 ms
66,360 KB
testcase_17 AC 517 ms
76,208 KB
testcase_18 AC 506 ms
76,108 KB
testcase_19 AC 544 ms
76,200 KB
testcase_20 AC 47 ms
60,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t=int(input())
for i in range(t):
    n=int(input())
    ans=0
    for bit in range(60):
        ans=(ans+(n//(1<<(bit+1)))*(1<<bit))
        ans=(ans+max(0,n%(1<<(bit+1))-(1<<bit)+1))
    print(ans)
0