結果

問題 No.2429 Happiest Tabehodai Ways
ユーザー noriocnorioc
提出日時 2023-08-18 23:43:23
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 783 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,692 KB
実行使用メモリ 167,640 KB
最終ジャッジ日時 2024-05-06 18:00:32
合計ジャッジ時間 5,147 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 47 ms
54,656 KB
testcase_02 AC 46 ms
55,040 KB
testcase_03 AC 47 ms
55,168 KB
testcase_04 AC 46 ms
55,296 KB
testcase_05 AC 46 ms
54,784 KB
testcase_06 AC 45 ms
55,296 KB
testcase_07 AC 45 ms
54,912 KB
testcase_08 AC 45 ms
55,424 KB
testcase_09 AC 50 ms
60,672 KB
testcase_10 AC 50 ms
60,416 KB
testcase_11 AC 110 ms
78,952 KB
testcase_12 AC 82 ms
77,568 KB
testcase_13 AC 170 ms
83,456 KB
testcase_14 AC 92 ms
77,696 KB
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import cache

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)
    for i in range(K):
        for j in range(N):
            c = C[j]
            d = D[j]
            if i+c > K: continue
            dp[i+c] = max(dp[i+c], dp[i] + d)

    m = 0
    kk = 0
    for k in range(K+1):
        if m < dp[k]:
            m = dp[k]
            kk = k
    return m, kk


@cache
def g(h, k):
    if k == 0:
        if h > 0: return 0
        return 1

    res = 0
    for i in range(N):
        c = C[i]
        d = D[i]
        if h - d < 0 or k - c < 0: continue
        res += g(h-d, k-c)
        res %= MOD
    return res


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