結果

問題 No.2429 Happiest Tabehodai Ways
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-08-24 20:37:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 926 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 90,012 KB
最終ジャッジ日時 2024-06-02 10:04:35
合計ジャッジ時間 3,595 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
81,856 KB
testcase_01 AC 40 ms
55,560 KB
testcase_02 AC 38 ms
56,008 KB
testcase_03 AC 39 ms
55,808 KB
testcase_04 AC 39 ms
57,268 KB
testcase_05 AC 38 ms
57,672 KB
testcase_06 AC 39 ms
56,540 KB
testcase_07 AC 39 ms
56,796 KB
testcase_08 AC 39 ms
56,148 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 59 ms
70,476 KB
testcase_14 WA -
testcase_15 AC 69 ms
73,196 KB
testcase_16 WA -
testcase_17 AC 46 ms
64,748 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 56 ms
68,624 KB
testcase_21 WA -
testcase_22 AC 39 ms
56,288 KB
testcase_23 AC 39 ms
56,168 KB
testcase_24 AC 39 ms
56,564 KB
testcase_25 AC 49 ms
67,348 KB
testcase_26 AC 48 ms
66,324 KB
testcase_27 AC 45 ms
64,412 KB
testcase_28 AC 40 ms
57,312 KB
testcase_29 AC 65 ms
73,508 KB
testcase_30 AC 62 ms
73,088 KB
testcase_31 AC 57 ms
71,644 KB
testcase_32 AC 59 ms
73,212 KB
testcase_33 AC 64 ms
72,912 KB
testcase_34 AC 63 ms
73,404 KB
testcase_35 AC 57 ms
71,836 KB
testcase_36 AC 71 ms
73,824 KB
testcase_37 AC 54 ms
67,400 KB
testcase_38 AC 57 ms
69,988 KB
testcase_39 AC 42 ms
56,776 KB
testcase_40 AC 90 ms
90,012 KB
testcase_41 AC 50 ms
65,704 KB
testcase_42 AC 85 ms
82,260 KB
testcase_43 AC 39 ms
55,752 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

for j in range(K,-1,-1):
    if dp[j]!=-1:
        print(dp[j])
        print(val[j])
        exit()

print(0)
print(1)
0