結果

問題 No.2568 列辞書順列列
ユーザー けんぴんけんぴん
提出日時 2023-10-30 19:20:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 380 ms / 3,000 ms
コード長 439 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 82,012 KB
実行使用メモリ 133,076 KB
最終ジャッジ日時 2024-09-25 17:21:55
合計ジャッジ時間 11,551 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 41 ms
52,224 KB
testcase_02 AC 281 ms
76,064 KB
testcase_03 AC 282 ms
76,252 KB
testcase_04 AC 338 ms
133,076 KB
testcase_05 AC 341 ms
132,992 KB
testcase_06 AC 337 ms
132,808 KB
testcase_07 AC 344 ms
132,864 KB
testcase_08 AC 342 ms
132,736 KB
testcase_09 AC 365 ms
121,728 KB
testcase_10 AC 364 ms
121,640 KB
testcase_11 AC 347 ms
121,724 KB
testcase_12 AC 379 ms
121,472 KB
testcase_13 AC 370 ms
121,472 KB
testcase_14 AC 372 ms
121,600 KB
testcase_15 AC 380 ms
121,928 KB
testcase_16 AC 370 ms
121,676 KB
testcase_17 AC 352 ms
121,984 KB
testcase_18 AC 356 ms
121,472 KB
testcase_19 AC 358 ms
121,728 KB
testcase_20 AC 348 ms
121,996 KB
testcase_21 AC 345 ms
121,412 KB
testcase_22 AC 349 ms
121,984 KB
testcase_23 AC 350 ms
121,572 KB
testcase_24 AC 357 ms
121,556 KB
testcase_25 AC 354 ms
121,600 KB
testcase_26 AC 345 ms
121,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
N,M,Q = map(int,input().split())
A = list(map(lambda x: int(x)-1, input().split()))
acc_A = [0]
e = 1
for a in A[::-1]:
    acc_A.append((acc_A[-1] + a*e) % mod)
    e = (e * M) % mod
inv_M = pow(M, mod-2, mod)
inv_M_pow = [1]
for i in range(1, N+1):
    inv_M_pow.append((inv_M_pow[-1] * inv_M) % mod)
for _ in range(Q):
    l,r = map(int, input().split())
    print(((acc_A[-l] - acc_A[-r-1]) * inv_M_pow[N-r] + 1) % mod)
0