結果

問題 No.2429 Happiest Tabehodai Ways
ユーザー ramdosramdos
提出日時 2023-08-18 14:27:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 419 ms / 2,000 ms
コード長 675 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-12 07:57:14
合計ジャッジ時間 6,245 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 419 ms
10,624 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 27 ms
10,624 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 26 ms
10,752 KB
testcase_11 AC 27 ms
10,752 KB
testcase_12 AC 27 ms
10,624 KB
testcase_13 AC 64 ms
10,624 KB
testcase_14 AC 60 ms
10,752 KB
testcase_15 AC 228 ms
10,752 KB
testcase_16 AC 49 ms
10,752 KB
testcase_17 AC 29 ms
10,624 KB
testcase_18 AC 92 ms
10,624 KB
testcase_19 AC 135 ms
10,752 KB
testcase_20 AC 88 ms
10,624 KB
testcase_21 AC 28 ms
10,496 KB
testcase_22 AC 26 ms
10,624 KB
testcase_23 AC 25 ms
10,624 KB
testcase_24 AC 25 ms
10,752 KB
testcase_25 AC 27 ms
10,752 KB
testcase_26 AC 26 ms
10,752 KB
testcase_27 AC 27 ms
10,752 KB
testcase_28 AC 26 ms
10,624 KB
testcase_29 AC 123 ms
10,624 KB
testcase_30 AC 66 ms
10,624 KB
testcase_31 AC 32 ms
10,752 KB
testcase_32 AC 32 ms
10,752 KB
testcase_33 AC 185 ms
10,624 KB
testcase_34 AC 84 ms
10,624 KB
testcase_35 AC 32 ms
10,752 KB
testcase_36 AC 193 ms
10,624 KB
testcase_37 AC 372 ms
10,752 KB
testcase_38 AC 289 ms
10,624 KB
testcase_39 AC 262 ms
10,624 KB
testcase_40 AC 234 ms
10,624 KB
testcase_41 AC 232 ms
10,624 KB
testcase_42 AC 218 ms
10,752 KB
testcase_43 AC 26 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
C,D=list(map(int,input().split())),list(map(int,input().split()))
A=[0 for _ in range(1001)]
B=[0 for _ in range(1001)]
for i in range(N):
    if A[C[i]]<D[i]:
        A[C[i]]=D[i]
        B[C[i]]=1
    elif A[C[i]]==D[i]:
        B[C[i]]+=1
dp=[0 for _ in range(1001)]
pat=[0 for _ in range(1001)]
pat[0]=1
for i in range(1,K+1):
    for j in range(1,i+1):
        if dp[i] < dp[i-j]+A[j]:
            pat[i]=pat[i-j]*B[j]
            pat[i]%=998244353
            dp[i]= dp[i-j]+A[j]
        elif dp[i] == dp[i-j]+A[j]:
            pat[i]+=pat[i-j]*B[j]
            pat[i]%=998244353
    if dp[i]==0:
        pat[i]=1
print(dp[K])
print(pat[K])
0