結果

問題 No.472 平均順位
ユーザー cielciel
提出日時 2016-12-22 01:00:14
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 222 bytes
コンパイル時間 80 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 65,884 KB
最終ジャッジ日時 2024-05-08 10:52:52
合計ジャッジ時間 6,279 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
19,484 KB
testcase_01 AC 88 ms
12,416 KB
testcase_02 AC 88 ms
12,160 KB
testcase_03 AC 94 ms
12,032 KB
testcase_04 AC 124 ms
12,928 KB
testcase_05 AC 92 ms
12,160 KB
testcase_06 AC 109 ms
12,416 KB
testcase_07 AC 196 ms
14,592 KB
testcase_08 AC 1,655 ms
35,708 KB
testcase_09 TLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

$memo={}
def dfs(v,d,r)
	return 0 if d==v.size
	$memo[[d,r]]||=(0..[r,3].min).reduce(1<<30){|s,i|
		[s,dfs(v,d+1,r-i)+(v[d][i]||1)].min
	}
end
n,k=gets.split.map(&:to_i)
v=$<.map{|e|e.split.map(&:to_i)}
p dfs(v,0,k)/n.to_f
0