結果

問題 No.2701 A cans -> B cans
ユーザー yansi819yansi819
提出日時 2024-05-31 19:05:13
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 700 bytes
コンパイル時間 500 ms
コンパイル使用メモリ 81,584 KB
実行使用メモリ 274,140 KB
最終ジャッジ日時 2024-05-31 19:06:22
合計ジャッジ時間 63,281 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,756 KB
testcase_01 AC 33 ms
52,216 KB
testcase_02 AC 35 ms
52,892 KB
testcase_03 AC 36 ms
52,348 KB
testcase_04 AC 37 ms
53,080 KB
testcase_05 AC 35 ms
53,084 KB
testcase_06 AC 62 ms
70,936 KB
testcase_07 AC 68 ms
70,812 KB
testcase_08 AC 62 ms
71,388 KB
testcase_09 AC 62 ms
71,764 KB
testcase_10 AC 59 ms
70,932 KB
testcase_11 AC 61 ms
70,192 KB
testcase_12 AC 60 ms
71,832 KB
testcase_13 AC 59 ms
71,624 KB
testcase_14 AC 60 ms
70,788 KB
testcase_15 AC 61 ms
70,604 KB
testcase_16 AC 61 ms
70,280 KB
testcase_17 AC 58 ms
70,408 KB
testcase_18 AC 59 ms
71,816 KB
testcase_19 AC 59 ms
70,884 KB
testcase_20 AC 65 ms
70,184 KB
testcase_21 AC 69 ms
70,740 KB
testcase_22 AC 62 ms
70,452 KB
testcase_23 AC 68 ms
70,676 KB
testcase_24 AC 64 ms
70,180 KB
testcase_25 AC 62 ms
70,056 KB
testcase_26 AC 887 ms
273,764 KB
testcase_27 AC 834 ms
273,668 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 TLE -
testcase_57 TLE -
testcase_58 TLE -
testcase_59 AC 68 ms
74,092 KB
testcase_60 AC 77 ms
77,244 KB
testcase_61 AC 77 ms
75,092 KB
testcase_62 AC 70 ms
73,748 KB
testcase_63 AC 68 ms
72,336 KB
testcase_64 AC 77 ms
76,476 KB
testcase_65 AC 75 ms
76,896 KB
testcase_66 AC 66 ms
74,028 KB
testcase_67 AC 67 ms
74,220 KB
testcase_68 AC 70 ms
73,612 KB
testcase_69 TLE -
testcase_70 TLE -
testcase_71 TLE -
testcase_72 TLE -
testcase_73 TLE -
testcase_74 TLE -
testcase_75 TLE -
testcase_76 TLE -
testcase_77 TLE -
testcase_78 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
A, B, C = [0] * N, [0] * N, [0] * N
for i in range(N):
    A[i], B[i], C[i] = map(int, input().split())
INF = 1 << 63
dp = [[-INF] * (M + 1) for _ in range(N + 1)]
dp[0][0] = 0
for i in range(N):
    for j in range(M + 1):
        if M >= j + A[i]:
            dp[i + 1][j + A[i]] = max(dp[i + 1][j + A[i]], dp[i][j] + B[i] * C[i])
    for j in range(M + 1):
        if M >= j + (A[i] - B[i]):
            dp[i + 1][j + A[i] - B[i]] = max(dp[i + 1][j + A[i] - B[i]], dp[i + 1][j] + B[i] * C[i])
    for j in range(M + 1):
        dp[i + 1][j] = max(dp[i + 1][j], dp[i][j])
ans = 0
for j in range(M + 1):
    ans = max(ans, dp[N][j])
    if j != 0:
        print(ans)
0