結果
| 問題 | No.21 平均の差 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-05-09 15:50:59 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0) |
| 結果 |
AC
|
| 実行時間 | 92 ms / 5,000 ms |
| + 760µs | |
| コード長 | 93 bytes |
| 記録 | |
| コンパイル時間 | 292 ms |
| コンパイル使用メモリ | 21,540 KB |
| 実行使用メモリ | 15,864 KB |
| 最終ジャッジ日時 | 2026-08-30 12:16:01 |
| 合計ジャッジ時間 | 2,442 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 10 |
ソースコード
N = int(input()) K = int(input()) n = [int(input()) for _ in range(N)] print(max(n)-min(n))