結果

問題 No.21 平均の差
ユーザー miho-4miho-4
提出日時 2023-06-09 19:02:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 35 ms / 5,000 ms
コード長 85 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 53,468 KB
最終ジャッジ日時 2024-06-10 11:34:52
合計ジャッジ時間 1,027 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,240 KB
testcase_01 AC 34 ms
52,088 KB
testcase_02 AC 33 ms
52,468 KB
testcase_03 AC 31 ms
53,468 KB
testcase_04 AC 32 ms
52,108 KB
testcase_05 AC 31 ms
52,372 KB
testcase_06 AC 31 ms
52,120 KB
testcase_07 AC 35 ms
51,824 KB
testcase_08 AC 34 ms
52,140 KB
testcase_09 AC 34 ms
51,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
k=int(input())
L=[int(input()) for _ in range(n)]
print(max(L)-min(L))
0