結果

問題 No.2170 Left Addition Machine
ユーザー titiatitia
提出日時 2022-12-22 04:02:07
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 1,202 ms / 2,000 ms
コード長 562 bytes
コンパイル時間 564 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 49,540 KB
最終ジャッジ日時 2024-11-18 06:16:22
合計ジャッジ時間 71,204 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 69
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

mod=998244353
INV=pow(2,mod-2,mod)
POW2INV=[1]
for i in range(3*10**5):
    POW2INV.append(POW2INV[-1]*INV%mod)

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

INC=[0]*N
now=0

for i in range(1,N):
    if A[i-1]<A[i]:
        pass
    else:
        now=i

    INC[i]=now
    
SUM=[0]
now=1
for i in range(N):
    SUM.append(SUM[-1]+A[i]*now%mod)
    now=now*2%mod
    
for tests in range(Q):
    l,r=map(int,input().split())
    k=max(INC[r-1],l-1)+1
    
    print(((SUM[r]-SUM[k])*POW2INV[k]+A[k-1])%mod)
0