結果

問題 No.2568 列辞書順列列
ユーザー ゼットゼット
提出日時 2023-12-21 00:54:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 427 ms / 3,000 ms
コード長 531 bytes
コンパイル時間 550 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 111,808 KB
最終ジャッジ日時 2024-09-27 10:24:33
合計ジャッジ時間 12,584 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,472 KB
testcase_01 AC 38 ms
53,240 KB
testcase_02 AC 282 ms
76,328 KB
testcase_03 AC 277 ms
76,184 KB
testcase_04 AC 370 ms
109,052 KB
testcase_05 AC 385 ms
109,148 KB
testcase_06 AC 380 ms
108,812 KB
testcase_07 AC 362 ms
108,860 KB
testcase_08 AC 381 ms
109,088 KB
testcase_09 AC 384 ms
111,208 KB
testcase_10 AC 384 ms
111,396 KB
testcase_11 AC 387 ms
111,532 KB
testcase_12 AC 401 ms
111,380 KB
testcase_13 AC 407 ms
111,192 KB
testcase_14 AC 404 ms
111,616 KB
testcase_15 AC 427 ms
111,404 KB
testcase_16 AC 401 ms
111,224 KB
testcase_17 AC 396 ms
111,552 KB
testcase_18 AC 398 ms
111,808 KB
testcase_19 AC 394 ms
111,252 KB
testcase_20 AC 386 ms
111,396 KB
testcase_21 AC 379 ms
111,468 KB
testcase_22 AC 379 ms
111,392 KB
testcase_23 AC 382 ms
111,572 KB
testcase_24 AC 421 ms
111,332 KB
testcase_25 AC 378 ms
111,336 KB
testcase_26 AC 392 ms
111,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,Q=map(int,input().split())
A=list(map(int,input().split()))
u=[1]*(N+1)
mod=998244353
v=[0]*(N+1)
for i in range(1,N+1):
  u[i]=u[i-1]*M
  u[i]%=mod
u2=[1]*(N+1)
for i in range(1,N+1):
  ans=1
  w=u[i]
  n=mod-2
  while n>0:
    if n&1:
      ans*=w
      ans%=mod
    w**=2
    w%=mod
    n//=2
  u2[i]=ans
for i in range(N-1,-1,-1):
  A[i]-=1
  v[i]=v[i+1]+A[i]*u[N-1-i]
  v[i]%=mod
for i in range(Q):
  l,r=map(int,input().split())
  l-=1
  r-=1
  ans=v[l]-v[r+1]
  ans%=mod
  ans*=u2[N-1-r]
  ans+=1
  ans%=mod
  print(ans)
0