結果

問題 No.2429 Happiest Tabehodai Ways
ユーザー tassei903tassei903
提出日時 2023-08-11 20:43:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 817 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,784 KB
実行使用メモリ 76,884 KB
最終ジャッジ日時 2024-06-12 07:56:01
合計ジャッジ時間 3,523 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
65,460 KB
testcase_01 AC 34 ms
54,072 KB
testcase_02 AC 33 ms
53,100 KB
testcase_03 AC 41 ms
61,092 KB
testcase_04 AC 34 ms
53,572 KB
testcase_05 AC 34 ms
52,928 KB
testcase_06 AC 32 ms
52,816 KB
testcase_07 AC 33 ms
53,356 KB
testcase_08 AC 34 ms
52,256 KB
testcase_09 AC 44 ms
63,972 KB
testcase_10 AC 34 ms
53,424 KB
testcase_11 AC 53 ms
66,652 KB
testcase_12 AC 54 ms
69,220 KB
testcase_13 AC 77 ms
76,776 KB
testcase_14 AC 70 ms
75,144 KB
testcase_15 AC 91 ms
76,884 KB
testcase_16 AC 55 ms
69,148 KB
testcase_17 AC 40 ms
62,000 KB
testcase_18 AC 72 ms
75,428 KB
testcase_19 AC 76 ms
74,424 KB
testcase_20 AC 74 ms
74,600 KB
testcase_21 AC 35 ms
53,020 KB
testcase_22 AC 33 ms
52,952 KB
testcase_23 AC 34 ms
53,040 KB
testcase_24 AC 32 ms
53,120 KB
testcase_25 AC 41 ms
62,364 KB
testcase_26 AC 42 ms
62,396 KB
testcase_27 AC 33 ms
53,308 KB
testcase_28 AC 33 ms
52,780 KB
testcase_29 AC 53 ms
66,756 KB
testcase_30 AC 64 ms
72,600 KB
testcase_31 AC 45 ms
64,808 KB
testcase_32 AC 46 ms
65,440 KB
testcase_33 AC 63 ms
69,852 KB
testcase_34 AC 59 ms
70,396 KB
testcase_35 AC 50 ms
65,792 KB
testcase_36 AC 59 ms
69,292 KB
testcase_37 AC 57 ms
66,976 KB
testcase_38 AC 58 ms
66,868 KB
testcase_39 AC 50 ms
64,024 KB
testcase_40 AC 54 ms
66,676 KB
testcase_41 AC 76 ms
73,248 KB
testcase_42 AC 62 ms
67,808 KB
testcase_43 AC 35 ms
53,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
c = list(map(int, input().split()))
d = list(map(int, input().split()))
inf = float("inf")
fv = [-inf for i in range(k+1)]
fw = [0 for i in range(k+1)]

for i in range(n):
    if c[i] <= k:
        fv[c[i]] = max(fv[c[i]], d[i])

for i in range(n):
    if c[i] <= k and fv[c[i]] == d[i]:
        fw[c[i]] += 1

dpv = [-inf] * (k+1)
dpw = [0] * (k+1)
dpv[0] = 0
dpw[0] = 1
mod = 998244353

for i in range(1, k+1):
    for j in range(1, i+1):
        dpv[i] = max(dpv[i], dpv[i-j] + fv[j])
    for j in range(1, i+1):
        if dpv[i] == fv[j] + dpv[i-j] and dpv[i-j] != -inf:
            dpw[i] += dpw[i-j] * fw[j] % mod
            dpw[i] %= mod

ansv = max(dpv)
print(ansv)
answ = 0
for i in range(k+1):
    if dpv[i] == ansv:
        answ += dpw[i]
        answ %= mod

print(answ)
0