結果

問題 No.2833 Count Taiko Results
ユーザー PNJPNJ
提出日時 2024-08-02 23:45:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 320 ms / 2,000 ms
コード長 515 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 118,300 KB
最終ジャッジ日時 2024-08-02 23:45:49
合計ジャッジ時間 10,216 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,288 KB
testcase_01 AC 33 ms
52,888 KB
testcase_02 AC 32 ms
52,736 KB
testcase_03 AC 32 ms
52,688 KB
testcase_04 AC 33 ms
52,792 KB
testcase_05 AC 31 ms
53,408 KB
testcase_06 AC 32 ms
52,468 KB
testcase_07 AC 33 ms
52,896 KB
testcase_08 AC 33 ms
53,472 KB
testcase_09 AC 32 ms
52,460 KB
testcase_10 AC 31 ms
52,072 KB
testcase_11 AC 32 ms
53,016 KB
testcase_12 AC 33 ms
54,024 KB
testcase_13 AC 32 ms
52,824 KB
testcase_14 AC 32 ms
53,672 KB
testcase_15 AC 34 ms
52,756 KB
testcase_16 AC 34 ms
52,692 KB
testcase_17 AC 34 ms
52,924 KB
testcase_18 AC 32 ms
53,204 KB
testcase_19 AC 35 ms
53,340 KB
testcase_20 AC 32 ms
52,628 KB
testcase_21 AC 32 ms
53,028 KB
testcase_22 AC 32 ms
52,692 KB
testcase_23 AC 32 ms
53,260 KB
testcase_24 AC 33 ms
53,272 KB
testcase_25 AC 32 ms
52,996 KB
testcase_26 AC 31 ms
52,748 KB
testcase_27 AC 33 ms
52,588 KB
testcase_28 AC 33 ms
52,520 KB
testcase_29 AC 32 ms
52,460 KB
testcase_30 AC 33 ms
52,532 KB
testcase_31 AC 31 ms
52,784 KB
testcase_32 AC 33 ms
52,456 KB
testcase_33 AC 33 ms
52,692 KB
testcase_34 AC 266 ms
111,412 KB
testcase_35 AC 191 ms
98,180 KB
testcase_36 AC 262 ms
106,828 KB
testcase_37 AC 291 ms
115,584 KB
testcase_38 AC 175 ms
98,592 KB
testcase_39 AC 246 ms
109,536 KB
testcase_40 AC 260 ms
111,060 KB
testcase_41 AC 291 ms
111,636 KB
testcase_42 AC 279 ms
111,928 KB
testcase_43 AC 267 ms
111,508 KB
testcase_44 AC 296 ms
116,084 KB
testcase_45 AC 260 ms
107,828 KB
testcase_46 AC 200 ms
99,708 KB
testcase_47 AC 230 ms
103,796 KB
testcase_48 AC 183 ms
100,380 KB
testcase_49 AC 306 ms
117,088 KB
testcase_50 AC 315 ms
116,040 KB
testcase_51 AC 306 ms
115,652 KB
testcase_52 AC 305 ms
117,976 KB
testcase_53 AC 320 ms
116,596 KB
testcase_54 AC 32 ms
52,508 KB
testcase_55 AC 289 ms
118,180 KB
testcase_56 AC 305 ms
118,300 KB
testcase_57 AC 296 ms
118,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353

N,K = map(int,input().split())
A = list(map(int,input().split()))
B = list(map(int,input().split()))
inv_A = [pow(A[i],mod - 2,mod) for i in range(N)]

def solve(k):
  P = [0] * (N + K + 5)
  P[-1] = 1
  Q = 1
  S = 1
  for i in range(N):
    a,b = A[i],B[i]
    p = inv_A[i] * S % mod
    p = p * b % mod
    P[i] = p
    S = (S + p) % mod
    q = P[i - k - 1]
    S = (S - q) % mod
    Q = Q * a % mod
  return S * Q % mod

ans = (solve(K) - solve(K - 1)) % mod
print(ans)
0