結果

問題 No.1 道のショートカット
ユーザー 👑 hos.lyrichos.lyric
提出日時 2015-02-20 23:02:20
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 192 bytes
コンパイル時間 42 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 16,896 KB
最終ジャッジ日時 2024-07-08 03:47:32
合計ジャッジ時間 6,054 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
12,160 KB
testcase_01 AC 94 ms
12,032 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 122 ms
13,568 KB
testcase_09 AC 102 ms
12,288 KB
testcase_10 AC 115 ms
12,800 KB
testcase_11 AC 124 ms
13,056 KB
testcase_12 AC 183 ms
16,512 KB
testcase_13 AC 181 ms
16,896 KB
testcase_14 WA -
testcase_15 AC 93 ms
12,160 KB
testcase_16 WA -
testcase_17 AC 94 ms
12,032 KB
testcase_18 AC 95 ms
12,032 KB
testcase_19 AC 96 ms
12,160 KB
testcase_20 AC 100 ms
12,288 KB
testcase_21 AC 95 ms
11,904 KB
testcase_22 AC 91 ms
12,032 KB
testcase_23 AC 147 ms
13,568 KB
testcase_24 AC 144 ms
13,312 KB
testcase_25 AC 102 ms
12,032 KB
testcase_26 AC 97 ms
12,288 KB
testcase_27 AC 139 ms
13,568 KB
testcase_28 AC 92 ms
12,288 KB
testcase_29 AC 117 ms
12,800 KB
testcase_30 WA -
testcase_31 AC 110 ms
12,288 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 101 ms
12,160 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 93 ms
12,160 KB
testcase_43 AC 93 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n,l=(0..2).map{gets.to_i}
f=(0..n).map{{}}
f[1][0]=0
(0..3).map{gets.split.map &:to_i}.transpose.sort.map{|a,b,c,d|f[a].map{|x,t|x>l||f[b][x+c]=[f[b][x+c]||1e9,t+d].min}}
p f[n].values.min||-1
0