結果

問題 No.2429 Happiest Tabehodai Ways
ユーザー titiatitia
提出日時 2023-09-05 00:23:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 203 ms / 2,000 ms
コード長 678 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 77,364 KB
最終ジャッジ日時 2024-06-22 21:35:36
合計ジャッジ時間 3,625 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
76,516 KB
testcase_01 AC 34 ms
53,692 KB
testcase_02 AC 35 ms
52,436 KB
testcase_03 AC 36 ms
53,620 KB
testcase_04 AC 35 ms
52,868 KB
testcase_05 AC 35 ms
53,016 KB
testcase_06 AC 34 ms
52,612 KB
testcase_07 AC 33 ms
52,936 KB
testcase_08 AC 37 ms
53,076 KB
testcase_09 AC 35 ms
52,664 KB
testcase_10 AC 38 ms
52,260 KB
testcase_11 AC 39 ms
60,176 KB
testcase_12 AC 39 ms
60,808 KB
testcase_13 AC 47 ms
64,336 KB
testcase_14 AC 45 ms
63,552 KB
testcase_15 AC 58 ms
64,944 KB
testcase_16 AC 37 ms
59,796 KB
testcase_17 AC 34 ms
52,456 KB
testcase_18 AC 46 ms
64,456 KB
testcase_19 AC 48 ms
63,984 KB
testcase_20 AC 45 ms
63,400 KB
testcase_21 AC 34 ms
53,536 KB
testcase_22 AC 32 ms
53,128 KB
testcase_23 AC 32 ms
54,376 KB
testcase_24 AC 33 ms
53,004 KB
testcase_25 AC 41 ms
60,612 KB
testcase_26 AC 40 ms
61,168 KB
testcase_27 AC 37 ms
58,692 KB
testcase_28 AC 37 ms
52,796 KB
testcase_29 AC 51 ms
63,488 KB
testcase_30 AC 48 ms
63,744 KB
testcase_31 AC 40 ms
61,304 KB
testcase_32 AC 47 ms
64,096 KB
testcase_33 AC 56 ms
64,668 KB
testcase_34 AC 48 ms
66,516 KB
testcase_35 AC 44 ms
63,496 KB
testcase_36 AC 73 ms
74,136 KB
testcase_37 AC 39 ms
61,360 KB
testcase_38 AC 39 ms
60,164 KB
testcase_39 AC 37 ms
54,500 KB
testcase_40 AC 203 ms
77,364 KB
testcase_41 AC 40 ms
60,728 KB
testcase_42 AC 145 ms
76,872 KB
testcase_43 AC 35 ms
53,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

mod=998244353

N,K=map(int,input().split())
C=list(map(int,input().split()))
D=list(map(int,input().split()))

DP=[[0,0] for i in range(K+1)]
DP[0]=[0,1]

MAX=0
ANS=0


for i in range(K+1):
    if DP[i]!=[0,0]:
        for j in range(N):
            c,d=C[j],D[j]

            if i+c<=K:
                if DP[i+c][0]<DP[i][0]+d:
                    DP[i+c][0]=DP[i][0]+d
                    DP[i+c][1]=DP[i][1]
                elif DP[i+c][0]==DP[i][0]+d:
                    DP[i+c][1]+=DP[i][1]

for i in range(K+1):
    MAX=max(MAX,DP[i][0])

for i in range(K+1):
    if MAX==DP[i][0]:
        ANS+=DP[i][1]

print(MAX)
print(ANS%mod)
0