結果

問題 No.472 平均順位
ユーザー Dice64Dice64
提出日時 2019-04-01 01:20:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 422 bytes
コンパイル時間 112 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 628,636 KB
最終ジャッジ日時 2024-05-02 22:42:04
合計ジャッジ時間 17,779 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 523 ms
43,424 KB
testcase_01 AC 521 ms
43,580 KB
testcase_02 AC 550 ms
43,704 KB
testcase_03 WA -
testcase_04 AC 526 ms
43,700 KB
testcase_05 WA -
testcase_06 AC 544 ms
43,580 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 MLE -
testcase_15 WA -
testcase_16 MLE -
testcase_17 MLE -
testcase_18 WA -
testcase_19 AC 669 ms
103,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N, P = map(int, input().split())
abc = [[int(_) for _ in input().split()] for _ in range(N)]
dp = np.zeros([N+1, P+10], dtype=int)

for i in range(1, N+1):
    dp[i][0] = dp[i-1][0] + abc[i-1][0]
    dp[i][1] = min(dp[i-1][1] + abc[i-1][0], dp[i-1][0] + abc[i-1][1])
    dp[i][2:] = np.minimum(np.minimum(dp[i-1][:-2]+abc[i-1][2], dp[i-1][1:-1]+abc[i-1][1]), dp[i-1][2:]+abc[i-1][0])

print(dp[N][P]/N)
0