結果

問題 No.2568 列辞書順列列
ユーザー tipstar0125tipstar0125
提出日時 2024-01-08 21:32:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 590 ms / 3,000 ms
コード長 351 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 81,776 KB
実行使用メモリ 120,552 KB
最終ジャッジ日時 2024-09-27 19:42:09
合計ジャッジ時間 17,260 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,564 KB
testcase_01 AC 38 ms
52,732 KB
testcase_02 AC 303 ms
76,352 KB
testcase_03 AC 309 ms
76,656 KB
testcase_04 AC 535 ms
117,544 KB
testcase_05 AC 532 ms
117,764 KB
testcase_06 AC 526 ms
117,568 KB
testcase_07 AC 517 ms
117,804 KB
testcase_08 AC 514 ms
117,796 KB
testcase_09 AC 509 ms
119,988 KB
testcase_10 AC 525 ms
120,396 KB
testcase_11 AC 517 ms
120,060 KB
testcase_12 AC 588 ms
119,884 KB
testcase_13 AC 582 ms
120,140 KB
testcase_14 AC 583 ms
120,312 KB
testcase_15 AC 590 ms
120,144 KB
testcase_16 AC 590 ms
120,552 KB
testcase_17 AC 544 ms
120,088 KB
testcase_18 AC 536 ms
120,188 KB
testcase_19 AC 556 ms
120,264 KB
testcase_20 AC 549 ms
120,156 KB
testcase_21 AC 530 ms
119,944 KB
testcase_22 AC 529 ms
120,232 KB
testcase_23 AC 539 ms
120,028 KB
testcase_24 AC 532 ms
120,296 KB
testcase_25 AC 537 ms
120,012 KB
testcase_26 AC 539 ms
120,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,Q=list(map(int,input().split()))
A=list(map(int,input().split()))
mod=998244353
A.reverse()
S=[0]
for (i,a) in enumerate(A):
    S.append((S[-1]+(a-1)*pow(M,i,mod))%mod)

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