結果
問題 | No.472 平均順位 |
ユーザー | hokekiyoo |
提出日時 | 2020-02-20 10:06:40 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 824 bytes |
コンパイル時間 | 411 ms |
コンパイル使用メモリ | 82,248 KB |
実行使用メモリ | 70,332 KB |
最終ジャッジ日時 | 2024-10-08 18:44:35 |
合計ジャッジ時間 | 2,463 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
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 | - |
ソースコード
N, P = map(int, input().split()) INF = 10**10 dp = [[INF] * (P+1) for i in range(2)] dp[0][0] = 0 for I in range(N): i = I%2 dp[i+1][:] = dp[i][:] scores = list(map(int, input().split())) + [1] # 今まで解いた問題の合計 j for j in range(P+1): # if dp[i][j] == INF : continue # このコンテストで解いた問題数 k tmp = dp[i+1][j] score_j0 = dp[i][j] + scores[0] tmp = score_j0 if j - 1 >= 0: score_j1 = dp[i][j-1] + scores[1] tmp = min(tmp, score_j1) if j - 2 >= 0: score_j2 = dp[i][j-2] + scores[2] tmp = min(tmp, score_j2) if j - 3 >= 0: score_j3 = dp[i][j-3] + scores[3] tmp = min(tmp, score_j3) dp[i+1][j] = tmp print(dp[N%2][P]/N)