結果

問題 No.2701 A cans -> B cans
ユーザー 👑 rin204rin204
提出日時 2024-03-29 23:40:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 686 ms / 1,000 ms
コード長 389 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 77,720 KB
最終ジャッジ日時 2024-10-01 06:31:24
合計ジャッジ時間 21,471 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 6
other AC * 73
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
dp = [0] * (m + 1)
for _ in range(n):
    a, b, c = map(int, input().split())
    d = a - b
    ndp = [-1 << 60] * (m + 1)
    for i in range(m - a + 1):
        ndp[i + a] = dp[i] + c * b
    for i in range(d, m + 1):
        ndp[i] = max(ndp[i], ndp[i - d] + c * b)
    for i in range(m + 1):
        dp[i] = max(ndp[i], dp[i])

print(*dp[1:], sep="\n")
0