結果
問題 | No.472 平均順位 |
ユーザー | roiti46 |
提出日時 | 2016-10-11 22:28:09 |
言語 | PyPy2 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 598 bytes |
コンパイル時間 | 398 ms |
コンパイル使用メモリ | 76,968 KB |
実行使用メモリ | 850,628 KB |
最終ジャッジ日時 | 2024-05-08 10:42:22 |
合計ジャッジ時間 | 10,726 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | MLE | - |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
# -*- coding: utf-8 -*- N, P = map(int, raw_input().split()) abc = [map(int, raw_input().split()) for i in xrange(N)] dp = [[1e10]*(P + 5) for i in xrange(N)] for i, (a, b, c) in enumerate(abc): print i if i == 0: dp[0][:4] = [a, b, c, 1] continue for j in xrange(min(3*(i + 1), P)): dp[i][j] = min(dp[i][j], dp[i - 1][j] + a) if j > 0: dp[i][j] = min(dp[i][j], dp[i - 1][j - 1] + b) if j > 1: dp[i][j] = min(dp[i][j], dp[i - 1][j - 2] + c) if j > 2: dp[i][j] = min(dp[i][j], dp[i - 1][j - 3] + 1) print "%.10f" % (1.0*dp[N - 1][P]/N)