結果

問題 No.2701 A cans -> B cans
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-02-29 16:44:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 667 ms / 1,000 ms
コード長 614 bytes
コンパイル時間 417 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 78,096 KB
最終ジャッジ日時 2024-09-29 12:48:36
合計ジャッジ時間 24,036 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,496 KB
testcase_01 AC 38 ms
52,884 KB
testcase_02 AC 38 ms
52,276 KB
testcase_03 AC 38 ms
52,340 KB
testcase_04 AC 38 ms
52,372 KB
testcase_05 AC 39 ms
52,440 KB
testcase_06 AC 62 ms
67,324 KB
testcase_07 AC 59 ms
67,032 KB
testcase_08 AC 58 ms
66,488 KB
testcase_09 AC 57 ms
67,856 KB
testcase_10 AC 60 ms
66,704 KB
testcase_11 AC 59 ms
65,928 KB
testcase_12 AC 59 ms
67,080 KB
testcase_13 AC 60 ms
67,312 KB
testcase_14 AC 59 ms
66,624 KB
testcase_15 AC 59 ms
66,928 KB
testcase_16 AC 60 ms
67,548 KB
testcase_17 AC 59 ms
66,188 KB
testcase_18 AC 60 ms
66,492 KB
testcase_19 AC 60 ms
65,992 KB
testcase_20 AC 59 ms
66,128 KB
testcase_21 AC 60 ms
67,368 KB
testcase_22 AC 59 ms
67,244 KB
testcase_23 AC 59 ms
66,320 KB
testcase_24 AC 59 ms
66,132 KB
testcase_25 AC 59 ms
67,520 KB
testcase_26 AC 292 ms
77,284 KB
testcase_27 AC 293 ms
77,176 KB
testcase_28 AC 305 ms
77,444 KB
testcase_29 AC 376 ms
77,640 KB
testcase_30 AC 346 ms
77,444 KB
testcase_31 AC 383 ms
77,444 KB
testcase_32 AC 358 ms
77,636 KB
testcase_33 AC 492 ms
77,400 KB
testcase_34 AC 457 ms
78,088 KB
testcase_35 AC 360 ms
77,776 KB
testcase_36 AC 369 ms
77,496 KB
testcase_37 AC 357 ms
77,272 KB
testcase_38 AC 349 ms
77,508 KB
testcase_39 AC 481 ms
77,380 KB
testcase_40 AC 349 ms
77,508 KB
testcase_41 AC 352 ms
77,616 KB
testcase_42 AC 363 ms
78,096 KB
testcase_43 AC 453 ms
77,328 KB
testcase_44 AC 362 ms
77,512 KB
testcase_45 AC 356 ms
77,296 KB
testcase_46 AC 361 ms
77,564 KB
testcase_47 AC 363 ms
77,436 KB
testcase_48 AC 483 ms
77,416 KB
testcase_49 AC 479 ms
77,484 KB
testcase_50 AC 490 ms
77,600 KB
testcase_51 AC 342 ms
77,912 KB
testcase_52 AC 477 ms
77,344 KB
testcase_53 AC 351 ms
77,852 KB
testcase_54 AC 358 ms
77,700 KB
testcase_55 AC 379 ms
77,248 KB
testcase_56 AC 371 ms
77,384 KB
testcase_57 AC 335 ms
77,484 KB
testcase_58 AC 336 ms
77,928 KB
testcase_59 AC 66 ms
70,448 KB
testcase_60 AC 73 ms
74,276 KB
testcase_61 AC 69 ms
72,988 KB
testcase_62 AC 67 ms
71,196 KB
testcase_63 AC 64 ms
69,236 KB
testcase_64 AC 72 ms
73,032 KB
testcase_65 AC 81 ms
76,552 KB
testcase_66 AC 66 ms
70,876 KB
testcase_67 AC 69 ms
72,072 KB
testcase_68 AC 69 ms
71,984 KB
testcase_69 AC 659 ms
77,528 KB
testcase_70 AC 439 ms
77,656 KB
testcase_71 AC 441 ms
77,460 KB
testcase_72 AC 625 ms
77,988 KB
testcase_73 AC 656 ms
77,704 KB
testcase_74 AC 625 ms
77,508 KB
testcase_75 AC 626 ms
77,440 KB
testcase_76 AC 442 ms
77,852 KB
testcase_77 AC 667 ms
77,384 KB
testcase_78 AC 443 ms
77,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#sys.setrecursionlimit((1<<19)-1)
#import pypyjit
#pypyjit.set_param('max_unroll_recursion=-1')
input=sys.stdin.buffer.readline
inf=(1<<61)-1

N,M=map(int,input().split())
can=[tuple(map(int,input().split())) for i in range(N)]
dp=[-inf]*(M+1)
dp[0]=0
for a,b,c in can:
    ndp=[-inf]*(M+1)
    for i in range(M+1):
        if i+a>M:
            break
        ndp[i+a]=dp[i]+b*c
    for i in range(M+1):
        if i+a-b>M:
            break
        ndp[i+a-b]=max(ndp[i+a-b],ndp[i]+b*c)
    for i in range(M+1):
        dp[i]=max(dp[i],ndp[i])
ans=0
for i in range(M):
	ans=max(ans,dp[i+1])
	print(ans)
0