結果

問題 No.2568 列辞書順列列
ユーザー lloyzlloyz
提出日時 2023-12-20 03:03:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 550 ms / 3,000 ms
コード長 465 bytes
コンパイル時間 612 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 109,868 KB
最終ジャッジ日時 2024-09-27 09:21:11
合計ジャッジ時間 17,045 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,652 KB
testcase_01 AC 38 ms
52,784 KB
testcase_02 AC 372 ms
76,292 KB
testcase_03 AC 364 ms
76,284 KB
testcase_04 AC 512 ms
107,036 KB
testcase_05 AC 497 ms
107,244 KB
testcase_06 AC 499 ms
107,380 KB
testcase_07 AC 505 ms
107,244 KB
testcase_08 AC 501 ms
107,180 KB
testcase_09 AC 515 ms
109,868 KB
testcase_10 AC 528 ms
109,420 KB
testcase_11 AC 522 ms
109,560 KB
testcase_12 AC 536 ms
109,632 KB
testcase_13 AC 527 ms
109,536 KB
testcase_14 AC 534 ms
109,380 KB
testcase_15 AC 550 ms
109,680 KB
testcase_16 AC 538 ms
109,472 KB
testcase_17 AC 527 ms
109,468 KB
testcase_18 AC 505 ms
109,748 KB
testcase_19 AC 525 ms
109,508 KB
testcase_20 AC 516 ms
109,424 KB
testcase_21 AC 508 ms
109,596 KB
testcase_22 AC 525 ms
109,556 KB
testcase_23 AC 513 ms
109,468 KB
testcase_24 AC 521 ms
109,640 KB
testcase_25 AC 514 ms
109,572 KB
testcase_26 AC 520 ms
109,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, q = map(int, input().split())
mod = 998244353
A = list(map(int, input().split()))

Powm = [pow(m, i, mod) for i in range(n + 1)]
accumA = [0 for _ in range(n + 1)]
for i in range(n - 1, -1, -1):
    accumA[i] = accumA[i + 1] + (A[i] - 1) * Powm[n - 1 - i] % mod
    accumA[i] %= mod
for _ in range(q):
    l, r = map(int, input().split())
    l -= 1
    ans = (accumA[l] - accumA[r]) % mod
    ans *= pow(Powm[n - r], mod - 2, mod)
    print((ans + 1) % mod)
0