結果

問題 No.2701 A cans -> B cans
ユーザー detteiuudetteiuu
提出日時 2024-10-08 08:11:56
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 652 bytes
コンパイル時間 361 ms
コンパイル使用メモリ 82,000 KB
実行使用メモリ 274,368 KB
最終ジャッジ日時 2024-10-08 08:12:43
合計ジャッジ時間 46,289 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,524 KB
testcase_01 AC 38 ms
52,200 KB
testcase_02 AC 38 ms
52,688 KB
testcase_03 AC 40 ms
53,812 KB
testcase_04 AC 39 ms
52,952 KB
testcase_05 AC 37 ms
52,268 KB
testcase_06 AC 57 ms
66,956 KB
testcase_07 AC 56 ms
64,800 KB
testcase_08 AC 54 ms
65,548 KB
testcase_09 AC 56 ms
66,056 KB
testcase_10 AC 57 ms
67,040 KB
testcase_11 AC 53 ms
66,120 KB
testcase_12 AC 56 ms
65,184 KB
testcase_13 AC 53 ms
66,684 KB
testcase_14 AC 53 ms
65,112 KB
testcase_15 AC 54 ms
65,636 KB
testcase_16 AC 55 ms
65,792 KB
testcase_17 AC 55 ms
66,260 KB
testcase_18 AC 56 ms
66,836 KB
testcase_19 AC 55 ms
65,488 KB
testcase_20 AC 56 ms
66,844 KB
testcase_21 AC 53 ms
65,580 KB
testcase_22 AC 53 ms
66,336 KB
testcase_23 AC 54 ms
66,620 KB
testcase_24 AC 55 ms
65,420 KB
testcase_25 AC 54 ms
66,912 KB
testcase_26 AC 464 ms
273,776 KB
testcase_27 AC 429 ms
273,352 KB
testcase_28 AC 434 ms
273,368 KB
testcase_29 AC 867 ms
274,080 KB
testcase_30 AC 919 ms
274,092 KB
testcase_31 AC 943 ms
273,620 KB
testcase_32 AC 886 ms
274,084 KB
testcase_33 AC 932 ms
274,224 KB
testcase_34 AC 913 ms
273,840 KB
testcase_35 AC 969 ms
274,036 KB
testcase_36 AC 918 ms
274,368 KB
testcase_37 AC 953 ms
273,936 KB
testcase_38 AC 897 ms
273,956 KB
testcase_39 AC 934 ms
273,956 KB
testcase_40 AC 949 ms
273,856 KB
testcase_41 AC 959 ms
273,960 KB
testcase_42 AC 956 ms
273,820 KB
testcase_43 AC 951 ms
273,844 KB
testcase_44 AC 962 ms
273,856 KB
testcase_45 AC 958 ms
273,700 KB
testcase_46 AC 948 ms
273,836 KB
testcase_47 AC 954 ms
273,816 KB
testcase_48 AC 879 ms
273,840 KB
testcase_49 AC 915 ms
273,964 KB
testcase_50 TLE -
testcase_51 AC 939 ms
273,844 KB
testcase_52 AC 927 ms
273,828 KB
testcase_53 AC 944 ms
274,092 KB
testcase_54 AC 916 ms
274,088 KB
testcase_55 TLE -
testcase_56 AC 917 ms
273,844 KB
testcase_57 AC 946 ms
274,352 KB
testcase_58 AC 951 ms
273,832 KB
testcase_59 AC 58 ms
67,252 KB
testcase_60 AC 55 ms
65,560 KB
testcase_61 AC 88 ms
77,280 KB
testcase_62 AC 54 ms
67,732 KB
testcase_63 AC 53 ms
67,132 KB
testcase_64 AC 51 ms
64,960 KB
testcase_65 AC 51 ms
66,144 KB
testcase_66 AC 57 ms
68,676 KB
testcase_67 AC 54 ms
66,028 KB
testcase_68 AC 56 ms
67,960 KB
testcase_69 TLE -
testcase_70 TLE -
testcase_71 AC 975 ms
274,000 KB
testcase_72 TLE -
testcase_73 TLE -
testcase_74 TLE -
testcase_75 TLE -
testcase_76 AC 982 ms
273,868 KB
testcase_77 TLE -
testcase_78 AC 986 ms
274,060 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):
    dp[-1][i] = max(dp[-1][i], dp[-1][i-1])

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