結果

問題 No.21 平均の差
ユーザー miztommiztom
提出日時 2024-03-12 16:40:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 5,000 ms
コード長 77 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 53,184 KB
最終ジャッジ日時 2024-09-29 22:22:10
合計ジャッジ時間 1,311 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,876 KB
testcase_01 AC 34 ms
51,944 KB
testcase_02 AC 32 ms
52,488 KB
testcase_03 AC 34 ms
52,860 KB
testcase_04 AC 35 ms
53,184 KB
testcase_05 AC 32 ms
53,156 KB
testcase_06 AC 34 ms
52,892 KB
testcase_07 AC 34 ms
51,952 KB
testcase_08 AC 32 ms
52,108 KB
testcase_09 AC 31 ms
52,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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