結果

問題 No.2429 Happiest Tabehodai Ways
ユーザー noriocnorioc
提出日時 2023-08-19 00:02:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 838 bytes
コンパイル時間 550 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 66,432 KB
最終ジャッジ日時 2024-06-12 08:02:46
合計ジャッジ時間 4,306 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
64,128 KB
testcase_01 AC 60 ms
54,912 KB
testcase_02 AC 52 ms
54,400 KB
testcase_03 AC 54 ms
55,040 KB
testcase_04 AC 53 ms
54,784 KB
testcase_05 AC 52 ms
54,784 KB
testcase_06 AC 52 ms
54,528 KB
testcase_07 AC 50 ms
54,656 KB
testcase_08 AC 52 ms
54,784 KB
testcase_09 AC 54 ms
60,672 KB
testcase_10 AC 57 ms
60,032 KB
testcase_11 AC 61 ms
62,336 KB
testcase_12 AC 66 ms
63,360 KB
testcase_13 AC 64 ms
64,128 KB
testcase_14 AC 72 ms
66,048 KB
testcase_15 AC 86 ms
66,432 KB
testcase_16 AC 61 ms
62,592 KB
testcase_17 AC 58 ms
60,160 KB
testcase_18 AC 68 ms
65,280 KB
testcase_19 AC 72 ms
65,024 KB
testcase_20 AC 67 ms
64,640 KB
testcase_21 AC 52 ms
54,528 KB
testcase_22 AC 52 ms
54,784 KB
testcase_23 AC 53 ms
54,656 KB
testcase_24 AC 51 ms
54,656 KB
testcase_25 AC 61 ms
61,440 KB
testcase_26 AC 61 ms
61,440 KB
testcase_27 AC 56 ms
59,904 KB
testcase_28 AC 52 ms
54,528 KB
testcase_29 AC 70 ms
64,896 KB
testcase_30 AC 69 ms
65,024 KB
testcase_31 AC 60 ms
62,080 KB
testcase_32 AC 63 ms
62,976 KB
testcase_33 AC 79 ms
65,280 KB
testcase_34 AC 73 ms
66,048 KB
testcase_35 AC 67 ms
64,640 KB
testcase_36 AC 79 ms
65,920 KB
testcase_37 AC 65 ms
62,464 KB
testcase_38 AC 65 ms
63,104 KB
testcase_39 AC 55 ms
55,680 KB
testcase_40 AC 73 ms
64,128 KB
testcase_41 AC 66 ms
64,128 KB
testcase_42 AC 83 ms
66,432 KB
testcase_43 AC 54 ms
54,656 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 0, 1
    return m, cnt


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