結果

問題 No.2568 列辞書順列列
ユーザー loop0919loop0919
提出日時 2023-11-01 00:31:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 590 ms / 3,000 ms
コード長 451 bytes
コンパイル時間 795 ms
コンパイル使用メモリ 82,944 KB
実行使用メモリ 126,464 KB
最終ジャッジ日時 2024-09-25 17:48:42
合計ジャッジ時間 16,297 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,312 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 272 ms
76,144 KB
testcase_03 AC 269 ms
76,068 KB
testcase_04 AC 514 ms
126,464 KB
testcase_05 AC 519 ms
126,356 KB
testcase_06 AC 524 ms
126,408 KB
testcase_07 AC 516 ms
126,188 KB
testcase_08 AC 515 ms
126,212 KB
testcase_09 AC 499 ms
119,748 KB
testcase_10 AC 497 ms
119,524 KB
testcase_11 AC 501 ms
119,516 KB
testcase_12 AC 585 ms
119,556 KB
testcase_13 AC 572 ms
119,764 KB
testcase_14 AC 574 ms
119,692 KB
testcase_15 AC 586 ms
119,520 KB
testcase_16 AC 590 ms
119,808 KB
testcase_17 AC 520 ms
119,636 KB
testcase_18 AC 536 ms
119,632 KB
testcase_19 AC 522 ms
119,512 KB
testcase_20 AC 537 ms
119,856 KB
testcase_21 AC 523 ms
119,524 KB
testcase_22 AC 533 ms
119,772 KB
testcase_23 AC 530 ms
119,808 KB
testcase_24 AC 526 ms
119,936 KB
testcase_25 AC 519 ms
119,540 KB
testcase_26 AC 538 ms
119,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate

MOD = 998244353

N, M, Q = map(int, input().split())
A = list(map(lambda x: int(x) - 1, input().split()))

culc_A = [(a * pow(M, N-i, MOD)) % MOD for i, a in enumerate(A, start=1)]
cum_culc_A = [0] + list(map(lambda x: x % MOD, accumulate(culc_A)))

for _ in range(Q):
    l, r = map(int, input().split())
    ans = (cum_culc_A[r] - cum_culc_A[l-1]) * pow(M, (N-r)*(MOD-2), MOD) + 1
    ans %= MOD
    
    print(ans)
0