結果

問題 No.2429 Happiest Tabehodai Ways
ユーザー rlangevinrlangevin
提出日時 2023-09-18 15:34:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 630 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 64,948 KB
最終ジャッジ日時 2024-07-05 06:07:59
合計ジャッジ時間 3,434 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
64,048 KB
testcase_01 AC 40 ms
62,212 KB
testcase_02 AC 40 ms
62,216 KB
testcase_03 AC 38 ms
62,016 KB
testcase_04 AC 41 ms
62,376 KB
testcase_05 AC 32 ms
54,596 KB
testcase_06 AC 39 ms
62,484 KB
testcase_07 AC 40 ms
62,440 KB
testcase_08 AC 40 ms
63,772 KB
testcase_09 AC 41 ms
63,136 KB
testcase_10 AC 48 ms
63,632 KB
testcase_11 AC 42 ms
64,216 KB
testcase_12 AC 43 ms
63,332 KB
testcase_13 AC 49 ms
63,704 KB
testcase_14 AC 49 ms
63,972 KB
testcase_15 AC 52 ms
63,636 KB
testcase_16 AC 41 ms
62,688 KB
testcase_17 AC 44 ms
62,916 KB
testcase_18 AC 47 ms
64,328 KB
testcase_19 AC 46 ms
64,044 KB
testcase_20 AC 47 ms
63,488 KB
testcase_21 WA -
testcase_22 AC 41 ms
61,312 KB
testcase_23 AC 42 ms
63,428 KB
testcase_24 AC 45 ms
63,424 KB
testcase_25 AC 45 ms
63,040 KB
testcase_26 AC 47 ms
64,412 KB
testcase_27 AC 45 ms
63,836 KB
testcase_28 AC 46 ms
64,376 KB
testcase_29 AC 48 ms
62,868 KB
testcase_30 AC 51 ms
63,812 KB
testcase_31 AC 47 ms
62,960 KB
testcase_32 AC 54 ms
64,016 KB
testcase_33 AC 49 ms
63,348 KB
testcase_34 AC 51 ms
63,476 KB
testcase_35 AC 51 ms
62,980 KB
testcase_36 AC 54 ms
64,948 KB
testcase_37 AC 43 ms
61,468 KB
testcase_38 AC 48 ms
64,600 KB
testcase_39 AC 33 ms
53,252 KB
testcase_40 AC 47 ms
62,852 KB
testcase_41 AC 41 ms
62,932 KB
testcase_42 AC 55 ms
63,972 KB
testcase_43 AC 33 ms
54,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
C = list(map(int, input().split()))
D = list(map(int, input().split()))
M = 1005
inf = 10 ** 18
mod = 998244353
dp = [-inf] * M
dp_n = [0] * M
dp[0] = 0
dp_n[0] = 1

for i in range(M):
    for c, d in zip(C, D):
        if i - c >= 0:
            if dp[i - c] + d > dp[i]:
                dp[i] = dp[i - c] + d
                dp_n[i] = dp_n[i - c]
            elif dp[i - c] + d == dp[i]:
                dp_n[i] += dp_n[i - c]
                dp_n[i] %= mod
    
ans = -1
num = 0
for i in range(K + 1):
    if dp[i] > ans:
        ans = dp[i]
        num = dp_n[i]
        
print(ans)
print(num)
0