結果

問題 No.2568 列辞書順列列
ユーザー hiro1729hiro1729
提出日時 2023-12-02 15:36:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 525 ms / 3,000 ms
コード長 371 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 134,912 KB
最終ジャッジ日時 2024-09-26 19:00:32
合計ジャッジ時間 14,612 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 375 ms
76,204 KB
testcase_03 AC 377 ms
76,148 KB
testcase_04 AC 446 ms
134,740 KB
testcase_05 AC 448 ms
134,656 KB
testcase_06 AC 444 ms
134,912 KB
testcase_07 AC 448 ms
134,464 KB
testcase_08 AC 462 ms
134,784 KB
testcase_09 AC 493 ms
115,012 KB
testcase_10 AC 479 ms
115,064 KB
testcase_11 AC 486 ms
114,956 KB
testcase_12 AC 525 ms
114,424 KB
testcase_13 AC 513 ms
114,880 KB
testcase_14 AC 505 ms
114,936 KB
testcase_15 AC 524 ms
114,760 KB
testcase_16 AC 504 ms
114,580 KB
testcase_17 AC 479 ms
114,496 KB
testcase_18 AC 470 ms
114,676 KB
testcase_19 AC 477 ms
114,500 KB
testcase_20 AC 476 ms
114,932 KB
testcase_21 AC 469 ms
114,628 KB
testcase_22 AC 491 ms
114,496 KB
testcase_23 AC 473 ms
114,408 KB
testcase_24 AC 473 ms
114,704 KB
testcase_25 AC 462 ms
114,628 KB
testcase_26 AC 470 ms
114,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, q = map(int, input().split())
a = list(map(int, input().split()))
for i in range(n):
	a[i] -= 1
mod = 998244353
sm = [0]
now = 1
pw = [now]
for i in a[::-1]:
	sm.append(sm[-1] + i * now)
	now = now * m % mod
	pw.append(now)
sm = sm[::-1]
for _ in range(q):
	l, r = map(int, input().split())
	l -= 1
	print((1 + (sm[l] - sm[r]) * pow(pw[n - r], mod - 2, mod)) % mod)
0