結果

問題 No.472 平均順位
ユーザー cielciel
提出日時 2016-12-22 00:56:56
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 271 bytes
コンパイル時間 62 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 17,792 KB
最終ジャッジ日時 2024-05-08 10:52:32
合計ジャッジ時間 3,189 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
12,288 KB
testcase_01 AC 89 ms
12,288 KB
testcase_02 AC 94 ms
12,160 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:7: warning: assigned but unused variable - z
Syntax OK

ソースコード

diff #

$memo={}
def dfs(v,d,r)
	return 0 if d==v.size
	$memo[[d,r]]||=lambda{
		ret=Float::INFINITY
		(0..[r,3].min).each{|i|
			z=v[i]||1
			ret=[ret,dfs(v,d+1,r-i)+v[d][i]].min
		}
		ret
	}.()
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