結果
問題 |
No.21 平均の差
|
ユーザー |
![]() |
提出日時 | 2023-11-13 08:10:10 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 35 ms / 5,000 ms |
コード長 | 91 bytes |
コンパイル時間 | 468 ms |
コンパイル使用メモリ | 82,560 KB |
実行使用メモリ | 52,224 KB |
最終ジャッジ日時 | 2024-09-26 03:14:42 |
合計ジャッジ時間 | 1,104 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 10 |
ソースコード
N = int(input()) K = int(input()) n = [int(input())for _ in range(N)] print(max(n)-min(n))