結果

問題 No.2833 Count Taiko Results
ユーザー 👑 p-adicp-adic
提出日時 2024-06-21 08:57:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,589 ms / 2,000 ms
コード長 336 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 41,012 KB
最終ジャッジ日時 2024-06-21 10:09:33
合計ジャッジ時間 27,694 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 32 ms
10,624 KB
testcase_09 AC 31 ms
10,880 KB
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 32 ms
10,880 KB
testcase_12 AC 30 ms
10,752 KB
testcase_13 AC 30 ms
10,880 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 AC 30 ms
10,624 KB
testcase_16 AC 30 ms
10,624 KB
testcase_17 AC 30 ms
10,880 KB
testcase_18 AC 30 ms
10,880 KB
testcase_19 AC 31 ms
10,880 KB
testcase_20 AC 30 ms
10,624 KB
testcase_21 AC 30 ms
10,752 KB
testcase_22 AC 30 ms
10,624 KB
testcase_23 AC 31 ms
10,624 KB
testcase_24 AC 31 ms
10,752 KB
testcase_25 AC 30 ms
10,752 KB
testcase_26 AC 30 ms
10,752 KB
testcase_27 AC 31 ms
10,624 KB
testcase_28 AC 31 ms
10,624 KB
testcase_29 AC 31 ms
10,752 KB
testcase_30 AC 31 ms
10,624 KB
testcase_31 AC 30 ms
10,752 KB
testcase_32 AC 31 ms
10,752 KB
testcase_33 AC 30 ms
10,752 KB
testcase_34 AC 1,195 ms
35,948 KB
testcase_35 AC 783 ms
28,884 KB
testcase_36 AC 800 ms
32,820 KB
testcase_37 AC 1,320 ms
39,560 KB
testcase_38 AC 505 ms
26,832 KB
testcase_39 AC 775 ms
34,328 KB
testcase_40 AC 1,046 ms
35,380 KB
testcase_41 AC 1,184 ms
39,340 KB
testcase_42 AC 1,344 ms
37,472 KB
testcase_43 AC 1,217 ms
36,800 KB
testcase_44 AC 1,202 ms
40,012 KB
testcase_45 AC 998 ms
34,260 KB
testcase_46 AC 890 ms
28,016 KB
testcase_47 AC 934 ms
32,440 KB
testcase_48 AC 806 ms
26,104 KB
testcase_49 AC 1,214 ms
40,460 KB
testcase_50 AC 1,589 ms
40,424 KB
testcase_51 AC 1,281 ms
40,452 KB
testcase_52 AC 1,037 ms
40,588 KB
testcase_53 AC 1,396 ms
40,588 KB
testcase_54 AC 30 ms
10,752 KB
testcase_55 AC 835 ms
40,760 KB
testcase_56 AC 824 ms
40,932 KB
testcase_57 AC 833 ms
41,012 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