結果

問題 No.2429 Happiest Tabehodai Ways
ユーザー noriocnorioc
提出日時 2023-08-19 00:02:35
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 835 bytes
コンパイル時間 347 ms
コンパイル使用メモリ 82,488 KB
実行使用メモリ 69,672 KB
最終ジャッジ日時 2024-05-06 18:00:46
合計ジャッジ時間 4,310 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
66,204 KB
testcase_01 AC 47 ms
55,944 KB
testcase_02 RE -
testcase_03 AC 46 ms
55,692 KB
testcase_04 AC 48 ms
55,228 KB
testcase_05 AC 46 ms
55,424 KB
testcase_06 AC 48 ms
55,196 KB
testcase_07 AC 48 ms
55,732 KB
testcase_08 AC 45 ms
56,212 KB
testcase_09 AC 51 ms
61,764 KB
testcase_10 AC 49 ms
60,900 KB
testcase_11 AC 56 ms
63,612 KB
testcase_12 AC 55 ms
63,444 KB
testcase_13 AC 58 ms
65,356 KB
testcase_14 AC 64 ms
67,336 KB
testcase_15 AC 75 ms
67,540 KB
testcase_16 AC 57 ms
64,740 KB
testcase_17 RE -
testcase_18 AC 61 ms
67,252 KB
testcase_19 AC 64 ms
66,632 KB
testcase_20 AC 60 ms
65,448 KB
testcase_21 AC 47 ms
56,392 KB
testcase_22 AC 46 ms
55,644 KB
testcase_23 AC 45 ms
55,244 KB
testcase_24 AC 47 ms
55,828 KB
testcase_25 AC 52 ms
62,144 KB
testcase_26 AC 52 ms
62,528 KB
testcase_27 AC 48 ms
60,896 KB
testcase_28 AC 46 ms
56,368 KB
testcase_29 AC 60 ms
65,824 KB
testcase_30 AC 60 ms
65,716 KB
testcase_31 AC 53 ms
63,216 KB
testcase_32 AC 54 ms
63,256 KB
testcase_33 AC 67 ms
67,364 KB
testcase_34 AC 65 ms
67,472 KB
testcase_35 AC 57 ms
65,620 KB
testcase_36 AC 65 ms
68,104 KB
testcase_37 AC 55 ms
63,744 KB
testcase_38 AC 56 ms
64,648 KB
testcase_39 AC 49 ms
56,924 KB
testcase_40 AC 63 ms
65,532 KB
testcase_41 AC 56 ms
64,804 KB
testcase_42 AC 70 ms
68,032 KB
testcase_43 AC 45 ms
55,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import cache
import sys
sys.setrecursionlimit(10 ** 6)

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


def f():
    dp = [0] * (K+1)
    pp = [0] * (K+1)
    pp[0] = 1
    for i in range(K):
        for j in range(N):
            c = C[j]
            d = D[j]
            if i+c > K: continue
            if dp[i+c] == dp[i] + d:
                pp[i+c] += pp[i]
                pp[i+c] %= MOD
            elif dp[i+c] < dp[i] + d:
                dp[i+c] = dp[i] + d
                pp[i+c] = pp[i]

    m = 0
    cnt = 0
    for k in range(K+1):
        if m == dp[k]:
            cnt += pp[k]
        elif m < dp[k]:
            m = dp[k]
            cnt = pp[k]

    if m == 0: return 1
    return m, cnt


h, cnt = f()
print(h)
print(cnt)
0