結果

問題 No.2568 列辞書順列列
ユーザー flippergoflippergo
提出日時 2024-11-08 22:31:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 616 ms / 3,000 ms
コード長 430 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 109,796 KB
最終ジャッジ日時 2024-11-08 22:32:19
合計ジャッジ時間 17,200 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 302 ms
76,160 KB
testcase_03 AC 288 ms
76,288 KB
testcase_04 AC 536 ms
107,008 KB
testcase_05 AC 553 ms
107,136 KB
testcase_06 AC 528 ms
107,008 KB
testcase_07 AC 567 ms
107,044 KB
testcase_08 AC 557 ms
107,008 KB
testcase_09 AC 528 ms
109,568 KB
testcase_10 AC 517 ms
109,796 KB
testcase_11 AC 498 ms
109,340 KB
testcase_12 AC 608 ms
109,424 KB
testcase_13 AC 581 ms
109,288 KB
testcase_14 AC 616 ms
109,440 KB
testcase_15 AC 578 ms
109,440 KB
testcase_16 AC 613 ms
109,568 KB
testcase_17 AC 545 ms
109,376 KB
testcase_18 AC 589 ms
109,440 KB
testcase_19 AC 546 ms
109,440 KB
testcase_20 AC 556 ms
109,376 KB
testcase_21 AC 561 ms
109,508 KB
testcase_22 AC 562 ms
109,440 KB
testcase_23 AC 538 ms
109,440 KB
testcase_24 AC 566 ms
109,464 KB
testcase_25 AC 528 ms
109,696 KB
testcase_26 AC 564 ms
109,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353
N,M,Q = map(int,input().split())
A = list(map(int,input().split()))
A = [A[i]-1 for i in range(N)]
B = [0]*N
B[-1] = A[-1]
for i in range(N-2,-1,-1):
    B[i] = (B[i+1]+A[i]*pow(M,N-1-i,MOD))%MOD
for _ in range(Q):
    l,r = map(int,input().split())
    l -= 1
    if r==N:
        a = B[l]
    else:
        a = (B[l]-B[r])
        k = pow(M,N-r,MOD)
        a = (a*pow(k,MOD-2,MOD))%MOD
    print((a+1)%MOD)
    
0