結果

問題 No.2568 列辞書順列列
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-06 19:24:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 364 ms / 3,000 ms
コード長 363 bytes
コンパイル時間 607 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 109,116 KB
最終ジャッジ日時 2024-09-06 19:24:53
合計ジャッジ時間 11,699 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,688 KB
testcase_01 AC 35 ms
53,632 KB
testcase_02 AC 272 ms
76,292 KB
testcase_03 AC 278 ms
76,304 KB
testcase_04 AC 320 ms
108,840 KB
testcase_05 AC 328 ms
109,108 KB
testcase_06 AC 321 ms
109,048 KB
testcase_07 AC 340 ms
108,892 KB
testcase_08 AC 315 ms
109,116 KB
testcase_09 AC 343 ms
108,376 KB
testcase_10 AC 360 ms
108,124 KB
testcase_11 AC 341 ms
108,236 KB
testcase_12 AC 353 ms
108,388 KB
testcase_13 AC 352 ms
108,624 KB
testcase_14 AC 364 ms
108,124 KB
testcase_15 AC 360 ms
108,124 KB
testcase_16 AC 356 ms
108,360 KB
testcase_17 AC 359 ms
107,996 KB
testcase_18 AC 344 ms
108,004 KB
testcase_19 AC 339 ms
108,128 KB
testcase_20 AC 356 ms
108,108 KB
testcase_21 AC 341 ms
108,136 KB
testcase_22 AC 352 ms
108,380 KB
testcase_23 AC 359 ms
107,992 KB
testcase_24 AC 330 ms
108,128 KB
testcase_25 AC 341 ms
108,108 KB
testcase_26 AC 336 ms
108,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,q=map(int,input().split())
a=list(map(int,input().split()))
for i in range(n):
	a[i]-=1
M=998244353
B=m
P=[1,B]
R=[1,pow(B,M-2,M)]
for i in range(2,n):
	P+=[P[-1]*P[1]%M]
	R+=[R[-1]*R[1]%M]
h=[0]*(n+1)
for i in reversed(range(n)):
	h[i]=(a[i]*P[n-1-i]+h[i+1])%M
for i in range(q):
	l,r=map(int,input().split())
	l-=1
	r-=1
	print(((h[l]-h[r+1])*R[n-1-r]+1)%M)
0