結果
| 問題 | No.21 平均の差 |
| コンテスト | |
| ユーザー |
ebicochineal
|
| 提出日時 | 2016-06-19 12:02:40 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 93 ms / 5,000 ms |
| コード長 | 96 bytes |
| 記録 | |
| コンパイル時間 | 505 ms |
| コンパイル使用メモリ | 20,956 KB |
| 実行使用メモリ | 15,484 KB |
| 最終ジャッジ日時 | 2026-04-27 11:44:15 |
| 合計ジャッジ時間 | 3,338 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 10 |
ソースコード
N = int(input()) G = input() l = sorted([int(input()) for x in range(N)]) print(max(l) - min(l))
ebicochineal