結果

問題 No.370 道路の掃除
ユーザー cielciel
提出日時 2016-05-16 00:18:57
言語 Ruby
(3.4.1)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 140 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 13,312 KB
最終ジャッジ日時 2024-12-26 06:09:55
合計ジャッジ時間 4,463 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 34
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - m
Syntax OK

ソースコード

diff #

n,m,*d=$<.read.split.map &:to_i
d.sort!
p d.each_cons(n).map{|e|
e[0]*e[-1]<0 ? -e[0]+e[-1]+[-e[0],e[-1]].min :
e[0]<0 ? -e[0] : e[-1]
}.min
0