結果
| 問題 | No.198 キャンディー・ボックス2 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-01-20 08:26:52 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 41 ms / 1,000 ms |
| コード長 | 206 bytes |
| コンパイル時間 | 204 ms |
| コンパイル使用メモリ | 82,240 KB |
| 実行使用メモリ | 53,964 KB |
| 最終ジャッジ日時 | 2025-11-26 11:46:12 |
| 合計ジャッジ時間 | 2,556 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 27 |
ソースコード
b = int(input())
n = int(input())
C = [int(input()) for _ in range(n)]
C.sort()
tot = sum(C) + b
max_ = tot // n
med = C[(n - 1) // 2]
if med > max_:
med = max_
print(sum(abs(med - c) for c in C))