結果

問題 No.472 平均順位
ユーザー juris_lazyjuris_lazy
提出日時 2022-08-04 14:40:06
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 417 bytes
コンパイル時間 1,427 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 83,972 KB
最終ジャッジ日時 2024-09-14 11:07:24
合計ジャッジ時間 10,389 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
57,344 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 38 ms
51,584 KB
testcase_03 AC 38 ms
52,480 KB
testcase_04 AC 57 ms
65,280 KB
testcase_05 AC 40 ms
52,480 KB
testcase_06 AC 52 ms
63,744 KB
testcase_07 AC 60 ms
68,224 KB
testcase_08 AC 141 ms
76,444 KB
testcase_09 AC 342 ms
76,672 KB
testcase_10 AC 265 ms
76,464 KB
testcase_11 AC 942 ms
76,604 KB
testcase_12 AC 679 ms
76,672 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, P = map(int, input().split())
contests = [list(map(int, input().split())) for _ in range(N)]
dp = [float('inf')] * (P + 1)
dp[0] = 0
for i in range(N):
  a = contests[i]
  for j in range(P, -1, -1):
    tmp = float('inf')
    for k in range(4):
      if k < 3:
        add = a[k]
      else:
        add = 1
      if j - k >= 0:
        tmp = min(tmp, dp[j - k] + add)
    dp[j] = tmp
  #print(dp)
print(dp[P] / N)
0