結果

問題 No.2701 A cans -> B cans
ユーザー ゼットゼット
提出日時 2024-03-29 21:45:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 845 ms / 1,000 ms
コード長 383 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 79,828 KB
最終ジャッジ日時 2024-10-04 06:41:05
合計ジャッジ時間 24,851 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 6
other AC * 73
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
dp=[0]*(M+1)
L=[]
for i in range(N):
  cp=[-10**17]*(2*(M+1))
  for j in range(M+1):
    cp[2*j]=dp[j]
  a,b,c=map(int,input().split())
  for j in range(a,M+1):
    cp[2*j+1]=dp[j-a]+b*c
  for j in range(a,M+1):
    cp[2*j+1]=max(cp[2*j+1],cp[2*(j-(a-b))+1]+b*c)
  for j in range(M+1):
    dp[j]=max(dp[j],cp[2*j+1])
for j in range(1,M+1):
  print(dp[j])
0