結果

問題 No.21 平均の差
ユーザー sca1lsca1l
提出日時 2018-12-26 19:03:04
言語 Ruby
(3.2.2)
結果
AC  
実行時間 84 ms / 5,000 ms
コード長 72 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 11,160 KB
実行使用メモリ 15,296 KB
最終ジャッジ日時 2023-07-24 19:27:29
合計ジャッジ時間 1,753 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
15,284 KB
testcase_01 AC 81 ms
15,284 KB
testcase_02 AC 81 ms
15,168 KB
testcase_03 AC 81 ms
15,044 KB
testcase_04 AC 81 ms
15,032 KB
testcase_05 AC 79 ms
15,172 KB
testcase_06 AC 81 ms
15,288 KB
testcase_07 AC 81 ms
15,072 KB
testcase_08 AC 81 ms
15,080 KB
testcase_09 AC 81 ms
15,296 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:2: warning: assigned but unused variable - k
Syntax OK

ソースコード

diff #

n = gets.to_i
k = gets.to_i
a = n.times.map{gets.to_i}

p a.max - a.min
0