結果

問題 No.2701 A cans -> B cans
ユーザー flippergoflippergo
提出日時 2024-10-16 08:31:59
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 431 bytes
コンパイル時間 633 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 275,072 KB
最終ジャッジ日時 2024-10-16 08:32:57
合計ジャッジ時間 57,365 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 41 ms
52,224 KB
testcase_03 AC 54 ms
51,840 KB
testcase_04 AC 41 ms
51,584 KB
testcase_05 AC 41 ms
52,096 KB
testcase_06 AC 64 ms
64,640 KB
testcase_07 AC 62 ms
64,000 KB
testcase_08 AC 62 ms
64,640 KB
testcase_09 AC 62 ms
64,512 KB
testcase_10 AC 84 ms
64,640 KB
testcase_11 AC 64 ms
64,384 KB
testcase_12 AC 63 ms
64,640 KB
testcase_13 AC 62 ms
64,000 KB
testcase_14 AC 63 ms
64,256 KB
testcase_15 AC 63 ms
64,000 KB
testcase_16 AC 63 ms
64,640 KB
testcase_17 AC 62 ms
64,128 KB
testcase_18 AC 63 ms
64,512 KB
testcase_19 AC 63 ms
64,256 KB
testcase_20 AC 62 ms
64,128 KB
testcase_21 AC 63 ms
64,384 KB
testcase_22 AC 62 ms
64,128 KB
testcase_23 AC 62 ms
64,128 KB
testcase_24 AC 63 ms
64,000 KB
testcase_25 AC 76 ms
64,128 KB
testcase_26 AC 849 ms
273,920 KB
testcase_27 AC 572 ms
273,920 KB
testcase_28 AC 560 ms
273,920 KB
testcase_29 TLE -
testcase_30 AC 940 ms
274,304 KB
testcase_31 AC 926 ms
274,304 KB
testcase_32 AC 903 ms
274,176 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 AC 927 ms
273,408 KB
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 AC 930 ms
274,176 KB
testcase_43 AC 930 ms
274,304 KB
testcase_44 TLE -
testcase_45 TLE -
testcase_46 AC 906 ms
274,304 KB
testcase_47 TLE -
testcase_48 TLE -
testcase_49 WA -
testcase_50 WA -
testcase_51 TLE -
testcase_52 WA -
testcase_53 WA -
testcase_54 TLE -
testcase_55 WA -
testcase_56 TLE -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 WA -
testcase_63 WA -
testcase_64 WA -
testcase_65 WA -
testcase_66 WA -
testcase_67 WA -
testcase_68 WA -
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())
dp = [[0 for _ in range(M+1)] for _ in range(N+1)]
A = [0]+[list(map(int,input().split())) for _ in range(N)]
for i in range(1,N+1):
    for j in range(1,M+1):
        dp[i][j] = dp[i-1][j]
        if j>=A[i][0]:
            k = (j-A[i][0])//(A[i][0]-A[i][1])
            dp[i][j] = max(dp[i][j],dp[i-1][j-A[i][0]-k*(A[i][0]-A[i][1])]+(k+1)*A[i][1]*A[i][2])
for j in range(1,M+1):
    print(dp[N][j])
0