結果

問題 No.2701 A cans -> B cans
ユーザー mkawa2mkawa2
提出日時 2024-11-05 16:26:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 349 ms / 1,000 ms
コード長 1,100 bytes
コンパイル時間 347 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 77,244 KB
最終ジャッジ日時 2024-11-05 16:27:06
合計ジャッジ時間 16,658 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,680 KB
testcase_01 AC 35 ms
52,824 KB
testcase_02 AC 35 ms
52,504 KB
testcase_03 AC 34 ms
52,616 KB
testcase_04 AC 35 ms
52,804 KB
testcase_05 AC 38 ms
53,532 KB
testcase_06 AC 79 ms
65,296 KB
testcase_07 AC 78 ms
67,032 KB
testcase_08 AC 80 ms
66,328 KB
testcase_09 AC 80 ms
65,936 KB
testcase_10 AC 79 ms
66,768 KB
testcase_11 AC 79 ms
65,408 KB
testcase_12 AC 79 ms
66,352 KB
testcase_13 AC 80 ms
66,792 KB
testcase_14 AC 82 ms
65,672 KB
testcase_15 AC 82 ms
65,740 KB
testcase_16 AC 83 ms
65,532 KB
testcase_17 AC 82 ms
66,708 KB
testcase_18 AC 85 ms
66,104 KB
testcase_19 AC 85 ms
65,868 KB
testcase_20 AC 85 ms
66,132 KB
testcase_21 AC 83 ms
66,512 KB
testcase_22 AC 105 ms
65,648 KB
testcase_23 AC 80 ms
65,644 KB
testcase_24 AC 80 ms
65,864 KB
testcase_25 AC 80 ms
67,008 KB
testcase_26 AC 211 ms
76,484 KB
testcase_27 AC 214 ms
76,676 KB
testcase_28 AC 216 ms
76,800 KB
testcase_29 AC 242 ms
76,728 KB
testcase_30 AC 217 ms
76,764 KB
testcase_31 AC 220 ms
76,616 KB
testcase_32 AC 223 ms
76,688 KB
testcase_33 AC 217 ms
76,456 KB
testcase_34 AC 217 ms
76,720 KB
testcase_35 AC 223 ms
76,644 KB
testcase_36 AC 221 ms
76,964 KB
testcase_37 AC 218 ms
76,980 KB
testcase_38 AC 214 ms
77,136 KB
testcase_39 AC 221 ms
76,888 KB
testcase_40 AC 219 ms
76,952 KB
testcase_41 AC 219 ms
76,480 KB
testcase_42 AC 221 ms
76,612 KB
testcase_43 AC 220 ms
76,660 KB
testcase_44 AC 223 ms
77,052 KB
testcase_45 AC 222 ms
76,968 KB
testcase_46 AC 218 ms
76,600 KB
testcase_47 AC 218 ms
76,628 KB
testcase_48 AC 215 ms
76,712 KB
testcase_49 AC 220 ms
76,484 KB
testcase_50 AC 224 ms
76,508 KB
testcase_51 AC 224 ms
76,688 KB
testcase_52 AC 215 ms
76,516 KB
testcase_53 AC 221 ms
76,500 KB
testcase_54 AC 224 ms
76,432 KB
testcase_55 AC 221 ms
76,980 KB
testcase_56 AC 225 ms
76,684 KB
testcase_57 AC 220 ms
76,588 KB
testcase_58 AC 223 ms
76,708 KB
testcase_59 AC 87 ms
69,248 KB
testcase_60 AC 87 ms
66,904 KB
testcase_61 AC 91 ms
68,868 KB
testcase_62 AC 90 ms
69,000 KB
testcase_63 AC 89 ms
69,056 KB
testcase_64 AC 81 ms
67,312 KB
testcase_65 AC 85 ms
67,964 KB
testcase_66 AC 83 ms
67,024 KB
testcase_67 AC 85 ms
68,572 KB
testcase_68 AC 87 ms
68,824 KB
testcase_69 AC 305 ms
76,676 KB
testcase_70 AC 274 ms
76,824 KB
testcase_71 AC 247 ms
76,860 KB
testcase_72 AC 302 ms
77,244 KB
testcase_73 AC 347 ms
76,636 KB
testcase_74 AC 290 ms
76,620 KB
testcase_75 AC 349 ms
76,484 KB
testcase_76 AC 249 ms
76,960 KB
testcase_77 AC 248 ms
76,728 KB
testcase_78 AC 221 ms
76,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 62)

md = 10**9+7
# md = 998244353

n,m=LI()
dp=[0]*(m+1)
for _ in range(n):
    a,b,c=LI()
    d = 0
    e = 0
    for i in range(m):
        e+=1
        if e>=a:
            d+=b
            e+=b-a
        # print(d,e)
        dp[i+1]=max(dp[i+1],d*c)
for i in range(1,m+1):
    for j in range(1,i//2+1):
        dp[i]=max(dp[i],dp[j]+dp[i-j])
print(*dp[1:],sep="\n")
0