結果
問題 |
No.21 平均の差
|
ユーザー |
|
提出日時 | 2019-03-16 17:25:06 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 157 bytes |
コンパイル時間 | 85 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-07-01 22:34:48 |
合計ジャッジ時間 | 1,063 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 8 WA * 2 |
ソースコード
import math N = int(input()) K = int(input()) n = [int(input()) for i in range(K)] n_max = max(n) n_min = min(n) ans = math.ceil(n_max - n_min) print(ans)