結果

問題 No.2429 Happiest Tabehodai Ways
ユーザー noriocnorioc
提出日時 2023-08-19 00:02:35
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 835 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 67,292 KB
最終ジャッジ日時 2024-11-29 02:32:05
合計ジャッジ時間 3,779 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
64,748 KB
testcase_01 AC 47 ms
54,924 KB
testcase_02 RE -
testcase_03 AC 49 ms
55,136 KB
testcase_04 AC 45 ms
55,248 KB
testcase_05 AC 45 ms
55,952 KB
testcase_06 AC 46 ms
56,428 KB
testcase_07 AC 47 ms
55,496 KB
testcase_08 AC 45 ms
55,692 KB
testcase_09 AC 48 ms
61,464 KB
testcase_10 AC 49 ms
61,520 KB
testcase_11 AC 55 ms
62,448 KB
testcase_12 AC 55 ms
63,380 KB
testcase_13 AC 57 ms
66,036 KB
testcase_14 AC 63 ms
67,284 KB
testcase_15 AC 76 ms
67,000 KB
testcase_16 AC 53 ms
63,864 KB
testcase_17 RE -
testcase_18 AC 60 ms
65,684 KB
testcase_19 AC 64 ms
66,604 KB
testcase_20 AC 57 ms
65,184 KB
testcase_21 AC 45 ms
55,404 KB
testcase_22 AC 46 ms
56,140 KB
testcase_23 AC 45 ms
55,928 KB
testcase_24 AC 47 ms
55,820 KB
testcase_25 AC 51 ms
62,232 KB
testcase_26 AC 53 ms
62,092 KB
testcase_27 AC 49 ms
60,908 KB
testcase_28 AC 46 ms
55,540 KB
testcase_29 AC 61 ms
65,464 KB
testcase_30 AC 60 ms
66,532 KB
testcase_31 AC 52 ms
62,984 KB
testcase_32 AC 53 ms
63,684 KB
testcase_33 AC 68 ms
65,572 KB
testcase_34 AC 63 ms
67,292 KB
testcase_35 AC 57 ms
64,832 KB
testcase_36 AC 64 ms
66,564 KB
testcase_37 AC 56 ms
64,232 KB
testcase_38 AC 56 ms
64,232 KB
testcase_39 AC 47 ms
56,300 KB
testcase_40 AC 63 ms
64,500 KB
testcase_41 AC 57 ms
65,048 KB
testcase_42 AC 70 ms
66,616 KB
testcase_43 AC 46 ms
56,112 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