結果

問題 No.2701 A cans -> B cans
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-02-29 16:48:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 420 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 72,972 KB
最終ジャッジ日時 2024-09-29 12:52:28
合計ジャッジ時間 39,674 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,396 KB
testcase_01 AC 38 ms
52,272 KB
testcase_02 AC 37 ms
52,948 KB
testcase_03 AC 39 ms
52,492 KB
testcase_04 AC 38 ms
52,304 KB
testcase_05 AC 38 ms
52,292 KB
testcase_06 AC 52 ms
63,856 KB
testcase_07 AC 52 ms
63,172 KB
testcase_08 AC 52 ms
64,292 KB
testcase_09 AC 52 ms
64,088 KB
testcase_10 AC 53 ms
63,800 KB
testcase_11 AC 53 ms
65,024 KB
testcase_12 AC 53 ms
63,356 KB
testcase_13 AC 52 ms
63,600 KB
testcase_14 AC 52 ms
64,160 KB
testcase_15 AC 52 ms
64,084 KB
testcase_16 AC 52 ms
63,596 KB
testcase_17 AC 52 ms
64,648 KB
testcase_18 AC 53 ms
64,564 KB
testcase_19 AC 54 ms
63,808 KB
testcase_20 AC 51 ms
64,744 KB
testcase_21 AC 54 ms
64,580 KB
testcase_22 AC 54 ms
63,324 KB
testcase_23 AC 53 ms
64,160 KB
testcase_24 AC 51 ms
64,164 KB
testcase_25 AC 52 ms
64,160 KB
testcase_26 AC 270 ms
69,284 KB
testcase_27 AC 259 ms
69,116 KB
testcase_28 AC 291 ms
69,968 KB
testcase_29 AC 711 ms
71,436 KB
testcase_30 AC 683 ms
71,228 KB
testcase_31 AC 683 ms
71,816 KB
testcase_32 AC 674 ms
71,624 KB
testcase_33 AC 670 ms
71,336 KB
testcase_34 AC 671 ms
72,452 KB
testcase_35 AC 676 ms
71,484 KB
testcase_36 AC 663 ms
72,308 KB
testcase_37 AC 709 ms
71,812 KB
testcase_38 AC 678 ms
71,692 KB
testcase_39 AC 716 ms
72,108 KB
testcase_40 AC 710 ms
72,356 KB
testcase_41 AC 723 ms
72,048 KB
testcase_42 AC 685 ms
71,000 KB
testcase_43 AC 716 ms
72,644 KB
testcase_44 AC 664 ms
70,836 KB
testcase_45 AC 678 ms
70,736 KB
testcase_46 AC 658 ms
71,744 KB
testcase_47 AC 768 ms
70,836 KB
testcase_48 AC 674 ms
72,440 KB
testcase_49 AC 734 ms
71,148 KB
testcase_50 AC 762 ms
72,784 KB
testcase_51 AC 684 ms
70,692 KB
testcase_52 AC 743 ms
72,040 KB
testcase_53 AC 718 ms
71,048 KB
testcase_54 AC 768 ms
71,088 KB
testcase_55 AC 733 ms
71,768 KB
testcase_56 AC 701 ms
72,316 KB
testcase_57 AC 783 ms
71,668 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 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 #

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

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