結果

問題 No.2429 Happiest Tabehodai Ways
ユーザー rlangevinrlangevin
提出日時 2023-09-18 15:36:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 695 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 63,616 KB
最終ジャッジ日時 2024-07-05 06:10:21
合計ジャッジ時間 3,582 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
62,464 KB
testcase_01 AC 51 ms
61,440 KB
testcase_02 AC 50 ms
61,312 KB
testcase_03 AC 44 ms
59,648 KB
testcase_04 AC 48 ms
61,952 KB
testcase_05 AC 38 ms
52,736 KB
testcase_06 AC 45 ms
60,672 KB
testcase_07 AC 44 ms
60,928 KB
testcase_08 AC 48 ms
61,440 KB
testcase_09 AC 51 ms
62,208 KB
testcase_10 AC 49 ms
62,592 KB
testcase_11 AC 49 ms
62,208 KB
testcase_12 AC 48 ms
62,464 KB
testcase_13 AC 56 ms
63,104 KB
testcase_14 AC 56 ms
63,488 KB
testcase_15 AC 60 ms
63,232 KB
testcase_16 AC 50 ms
61,696 KB
testcase_17 AC 52 ms
61,952 KB
testcase_18 AC 56 ms
62,848 KB
testcase_19 AC 54 ms
62,848 KB
testcase_20 AC 55 ms
63,232 KB
testcase_21 AC 46 ms
60,800 KB
testcase_22 AC 45 ms
60,672 KB
testcase_23 AC 48 ms
62,208 KB
testcase_24 AC 49 ms
62,464 KB
testcase_25 AC 51 ms
62,848 KB
testcase_26 AC 52 ms
63,232 KB
testcase_27 AC 51 ms
62,592 KB
testcase_28 AC 52 ms
63,488 KB
testcase_29 AC 55 ms
61,952 KB
testcase_30 AC 57 ms
63,104 KB
testcase_31 AC 53 ms
61,952 KB
testcase_32 AC 61 ms
62,976 KB
testcase_33 AC 54 ms
62,720 KB
testcase_34 AC 57 ms
62,976 KB
testcase_35 AC 56 ms
62,720 KB
testcase_36 AC 61 ms
63,104 KB
testcase_37 AC 49 ms
60,800 KB
testcase_38 AC 53 ms
63,616 KB
testcase_39 AC 37 ms
52,352 KB
testcase_40 AC 53 ms
61,568 KB
testcase_41 AC 45 ms
62,208 KB
testcase_42 AC 61 ms
63,104 KB
testcase_43 AC 38 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
C = list(map(int, input().split()))
D = list(map(int, input().split()))
M = 1005
inf = 10 ** 18
mod = 998244353
dp = [-inf] * M
dp_n = [0] * M
dp[0] = 0
dp_n[0] = 1

for i in range(M):
    for c, d in zip(C, D):
        if i - c >= 0:
            if dp[i - c] + d > dp[i]:
                dp[i] = dp[i - c] + d
                dp_n[i] = dp_n[i - c]
            elif dp[i - c] + d == dp[i]:
                dp_n[i] += dp_n[i - c]
                dp_n[i] %= mod
    
ans = -1
num = 0
for i in range(K + 1):
    if dp[i] > ans:
        ans = dp[i]
        num = dp_n[i]
    elif dp[i] == ans:
        num += dp_n[i]
        num %= mod
        
print(ans)
print(num)
0