結果

問題 No.2429 Happiest Tabehodai Ways
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2023-08-18 22:04:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 878 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 76,340 KB
最終ジャッジ日時 2024-11-29 02:29:30
合計ジャッジ時間 3,754 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
62,856 KB
testcase_01 AC 40 ms
53,944 KB
testcase_02 AC 39 ms
52,492 KB
testcase_03 AC 39 ms
52,672 KB
testcase_04 AC 40 ms
52,804 KB
testcase_05 AC 39 ms
52,060 KB
testcase_06 AC 39 ms
51,944 KB
testcase_07 AC 39 ms
52,572 KB
testcase_08 AC 39 ms
53,080 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 59 ms
66,108 KB
testcase_14 WA -
testcase_15 AC 96 ms
76,340 KB
testcase_16 WA -
testcase_17 AC 43 ms
59,340 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 59 ms
67,048 KB
testcase_21 WA -
testcase_22 AC 40 ms
52,372 KB
testcase_23 AC 41 ms
52,676 KB
testcase_24 AC 38 ms
52,856 KB
testcase_25 AC 48 ms
60,584 KB
testcase_26 AC 47 ms
61,444 KB
testcase_27 AC 42 ms
57,772 KB
testcase_28 AC 39 ms
52,676 KB
testcase_29 AC 59 ms
64,848 KB
testcase_30 AC 63 ms
67,336 KB
testcase_31 AC 47 ms
60,524 KB
testcase_32 AC 49 ms
61,928 KB
testcase_33 AC 73 ms
72,024 KB
testcase_34 AC 62 ms
66,952 KB
testcase_35 AC 52 ms
63,056 KB
testcase_36 AC 65 ms
66,828 KB
testcase_37 AC 51 ms
61,412 KB
testcase_38 AC 51 ms
62,360 KB
testcase_39 AC 43 ms
54,172 KB
testcase_40 AC 62 ms
62,024 KB
testcase_41 AC 54 ms
63,204 KB
testcase_42 AC 73 ms
65,492 KB
testcase_43 AC 39 ms
52,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

ナップザック

dp[]

"""

import sys
from sys import stdin

N,K = map(int,stdin.readline().split())

C = list(map(int,stdin.readline().split()))
D = list(map(int,stdin.readline().split()))

assert 1 <= N <= 1000
assert 1 <= K <= 1000
for i in range(N):
    assert 1 <= C[i] <= 1000
    assert 1 <= D[i] <= 1000
 
mod = 998244353

dpmax = [float("-inf")] * (K+1)
dpcnt = [0] * (K+1)

dpmax[0] = 0
dpcnt[0] = 1

for csum in range(K):

    for c,d in zip(C,D):

        if csum+c <= K:

            nexd = dpmax[csum] + d
            if nexd > dpmax[csum+c]:
                dpmax[csum+c] = nexd
                dpcnt[csum+c] = 0

            if nexd == dpmax[csum+c]:
                dpcnt[csum+c] += dpcnt[csum]
                dpcnt[csum+c] %= mod

for i in range(K,-1,-1):

    if dpmax[i] >= 0:
        print (dpmax[i])
        print (dpcnt[i] % mod)
        break
0