結果

問題 No.472 平均順位
ユーザー Dice64Dice64
提出日時 2019-04-01 01:20:16
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 422 bytes
コンパイル時間 525 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 628,364 KB
最終ジャッジ日時 2024-11-23 17:53:27
合計ジャッジ時間 15,732 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 503 ms
43,424 KB
testcase_01 AC 504 ms
43,836 KB
testcase_02 AC 489 ms
43,444 KB
testcase_03 WA -
testcase_04 AC 503 ms
43,816 KB
testcase_05 WA -
testcase_06 AC 500 ms
43,700 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 594 ms
104,000 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