結果

問題 No.2568 列辞書順列列
ユーザー titiatitia
提出日時 2023-12-21 02:33:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,239 ms / 3,000 ms
コード長 313 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,076 KB
最終ジャッジ日時 2024-09-27 10:41:09
合計ジャッジ時間 28,736 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 735 ms
10,880 KB
testcase_03 AC 713 ms
10,752 KB
testcase_04 AC 1,065 ms
20,476 KB
testcase_05 AC 1,060 ms
20,592 KB
testcase_06 AC 1,056 ms
20,476 KB
testcase_07 AC 1,051 ms
20,464 KB
testcase_08 AC 1,055 ms
20,596 KB
testcase_09 AC 1,079 ms
32,068 KB
testcase_10 AC 1,059 ms
32,072 KB
testcase_11 AC 1,063 ms
32,072 KB
testcase_12 AC 1,207 ms
32,072 KB
testcase_13 AC 1,222 ms
32,072 KB
testcase_14 AC 1,225 ms
32,072 KB
testcase_15 AC 1,212 ms
32,068 KB
testcase_16 AC 1,239 ms
32,072 KB
testcase_17 AC 992 ms
32,076 KB
testcase_18 AC 973 ms
32,068 KB
testcase_19 AC 968 ms
31,944 KB
testcase_20 AC 984 ms
32,072 KB
testcase_21 AC 988 ms
32,072 KB
testcase_22 AC 988 ms
32,072 KB
testcase_23 AC 977 ms
32,068 KB
testcase_24 AC 976 ms
32,068 KB
testcase_25 AC 983 ms
32,068 KB
testcase_26 AC 979 ms
31,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,Q=map(int,input().split())
A=list(map(int,input().split()))

mod=998244353
INV=pow(M,mod-2,mod)
S=[0]*(N+1)

x=1

for i in range(N-1,-1,-1):
    S[i]=(S[i+1]+x*(A[i]-1))%mod
    x=x*M%mod

for tests in range(Q):
    l,r=map(int,input().split())
    ANS=S[l-1]-S[r]

    print((ANS*pow(INV,N-r,mod)%mod+1)%mod)
0