結果

問題 No.2701 A cans -> B cans
ユーザー mkawa2mkawa2
提出日時 2024-03-29 22:53:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,051 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 82,056 KB
実行使用メモリ 77,668 KB
最終ジャッジ日時 2024-09-30 16:39:18
合計ジャッジ時間 23,946 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,840 KB
testcase_01 AC 36 ms
51,840 KB
testcase_02 AC 35 ms
51,968 KB
testcase_03 AC 35 ms
52,480 KB
testcase_04 AC 35 ms
51,840 KB
testcase_05 AC 35 ms
52,224 KB
testcase_06 AC 60 ms
63,360 KB
testcase_07 AC 50 ms
63,632 KB
testcase_08 AC 50 ms
63,616 KB
testcase_09 AC 50 ms
63,232 KB
testcase_10 AC 51 ms
63,488 KB
testcase_11 AC 51 ms
63,872 KB
testcase_12 AC 50 ms
63,872 KB
testcase_13 AC 48 ms
63,616 KB
testcase_14 AC 50 ms
63,616 KB
testcase_15 AC 50 ms
63,616 KB
testcase_16 AC 50 ms
63,616 KB
testcase_17 AC 49 ms
63,488 KB
testcase_18 AC 51 ms
63,360 KB
testcase_19 AC 50 ms
63,360 KB
testcase_20 AC 50 ms
63,360 KB
testcase_21 AC 50 ms
63,616 KB
testcase_22 AC 49 ms
63,360 KB
testcase_23 AC 49 ms
63,360 KB
testcase_24 AC 50 ms
63,872 KB
testcase_25 AC 50 ms
63,744 KB
testcase_26 AC 67 ms
74,624 KB
testcase_27 AC 66 ms
74,752 KB
testcase_28 AC 71 ms
77,104 KB
testcase_29 AC 324 ms
76,804 KB
testcase_30 AC 330 ms
76,928 KB
testcase_31 AC 323 ms
76,928 KB
testcase_32 AC 337 ms
76,856 KB
testcase_33 AC 326 ms
76,672 KB
testcase_34 AC 326 ms
76,672 KB
testcase_35 AC 384 ms
76,980 KB
testcase_36 AC 337 ms
76,672 KB
testcase_37 AC 393 ms
76,928 KB
testcase_38 AC 326 ms
77,056 KB
testcase_39 AC 328 ms
77,312 KB
testcase_40 AC 328 ms
76,992 KB
testcase_41 AC 333 ms
76,800 KB
testcase_42 AC 378 ms
76,800 KB
testcase_43 AC 326 ms
77,300 KB
testcase_44 AC 315 ms
76,812 KB
testcase_45 AC 338 ms
77,056 KB
testcase_46 AC 334 ms
76,936 KB
testcase_47 AC 330 ms
76,864 KB
testcase_48 AC 323 ms
76,800 KB
testcase_49 AC 386 ms
76,672 KB
testcase_50 AC 338 ms
76,800 KB
testcase_51 AC 403 ms
76,904 KB
testcase_52 AC 340 ms
76,800 KB
testcase_53 AC 379 ms
76,908 KB
testcase_54 AC 320 ms
76,672 KB
testcase_55 AC 393 ms
77,156 KB
testcase_56 AC 323 ms
76,672 KB
testcase_57 AC 322 ms
76,672 KB
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 AC 883 ms
77,292 KB
testcase_70 AC 891 ms
76,932 KB
testcase_71 AC 870 ms
77,360 KB
testcase_72 AC 874 ms
76,984 KB
testcase_73 AC 897 ms
77,240 KB
testcase_74 TLE -
testcase_75 AC 883 ms
77,168 KB
testcase_76 AC 976 ms
76,972 KB
testcase_77 AC 927 ms
77,332 KB
testcase_78 AC 880 ms
76,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(1000005)
# 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()
abc=LLI(n)
abc.sort(key=lambda x:-x[0])
dp=[0]*(m+1)
now=[]
for p in range(1,m+1):
    while abc and abc[-1][0]<=p:now.append(abc.pop())
    ans=0
    for a,b,c in now:
        cur=((p-a)//(a-b)+1)*b*c+dp[(p-a)%(a-b)]
        if cur>ans:ans=cur
    dp[p]=ans
    print(ans)
0