結果

問題 No.2429 Happiest Tabehodai Ways
ユーザー noriocnorioc
提出日時 2023-08-18 23:43:23
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 783 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 226,324 KB
最終ジャッジ日時 2024-11-29 02:31:35
合計ジャッジ時間 20,612 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 46 ms
226,324 KB
testcase_02 AC 47 ms
62,544 KB
testcase_03 AC 47 ms
166,232 KB
testcase_04 AC 47 ms
63,440 KB
testcase_05 AC 47 ms
169,104 KB
testcase_06 AC 45 ms
62,336 KB
testcase_07 AC 45 ms
56,052 KB
testcase_08 AC 47 ms
56,120 KB
testcase_09 AC 49 ms
62,244 KB
testcase_10 AC 49 ms
60,808 KB
testcase_11 AC 110 ms
78,988 KB
testcase_12 AC 83 ms
77,040 KB
testcase_13 AC 175 ms
83,560 KB
testcase_14 AC 87 ms
77,436 KB
testcase_15 TLE -
testcase_16 AC 57 ms
64,456 KB
testcase_17 AC 49 ms
60,964 KB
testcase_18 AC 570 ms
106,988 KB
testcase_19 AC 1,906 ms
185,932 KB
testcase_20 AC 474 ms
102,948 KB
testcase_21 WA -
testcase_22 AC 46 ms
55,536 KB
testcase_23 AC 46 ms
56,644 KB
testcase_24 AC 46 ms
56,620 KB
testcase_25 AC 84 ms
77,076 KB
testcase_26 AC 78 ms
77,092 KB
testcase_27 AC 57 ms
66,508 KB
testcase_28 AC 47 ms
56,532 KB
testcase_29 TLE -
testcase_30 AC 971 ms
89,140 KB
testcase_31 AC 68 ms
73,580 KB
testcase_32 AC 71 ms
73,752 KB
testcase_33 TLE -
testcase_34 AC 573 ms
82,608 KB
testcase_35 AC 119 ms
77,364 KB
testcase_36 TLE -
testcase_37 AC 59 ms
65,624 KB
testcase_38 AC 61 ms
66,648 KB
testcase_39 RE -
testcase_40 RE -
testcase_41 AC 275 ms
114,292 KB
testcase_42 RE -
testcase_43 AC 45 ms
147,796 KB
権限があれば一括ダウンロードができます

ソースコード

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