結果

問題 No.2429 Happiest Tabehodai Ways
ユーザー noriocnorioc
提出日時 2023-08-18 23:53:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 760 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 68,300 KB
最終ジャッジ日時 2024-05-06 18:00:42
合計ジャッジ時間 3,857 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
64,984 KB
testcase_01 AC 46 ms
56,656 KB
testcase_02 AC 47 ms
54,528 KB
testcase_03 AC 47 ms
56,496 KB
testcase_04 AC 46 ms
55,388 KB
testcase_05 AC 46 ms
55,528 KB
testcase_06 AC 45 ms
56,256 KB
testcase_07 AC 47 ms
55,824 KB
testcase_08 AC 46 ms
55,948 KB
testcase_09 AC 49 ms
61,576 KB
testcase_10 AC 49 ms
60,568 KB
testcase_11 AC 54 ms
62,904 KB
testcase_12 AC 57 ms
64,492 KB
testcase_13 AC 56 ms
64,724 KB
testcase_14 AC 61 ms
66,572 KB
testcase_15 AC 75 ms
67,756 KB
testcase_16 AC 55 ms
63,136 KB
testcase_17 AC 50 ms
60,588 KB
testcase_18 AC 58 ms
65,472 KB
testcase_19 AC 62 ms
66,468 KB
testcase_20 AC 57 ms
65,032 KB
testcase_21 WA -
testcase_22 AC 46 ms
55,288 KB
testcase_23 AC 45 ms
55,444 KB
testcase_24 AC 45 ms
55,052 KB
testcase_25 AC 52 ms
63,112 KB
testcase_26 AC 53 ms
63,440 KB
testcase_27 AC 50 ms
60,932 KB
testcase_28 AC 46 ms
55,684 KB
testcase_29 AC 59 ms
65,756 KB
testcase_30 AC 60 ms
65,752 KB
testcase_31 AC 52 ms
63,804 KB
testcase_32 AC 54 ms
65,248 KB
testcase_33 AC 66 ms
66,268 KB
testcase_34 AC 63 ms
67,660 KB
testcase_35 AC 56 ms
65,476 KB
testcase_36 AC 64 ms
66,988 KB
testcase_37 AC 55 ms
64,916 KB
testcase_38 AC 54 ms
64,536 KB
testcase_39 AC 47 ms
56,188 KB
testcase_40 AC 63 ms
64,912 KB
testcase_41 AC 57 ms
64,788 KB
testcase_42 AC 71 ms
68,300 KB
testcase_43 AC 45 ms
55,672 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 = 1
    for k in range(K+1):
        if m < dp[k]:
            m = dp[k]
            cnt = pp[k]
    return m, cnt


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