結果

問題 No.2429 Happiest Tabehodai Ways
ユーザー noriocnorioc
提出日時 2023-08-18 23:44:59
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 901 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 209,184 KB
最終ジャッジ日時 2024-11-29 02:31:56
合計ジャッジ時間 21,373 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
84,400 KB
testcase_01 AC 48 ms
209,184 KB
testcase_02 AC 46 ms
63,184 KB
testcase_03 AC 46 ms
63,060 KB
testcase_04 AC 46 ms
62,592 KB
testcase_05 AC 47 ms
148,072 KB
testcase_06 AC 48 ms
62,304 KB
testcase_07 AC 48 ms
56,664 KB
testcase_08 AC 47 ms
56,256 KB
testcase_09 AC 50 ms
61,516 KB
testcase_10 AC 49 ms
60,868 KB
testcase_11 AC 97 ms
77,664 KB
testcase_12 AC 71 ms
74,012 KB
testcase_13 AC 154 ms
80,836 KB
testcase_14 AC 81 ms
73,816 KB
testcase_15 TLE -
testcase_16 AC 57 ms
65,208 KB
testcase_17 AC 50 ms
60,896 KB
testcase_18 AC 473 ms
93,180 KB
testcase_19 AC 1,402 ms
143,544 KB
testcase_20 AC 385 ms
90,608 KB
testcase_21 WA -
testcase_22 AC 47 ms
56,332 KB
testcase_23 AC 47 ms
56,364 KB
testcase_24 AC 46 ms
56,228 KB
testcase_25 AC 71 ms
71,920 KB
testcase_26 AC 71 ms
72,024 KB
testcase_27 AC 55 ms
64,336 KB
testcase_28 AC 47 ms
55,644 KB
testcase_29 AC 1,958 ms
97,636 KB
testcase_30 AC 589 ms
83,976 KB
testcase_31 AC 66 ms
69,472 KB
testcase_32 AC 68 ms
70,648 KB
testcase_33 TLE -
testcase_34 AC 404 ms
79,616 KB
testcase_35 AC 105 ms
76,832 KB
testcase_36 TLE -
testcase_37 AC 56 ms
63,884 KB
testcase_38 AC 59 ms
66,324 KB
testcase_39 AC 49 ms
57,704 KB
testcase_40 AC 181 ms
77,980 KB
testcase_41 AC 194 ms
94,460 KB
testcase_42 TLE -
testcase_43 AC 46 ms
142,196 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)
    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

memo = {}
def g(h, k):
    if k == 0:
        if h > 0: return 0
        return 1

    if (h, k) in memo: return memo[h, k]

    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
    memo[h, k] = res
    return res


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