結果

問題 No.2833 Count Taiko Results
ユーザー PNJPNJ
提出日時 2024-08-02 23:26:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 425 ms / 2,000 ms
コード長 501 bytes
コンパイル時間 472 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 140,180 KB
最終ジャッジ日時 2024-08-02 23:26:59
合計ジャッジ時間 11,940 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,324 KB
testcase_01 AC 39 ms
53,944 KB
testcase_02 AC 50 ms
54,108 KB
testcase_03 AC 38 ms
54,592 KB
testcase_04 AC 40 ms
61,112 KB
testcase_05 AC 42 ms
59,692 KB
testcase_06 AC 39 ms
55,428 KB
testcase_07 AC 42 ms
60,244 KB
testcase_08 AC 41 ms
60,524 KB
testcase_09 AC 42 ms
60,568 KB
testcase_10 AC 42 ms
60,544 KB
testcase_11 AC 42 ms
60,804 KB
testcase_12 AC 38 ms
60,120 KB
testcase_13 AC 40 ms
59,624 KB
testcase_14 AC 38 ms
54,428 KB
testcase_15 AC 41 ms
59,332 KB
testcase_16 AC 41 ms
60,480 KB
testcase_17 AC 42 ms
60,440 KB
testcase_18 AC 43 ms
59,400 KB
testcase_19 AC 42 ms
60,356 KB
testcase_20 AC 40 ms
59,760 KB
testcase_21 AC 38 ms
59,788 KB
testcase_22 AC 37 ms
55,176 KB
testcase_23 AC 42 ms
55,336 KB
testcase_24 AC 43 ms
59,736 KB
testcase_25 AC 40 ms
59,600 KB
testcase_26 AC 38 ms
53,968 KB
testcase_27 AC 39 ms
59,512 KB
testcase_28 AC 43 ms
59,720 KB
testcase_29 AC 40 ms
53,928 KB
testcase_30 AC 43 ms
60,008 KB
testcase_31 AC 38 ms
54,124 KB
testcase_32 AC 39 ms
59,896 KB
testcase_33 AC 37 ms
55,056 KB
testcase_34 AC 337 ms
109,448 KB
testcase_35 AC 245 ms
98,816 KB
testcase_36 AC 318 ms
107,328 KB
testcase_37 AC 372 ms
134,048 KB
testcase_38 AC 221 ms
97,600 KB
testcase_39 AC 309 ms
110,264 KB
testcase_40 AC 351 ms
109,876 KB
testcase_41 AC 357 ms
128,212 KB
testcase_42 AC 333 ms
109,000 KB
testcase_43 AC 358 ms
109,532 KB
testcase_44 AC 373 ms
136,352 KB
testcase_45 AC 301 ms
106,912 KB
testcase_46 AC 240 ms
99,876 KB
testcase_47 AC 308 ms
102,736 KB
testcase_48 AC 218 ms
96,572 KB
testcase_49 AC 377 ms
136,176 KB
testcase_50 AC 361 ms
132,328 KB
testcase_51 AC 398 ms
135,772 KB
testcase_52 AC 381 ms
137,804 KB
testcase_53 AC 368 ms
134,240 KB
testcase_54 AC 39 ms
53,760 KB
testcase_55 AC 425 ms
140,152 KB
testcase_56 AC 394 ms
140,180 KB
testcase_57 AC 386 ms
140,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
mod = 998244353

N,K = map(int,input().split())
A = list(map(int,input().split()))
B = list(map(int,input().split()))

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

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