結果

問題 No.21 平均の差
ユーザー zyxwzyxw
提出日時 2020-10-06 19:27:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 496 ms / 5,000 ms
コード長 141 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,400 KB
最終ジャッジ日時 2024-07-20 02:57:06
合計ジャッジ時間 7,577 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 496 ms
44,016 KB
testcase_01 AC 494 ms
44,172 KB
testcase_02 AC 489 ms
44,168 KB
testcase_03 AC 489 ms
44,400 KB
testcase_04 AC 481 ms
44,056 KB
testcase_05 AC 487 ms
44,148 KB
testcase_06 AC 492 ms
43,776 KB
testcase_07 AC 493 ms
43,792 KB
testcase_08 AC 486 ms
44,032 KB
testcase_09 AC 484 ms
43,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
k=int(input())
data=[int(input()) for i in range(n)]
import numpy as np
Data=np.array(data)
x=min(Data)
y=max(Data)
print(y-x)
0