結果

問題 No.198 キャンディー・ボックス2
ユーザー mlihua09mlihua09
提出日時 2020-09-21 11:14:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 160 ms / 1,000 ms
コード長 183 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 88,588 KB
最終ジャッジ日時 2024-06-24 11:28:52
合計ジャッジ時間 6,151 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
88,320 KB
testcase_01 AC 146 ms
88,240 KB
testcase_02 AC 146 ms
88,276 KB
testcase_03 AC 143 ms
88,088 KB
testcase_04 AC 143 ms
88,128 KB
testcase_05 AC 143 ms
88,252 KB
testcase_06 AC 143 ms
88,584 KB
testcase_07 AC 145 ms
88,212 KB
testcase_08 AC 143 ms
88,224 KB
testcase_09 AC 145 ms
88,300 KB
testcase_10 AC 144 ms
88,196 KB
testcase_11 AC 145 ms
88,268 KB
testcase_12 AC 144 ms
88,124 KB
testcase_13 AC 146 ms
87,984 KB
testcase_14 AC 142 ms
88,308 KB
testcase_15 AC 145 ms
88,296 KB
testcase_16 AC 143 ms
88,436 KB
testcase_17 AC 141 ms
88,164 KB
testcase_18 AC 144 ms
88,208 KB
testcase_19 AC 146 ms
88,312 KB
testcase_20 AC 146 ms
88,340 KB
testcase_21 AC 156 ms
88,388 KB
testcase_22 AC 153 ms
88,292 KB
testcase_23 AC 154 ms
88,052 KB
testcase_24 AC 148 ms
88,088 KB
testcase_25 AC 155 ms
88,196 KB
testcase_26 AC 157 ms
88,116 KB
testcase_27 AC 155 ms
88,288 KB
testcase_28 AC 160 ms
88,588 KB
testcase_29 AC 155 ms
88,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


B = int(input())

N = int(input())

C = [int(input()) for i in range(N)]

import statistics
x = min(statistics.median_low(C), (sum(C) + B) // N)

print(sum([abs(c - x) for c in C]))
0