結果
| 問題 | No.198 キャンディー・ボックス2 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-01-20 08:26:52 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 64 ms / 1,000 ms |
| + 487µs | |
| コード長 | 206 bytes |
| 記録 | |
| コンパイル時間 | 253 ms |
| コンパイル使用メモリ | 96,096 KB |
| 実行使用メモリ | 79,360 KB |
| 最終ジャッジ日時 | 2026-07-16 23:53:56 |
| 合計ジャッジ時間 | 3,891 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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))