結果

問題 No.2833 Count Taiko Results
ユーザー 👑 p-adicp-adic
提出日時 2024-06-21 08:47:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 394 ms / 2,000 ms
コード長 336 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,540 KB
実行使用メモリ 115,172 KB
最終ジャッジ日時 2024-06-21 10:09:13
合計ジャッジ時間 8,892 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,440 KB
testcase_01 AC 31 ms
51,936 KB
testcase_02 AC 30 ms
52,328 KB
testcase_03 AC 31 ms
52,816 KB
testcase_04 AC 34 ms
52,184 KB
testcase_05 AC 36 ms
57,972 KB
testcase_06 AC 35 ms
53,632 KB
testcase_07 AC 33 ms
52,868 KB
testcase_08 AC 38 ms
59,688 KB
testcase_09 AC 39 ms
58,596 KB
testcase_10 AC 35 ms
52,268 KB
testcase_11 AC 35 ms
52,700 KB
testcase_12 AC 36 ms
54,188 KB
testcase_13 AC 34 ms
52,392 KB
testcase_14 AC 33 ms
52,616 KB
testcase_15 AC 35 ms
54,248 KB
testcase_16 AC 33 ms
52,872 KB
testcase_17 AC 36 ms
58,092 KB
testcase_18 AC 35 ms
58,296 KB
testcase_19 AC 34 ms
52,732 KB
testcase_20 AC 41 ms
58,516 KB
testcase_21 AC 33 ms
52,572 KB
testcase_22 AC 32 ms
53,064 KB
testcase_23 AC 31 ms
52,272 KB
testcase_24 AC 32 ms
53,164 KB
testcase_25 AC 30 ms
53,340 KB
testcase_26 AC 32 ms
52,948 KB
testcase_27 AC 32 ms
53,148 KB
testcase_28 AC 34 ms
57,968 KB
testcase_29 AC 31 ms
52,872 KB
testcase_30 AC 35 ms
59,368 KB
testcase_31 AC 39 ms
52,304 KB
testcase_32 AC 35 ms
57,908 KB
testcase_33 AC 31 ms
52,304 KB
testcase_34 AC 279 ms
109,784 KB
testcase_35 AC 191 ms
100,008 KB
testcase_36 AC 181 ms
104,812 KB
testcase_37 AC 305 ms
113,932 KB
testcase_38 AC 134 ms
100,312 KB
testcase_39 AC 168 ms
106,724 KB
testcase_40 AC 246 ms
108,884 KB
testcase_41 AC 277 ms
109,980 KB
testcase_42 AC 339 ms
110,524 KB
testcase_43 AC 283 ms
109,960 KB
testcase_44 AC 258 ms
113,688 KB
testcase_45 AC 227 ms
105,788 KB
testcase_46 AC 236 ms
101,204 KB
testcase_47 AC 232 ms
102,600 KB
testcase_48 AC 222 ms
102,076 KB
testcase_49 AC 279 ms
114,792 KB
testcase_50 AC 394 ms
115,172 KB
testcase_51 AC 281 ms
113,552 KB
testcase_52 AC 201 ms
115,076 KB
testcase_53 AC 318 ms
114,392 KB
testcase_54 AC 32 ms
52,820 KB
testcase_55 AC 137 ms
113,840 KB
testcase_56 AC 143 ms
113,972 KB
testcase_57 AC 155 ms
113,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

R=range
J=lambda:map(int,input().split())
N,K=J()
A=list(J())+[0]
B=list(J())
a=0
t=[1]+[0]*N
P=998244353
for m in R(K-1,K+1):
	s=p=1
	for i in R(N):
		t[i+1]=s*B[i]%P;s=((s if i<m else s-p*t[i-m])*A[i]+t[i+1])%P;p=p*A[i]%P
		if i>=m:p=p*pow(A[i-m],-1,P)%P
	s=0;p=1
	for k in R(m+1):s+=t[N-k]*p;p=p*A[N-1-k]%P
	a+=[s,-s][m<K]
print(a%P)
0