結果

問題 No.21 平均の差
ユーザー urutomurutom
提出日時 2016-04-12 23:56:27
言語 Ruby
(3.4.1)
結果
AC  
実行時間 76 ms / 5,000 ms
コード長 46 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-10-04 06:11:32
合計ジャッジ時間 1,836 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 10
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - n
Main.rb:1: warning: assigned but unused variable - k
Syntax OK

ソースコード

diff #

n,k,*a=gets(p).split.map(&:to_i)
p a.max-a.min
0