結果

問題 No.107 モンスター
ユーザー gigurururugigurururu
提出日時 2014-12-20 00:01:06
言語 Ruby
(3.3.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 167 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 31,488 KB
最終ジャッジ日時 2024-06-12 01:57:42
合計ジャッジ時間 10,916 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
12,160 KB
testcase_01 AC 93 ms
12,288 KB
testcase_02 AC 93 ms
12,160 KB
testcase_03 AC 92 ms
12,160 KB
testcase_04 AC 93 ms
12,160 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 94 ms
12,032 KB
testcase_09 AC 92 ms
12,160 KB
testcase_10 AC 90 ms
12,160 KB
testcase_11 AC 90 ms
12,288 KB
testcase_12 AC 89 ms
12,288 KB
testcase_13 AC 311 ms
17,024 KB
testcase_14 AC 608 ms
20,864 KB
testcase_15 AC 611 ms
20,864 KB
testcase_16 AC 95 ms
12,160 KB
testcase_17 AC 191 ms
14,592 KB
testcase_18 AC 1,253 ms
31,360 KB
testcase_19 AC 1,256 ms
31,360 KB
testcase_20 AC 324 ms
17,024 KB
testcase_21 AC 318 ms
17,024 KB
testcase_22 AC 614 ms
20,992 KB
testcase_23 AC 1,277 ms
31,360 KB
testcase_24 AC 1,271 ms
31,488 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N=gets.to_i
D=gets.split.map &:to_i
H={[]=>100}
def dfs d,h
H[d]||=d.map{|i|(t=dfs d-[i],D[i]<0?h-1:h)<1?0:[t+D[i],h*100].min}.max
end
p dfs [*0...N],D.count{|i|i<0}+1
0