結果

問題 No.2429 Happiest Tabehodai Ways
ユーザー miho-4miho-4
提出日時 2023-08-18 23:20:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 327 ms / 2,000 ms
コード長 554 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,056 KB
最終ジャッジ日時 2024-06-12 08:02:26
合計ジャッジ時間 4,092 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 191 ms
76,544 KB
testcase_01 AC 36 ms
54,016 KB
testcase_02 AC 35 ms
53,888 KB
testcase_03 AC 38 ms
53,760 KB
testcase_04 AC 38 ms
54,144 KB
testcase_05 AC 38 ms
53,760 KB
testcase_06 AC 36 ms
53,504 KB
testcase_07 AC 35 ms
53,376 KB
testcase_08 AC 36 ms
53,620 KB
testcase_09 AC 34 ms
53,632 KB
testcase_10 AC 35 ms
53,760 KB
testcase_11 AC 44 ms
61,568 KB
testcase_12 AC 46 ms
63,488 KB
testcase_13 AC 51 ms
66,304 KB
testcase_14 AC 50 ms
66,304 KB
testcase_15 AC 75 ms
76,288 KB
testcase_16 AC 41 ms
59,776 KB
testcase_17 AC 37 ms
53,760 KB
testcase_18 AC 58 ms
68,864 KB
testcase_19 AC 58 ms
68,864 KB
testcase_20 AC 53 ms
66,432 KB
testcase_21 AC 36 ms
53,376 KB
testcase_22 AC 36 ms
53,376 KB
testcase_23 AC 37 ms
54,144 KB
testcase_24 AC 36 ms
53,248 KB
testcase_25 AC 45 ms
63,360 KB
testcase_26 AC 45 ms
63,616 KB
testcase_27 AC 39 ms
59,392 KB
testcase_28 AC 37 ms
53,760 KB
testcase_29 AC 65 ms
70,400 KB
testcase_30 AC 58 ms
69,120 KB
testcase_31 AC 45 ms
62,976 KB
testcase_32 AC 49 ms
64,256 KB
testcase_33 AC 70 ms
71,552 KB
testcase_34 AC 67 ms
72,320 KB
testcase_35 AC 59 ms
67,072 KB
testcase_36 AC 89 ms
74,368 KB
testcase_37 AC 45 ms
60,672 KB
testcase_38 AC 43 ms
60,544 KB
testcase_39 AC 43 ms
55,808 KB
testcase_40 AC 327 ms
76,544 KB
testcase_41 AC 47 ms
64,000 KB
testcase_42 AC 256 ms
77,056 KB
testcase_43 AC 41 ms
53,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
mod=998244353
n,k=map(int,input().split())
C=list(map(int,input().split()))
D=list(map(int,input().split()))
dic=defaultdict(int)
dic[(0,0)]=1
dp=[-1]*(k+1)
dp[0]=0
for i in range(k):
  if dp[i]==-1:continue
  for j in range(n):
    if i+C[j]<=k:
      if dp[i+C[j]]<=dp[i]+D[j]:
        dp[i+C[j]]=dp[i]+D[j]
        dic[(i+C[j],dp[i]+D[j])] += dic[ (i,dp[i]) ]
        dic[(i+C[j],dp[i]+D[j])]%=mod

maxC=max(dp)
ans=0
for i in range(k+1):
  if dp[i]==maxC:
    ans+=dic[(i,maxC)]
    ans%=mod
print(maxC)
print(ans)
0