結果
問題 | No.21 平均の差 |
ユーザー | kohei2019 |
提出日時 | 2021-02-10 11:27:31 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 44 ms / 5,000 ms |
コード長 | 98 bytes |
コンパイル時間 | 167 ms |
コンパイル使用メモリ | 82,204 KB |
実行使用メモリ | 52,224 KB |
最終ジャッジ日時 | 2024-07-07 21:30:58 |
合計ジャッジ時間 | 1,179 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 10 |
ソースコード
N = int(input()) K = int(input()) lsn = [int(input()) for i in range(N)] print(max(lsn)-min(lsn))