結果

問題 No.21 平均の差
ユーザー cielciel
提出日時 2014-11-16 08:14:34
言語 Ruby
(3.4.1)
結果
AC  
実行時間 92 ms / 5,000 ms
コード長 64 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-12-31 20:36:10
合計ジャッジ時間 1,779 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 10
権限があれば一括ダウンロードができます
コンパイルメッセージ
ruby: warning: shebang line ending with \r may cause problems
Syntax OK

ソースコード

diff #

#!/usr/bin/ruby
gets;gets
mi,ma=$<.map(&:to_i).minmax
p ma-mi
0