結果
問題 | No.21 平均の差 |
ユーザー | liny_tail |
提出日時 | 2020-01-12 22:24:01 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 28 ms / 5,000 ms |
コード長 | 146 bytes |
コンパイル時間 | 81 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-11-30 16:03:29 |
合計ジャッジ時間 | 816 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 10 |
ソースコード
N = int(input().strip()) K = int(input().strip()) n = [] for i in range(N): n.append(int(input().strip())) n = sorted(n) print(n[-1] - n[0])