結果

問題 No.472 平均順位
ユーザー cielciel
提出日時 2016-12-22 01:22:10
言語 PyPy2
(7.3.15)
結果
RE  
実行時間 -
コード長 329 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 76,932 KB
実行使用メモリ 138,488 KB
最終ジャッジ日時 2024-05-08 10:53:03
合計ジャッジ時間 3,917 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
75,812 KB
testcase_01 AC 77 ms
75,896 KB
testcase_02 AC 78 ms
75,432 KB
testcase_03 AC 78 ms
75,576 KB
testcase_04 AC 124 ms
78,776 KB
testcase_05 AC 81 ms
75,820 KB
testcase_06 AC 106 ms
78,324 KB
testcase_07 AC 144 ms
81,800 KB
testcase_08 AC 455 ms
138,488 KB
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 -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
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