結果
問題 | No.472 平均順位 |
ユーザー | roiti46 |
提出日時 | 2016-10-11 22:43:14 |
言語 | Python2 (2.7.18) |
結果 |
WA
|
実行時間 | - |
コード長 | 566 bytes |
コンパイル時間 | 303 ms |
コンパイル使用メモリ | 7,040 KB |
実行使用メモリ | 98,080 KB |
最終ジャッジ日時 | 2024-05-08 10:42:54 |
合計ジャッジ時間 | 9,548 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 11 ms
13,888 KB |
testcase_01 | AC | 12 ms
6,944 KB |
testcase_02 | AC | 12 ms
6,944 KB |
testcase_03 | WA | - |
testcase_04 | AC | 22 ms
6,940 KB |
testcase_05 | AC | 12 ms
6,940 KB |
testcase_06 | AC | 16 ms
6,944 KB |
testcase_07 | AC | 47 ms
6,940 KB |
testcase_08 | AC | 523 ms
15,872 KB |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
# -*- coding: utf-8 -*- N, P = map(int, raw_input().split()) dp = [[10**9 + 7]*(P + 5) for i in xrange(N)] for i in xrange(N): a, b, c = map(int, raw_input().split()) if i == 0: dp[0][:4] = [a, b, c, 1] continue for j in xrange(min(3*(i + 1), P + 1)): 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)