結果
| 問題 | No.21 平均の差 |
| コンテスト | |
| ユーザー |
ebicochineal
|
| 提出日時 | 2016-06-19 12:02:40 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 20 ms / 5,000 ms |
| + 650µs | |
| コード長 | 96 bytes |
| 記録 | |
| コンパイル時間 | 54 ms |
| コンパイル使用メモリ | 15,104 KB |
| 実行使用メモリ | 11,008 KB |
| 最終ジャッジ日時 | 2026-09-13 18:43:33 |
| 合計ジャッジ時間 | 1,307 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 10 |
ソースコード
N = int(input()) G = input() l = sorted([int(input()) for x in range(N)]) print(max(l) - min(l))
ebicochineal