結果

問題 No.2378 Cards and Subsequences
ユーザー timitimi
提出日時 2023-06-11 10:47:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 277 ms / 2,000 ms
コード長 590 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 136,960 KB
最終ジャッジ日時 2024-07-21 16:25:50
合計ジャッジ時間 8,434 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
57,216 KB
testcase_01 AC 39 ms
56,960 KB
testcase_02 AC 35 ms
56,704 KB
testcase_03 AC 36 ms
57,216 KB
testcase_04 AC 37 ms
57,344 KB
testcase_05 AC 36 ms
57,472 KB
testcase_06 AC 67 ms
74,368 KB
testcase_07 AC 75 ms
78,080 KB
testcase_08 AC 65 ms
74,368 KB
testcase_09 AC 87 ms
82,756 KB
testcase_10 AC 97 ms
84,700 KB
testcase_11 AC 100 ms
86,280 KB
testcase_12 AC 102 ms
88,064 KB
testcase_13 AC 79 ms
79,488 KB
testcase_14 AC 269 ms
136,960 KB
testcase_15 AC 247 ms
136,576 KB
testcase_16 AC 264 ms
136,704 KB
testcase_17 AC 248 ms
136,724 KB
testcase_18 AC 252 ms
136,576 KB
testcase_19 AC 244 ms
136,704 KB
testcase_20 AC 252 ms
136,832 KB
testcase_21 AC 261 ms
136,576 KB
testcase_22 AC 264 ms
136,448 KB
testcase_23 AC 255 ms
136,448 KB
testcase_24 AC 229 ms
136,576 KB
testcase_25 AC 241 ms
136,448 KB
testcase_26 AC 223 ms
136,704 KB
testcase_27 AC 228 ms
136,320 KB
testcase_28 AC 240 ms
136,448 KB
testcase_29 AC 275 ms
136,576 KB
testcase_30 AC 277 ms
136,576 KB
testcase_31 AC 274 ms
136,448 KB
testcase_32 AC 272 ms
136,576 KB
testcase_33 AC 276 ms
136,576 KB
testcase_34 AC 247 ms
136,320 KB
testcase_35 AC 151 ms
135,808 KB
testcase_36 AC 222 ms
136,448 KB
testcase_37 AC 240 ms
136,876 KB
testcase_38 AC 221 ms
136,772 KB
testcase_39 AC 224 ms
136,320 KB
testcase_40 AC 62 ms
72,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,K=map(int, input().split())
S=list(map(int, input().split()))
A=list(map(int, input().split()))
B=list(map(int, input().split()))
mod=998244353
dp=[[0]*(K+1) for _ in range(N+1)]
L=[-1 for _ in range(2001)]
cp=[[0]*(K+1) for _ in range(N+2)]
dp[0][0]=1;cp[0][0]=1
for i in range(N):
  a,b=A[S[i]-1],B[S[i]-1]
  for j in range(K+1):
    if j-a>=0:
      dp[i+1][j]+=cp[i][j-a]-cp[L[S[i]]][j-a]
      dp[i+1][j]%=mod
    if j-b>=0:
      dp[i+1][j]+=cp[i][j-b]-cp[L[S[i]]][j-b]
      dp[i+1][j]%=mod
    cp[i+1][j]=cp[i][j]+dp[i+1][j]
    cp[i+1][j]%=mod
  L[S[i]]=i
print(cp[-2][-1]%mod)
0