結果

問題 No.2429 Happiest Tabehodai Ways
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-08-24 20:38:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 932 bytes
コンパイル時間 428 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 89,984 KB
最終ジャッジ日時 2024-06-12 08:05:32
合計ジャッジ時間 4,324 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
82,304 KB
testcase_01 AC 48 ms
55,424 KB
testcase_02 AC 47 ms
55,680 KB
testcase_03 AC 48 ms
56,064 KB
testcase_04 AC 48 ms
55,936 KB
testcase_05 AC 48 ms
55,680 KB
testcase_06 AC 48 ms
55,808 KB
testcase_07 AC 47 ms
55,168 KB
testcase_08 AC 47 ms
55,680 KB
testcase_09 AC 53 ms
61,824 KB
testcase_10 AC 53 ms
62,096 KB
testcase_11 AC 60 ms
65,792 KB
testcase_12 AC 63 ms
66,816 KB
testcase_13 AC 74 ms
70,272 KB
testcase_14 AC 68 ms
68,864 KB
testcase_15 AC 86 ms
71,808 KB
testcase_16 AC 60 ms
64,768 KB
testcase_17 AC 59 ms
64,256 KB
testcase_18 AC 72 ms
69,632 KB
testcase_19 AC 73 ms
70,272 KB
testcase_20 AC 69 ms
68,480 KB
testcase_21 AC 48 ms
55,296 KB
testcase_22 AC 48 ms
55,808 KB
testcase_23 AC 47 ms
55,680 KB
testcase_24 AC 48 ms
55,680 KB
testcase_25 AC 61 ms
66,304 KB
testcase_26 AC 60 ms
65,920 KB
testcase_27 AC 54 ms
62,792 KB
testcase_28 AC 48 ms
55,552 KB
testcase_29 AC 79 ms
72,576 KB
testcase_30 AC 75 ms
71,936 KB
testcase_31 AC 70 ms
70,528 KB
testcase_32 AC 73 ms
71,552 KB
testcase_33 AC 79 ms
72,448 KB
testcase_34 AC 78 ms
72,704 KB
testcase_35 AC 71 ms
70,392 KB
testcase_36 AC 87 ms
73,684 KB
testcase_37 AC 68 ms
66,944 KB
testcase_38 AC 71 ms
68,480 KB
testcase_39 AC 52 ms
56,320 KB
testcase_40 AC 116 ms
89,984 KB
testcase_41 AC 61 ms
65,240 KB
testcase_42 AC 107 ms
82,176 KB
testcase_43 AC 48 ms
55,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

N,K = map(int,input().split())
C = list(map(int,input().split()))
D = list(map(int,input().split()))

mod = 998244353

dp = [-1]*(K+2)
dp[0] = 0
for i in range(N):
    
    c,d = C[i],D[i]
    
    for j in range(K):
        
        if dp[j]!=-1:
            dp[min(K+1,j+c)] = max(dp[min(K+1,j+c)],dp[j]+d)

e = [[] for _ in range(K+2)]

for i in range(N):
    
    c,d = C[i],D[i]
    
    for j in range(K):
        
        k = min(K+1,j+c)
        if dp[k]-dp[j]==d:
            e[j].append(k)
            

val = [0]*(K+2)

# print(dp)

val[0] = 1
for i in range(K):
    
    
    for j in e[i]:
        
        
        val[j] += val[i]
        val[j] %= mod


M = max(dp[:K+1])
ans = 0
for j in range(K+1):
    if dp[j]==M:
        ans += val[j]
        ans %= mod
print(M)
print(ans)
0