結果

問題 No.2568 列辞書順列列
ユーザー mymelochanmymelochan
提出日時 2023-12-02 16:14:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 255 ms / 3,000 ms
コード長 945 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 120,080 KB
最終ジャッジ日時 2024-09-26 20:00:29
合計ジャッジ時間 8,829 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
55,040 KB
testcase_01 AC 57 ms
54,656 KB
testcase_02 AC 154 ms
87,412 KB
testcase_03 AC 155 ms
87,296 KB
testcase_04 AC 208 ms
119,960 KB
testcase_05 AC 206 ms
119,824 KB
testcase_06 AC 209 ms
120,080 KB
testcase_07 AC 205 ms
119,800 KB
testcase_08 AC 212 ms
119,908 KB
testcase_09 AC 215 ms
119,556 KB
testcase_10 AC 215 ms
119,952 KB
testcase_11 AC 228 ms
119,944 KB
testcase_12 AC 248 ms
119,720 KB
testcase_13 AC 252 ms
119,552 KB
testcase_14 AC 255 ms
119,476 KB
testcase_15 AC 247 ms
119,676 KB
testcase_16 AC 249 ms
119,688 KB
testcase_17 AC 240 ms
119,976 KB
testcase_18 AC 231 ms
120,044 KB
testcase_19 AC 240 ms
119,560 KB
testcase_20 AC 240 ms
119,748 KB
testcase_21 AC 243 ms
119,892 KB
testcase_22 AC 227 ms
119,436 KB
testcase_23 AC 227 ms
119,852 KB
testcase_24 AC 229 ms
119,432 KB
testcase_25 AC 233 ms
119,552 KB
testcase_26 AC 237 ms
119,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#############################################################

import sys
sys.setrecursionlimit(10**7)

from heapq import heappop,heappush
from collections import deque,defaultdict,Counter
from bisect import bisect_left, bisect_right
from itertools import product,combinations,permutations
from math import sin,cos
#from math import isqrt #DO NOT USE PyPy

ipt = sys.stdin.readline
iin = lambda :int(ipt())
lmin = lambda :list(map(int,ipt().split()))

MOD = 998244353
#############################################################

N,M,Q = lmin()
A = lmin()
query = [lmin() for _ in range(Q)]

p = [1]
ip = [1]

inv = pow(M,MOD-2,MOD)
for i in range(N+10):
    p.append(p[-1]*M%MOD)
    ip.append(ip[-1]*inv%MOD)

B = [0]*N
for i in range(N-1,-1,-1):
    B[i] = (A[i]-1)*p[N-1-i]%MOD

S = [0]*(N+1)
S[-1] = 1
for i in range(N-1,-1,-1):
    S[i] = (S[i+1]+B[i])%MOD

for l,r in query:
    ans = (S[l-1]-S[r])%MOD*ip[N-r]%MOD
    print((ans+1)%MOD)
0