結果

問題 No.472 平均順位
ユーザー cielciel
提出日時 2016-12-22 01:25:04
言語 PyPy2
(7.3.15)
結果
TLE  
実行時間 -
コード長 360 bytes
コンパイル時間 2,118 ms
コンパイル使用メモリ 76,472 KB
実行使用メモリ 325,184 KB
最終ジャッジ日時 2024-05-08 10:53:46
合計ジャッジ時間 9,850 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
82,624 KB
testcase_01 AC 73 ms
75,288 KB
testcase_02 AC 74 ms
75,516 KB
testcase_03 AC 74 ms
75,672 KB
testcase_04 AC 122 ms
79,220 KB
testcase_05 AC 76 ms
75,520 KB
testcase_06 AC 104 ms
78,224 KB
testcase_07 AC 137 ms
81,840 KB
testcase_08 AC 447 ms
138,340 KB
testcase_09 TLE -
testcase_10 MLE -
testcase_11 MLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(1000000)
memo={}
def dfs(v,d,r):
	if d==len(v): return 0
	if (d,r) not in memo: memo[(d,r)]=reduce(lambda s,i: min(s,dfs(v,d+1,r-i)+v[d][i]), range(min(r,3)+1), 1<<60)
	return memo[(d,r)]

n,k=map(int,sys.stdin.readline().split())
v=[list(map(int,sys.stdin.readline().split()))+[1] for _ in range(n)]
print(dfs(v,0,k)/float(n))
0