結果

問題 No.2701 A cans -> B cans
ユーザー detteiuudetteiuu
提出日時 2024-10-08 07:59:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 666 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 274,592 KB
最終ジャッジ日時 2024-10-08 08:00:31
合計ジャッジ時間 46,917 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 50 ms
51,840 KB
testcase_02 AC 39 ms
52,456 KB
testcase_03 AC 39 ms
52,480 KB
testcase_04 AC 38 ms
51,840 KB
testcase_05 AC 38 ms
51,840 KB
testcase_06 AC 59 ms
64,896 KB
testcase_07 AC 60 ms
65,152 KB
testcase_08 AC 55 ms
64,640 KB
testcase_09 AC 55 ms
64,512 KB
testcase_10 AC 56 ms
65,152 KB
testcase_11 AC 60 ms
64,768 KB
testcase_12 AC 55 ms
64,640 KB
testcase_13 AC 54 ms
64,512 KB
testcase_14 AC 55 ms
65,024 KB
testcase_15 AC 60 ms
64,512 KB
testcase_16 AC 57 ms
64,768 KB
testcase_17 AC 55 ms
64,640 KB
testcase_18 AC 67 ms
64,256 KB
testcase_19 AC 56 ms
64,896 KB
testcase_20 AC 55 ms
64,768 KB
testcase_21 AC 55 ms
64,640 KB
testcase_22 AC 56 ms
65,024 KB
testcase_23 AC 55 ms
65,408 KB
testcase_24 AC 58 ms
64,640 KB
testcase_25 AC 54 ms
64,512 KB
testcase_26 AC 464 ms
273,620 KB
testcase_27 AC 458 ms
273,292 KB
testcase_28 AC 434 ms
274,024 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 TLE -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 TLE -
testcase_56 WA -
testcase_57 TLE -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 WA -
testcase_63 WA -
testcase_64 WA -
testcase_65 AC 57 ms
64,000 KB
testcase_66 WA -
testcase_67 WA -
testcase_68 WA -
testcase_69 TLE -
testcase_70 TLE -
testcase_71 AC 983 ms
274,528 KB
testcase_72 TLE -
testcase_73 TLE -
testcase_74 TLE -
testcase_75 TLE -
testcase_76 AC 987 ms
274,004 KB
testcase_77 TLE -
testcase_78 AC 995 ms
274,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
can = [list(map(int, input().split())) for _ in range(N)]

INF = 10**18
dp = [[-INF]*(M+1) for _ in range(N+1)]
dp[0][0] = 0
for i in range(N):
    A, B, C = can[i]
    first = A
    second = A-B
    for j in range(M+1):
        if dp[i+1][j] != -INF and j+second <= M:
            dp[i+1][j+second] = max(dp[i+1][j+second], dp[i+1][j]+C*B)
        if dp[i][j] != -INF:
            dp[i+1][j] = max(dp[i+1][j], dp[i][j])
            if j+first <= M:
                dp[i+1][j+first] = max(dp[i+1][j+first], dp[i][j]+C*B)

for i in range(1, M+1):
    if dp[-1][i] == -INF:
        dp[-1][i] = dp[-1][i-1]

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