結果

問題 No.2568 列辞書順列列
ユーザー KoiKoi
提出日時 2023-12-02 15:16:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 207 ms / 3,000 ms
コード長 387 bytes
コンパイル時間 369 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 131,456 KB
最終ジャッジ日時 2024-09-26 18:21:06
合計ジャッジ時間 7,447 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,352 KB
testcase_01 AC 33 ms
51,968 KB
testcase_02 AC 107 ms
80,000 KB
testcase_03 AC 109 ms
79,876 KB
testcase_04 AC 169 ms
131,456 KB
testcase_05 AC 185 ms
131,328 KB
testcase_06 AC 182 ms
131,200 KB
testcase_07 AC 177 ms
131,456 KB
testcase_08 AC 177 ms
131,328 KB
testcase_09 AC 173 ms
120,320 KB
testcase_10 AC 176 ms
120,124 KB
testcase_11 AC 178 ms
120,064 KB
testcase_12 AC 187 ms
120,064 KB
testcase_13 AC 186 ms
120,424 KB
testcase_14 AC 196 ms
120,064 KB
testcase_15 AC 196 ms
120,064 KB
testcase_16 AC 207 ms
120,064 KB
testcase_17 AC 197 ms
119,936 KB
testcase_18 AC 182 ms
120,320 KB
testcase_19 AC 184 ms
120,192 KB
testcase_20 AC 191 ms
120,064 KB
testcase_21 AC 198 ms
120,192 KB
testcase_22 AC 190 ms
120,064 KB
testcase_23 AC 203 ms
120,192 KB
testcase_24 AC 194 ms
119,936 KB
testcase_25 AC 191 ms
120,320 KB
testcase_26 AC 191 ms
120,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Mod=998244353
N,M,Q=map(int,input().split())
A=list(map(int,input().split()))
for i in range(N):
    A[i]-=1
pow_M=[1]
for i in range(N):
    pow_M.append(pow_M[-1]*M%Mod)
S=[0]
for i in range(N):
    S.append((S[-1]*M+A[i])%Mod)
# print(S)
answers=[]
for i in range(Q):
    l,r=map(int,input().split())
    answers.append((S[r]-S[l-1]*pow_M[r-l+1]+1)%Mod)
for a in answers:
    print(a)
0