結果

問題 No.2170 Left Addition Machine
ユーザー mkawa2mkawa2
提出日時 2022-12-24 10:09:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 525 ms / 2,000 ms
コード長 1,516 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 143,312 KB
最終ジャッジ日時 2024-04-29 06:11:51
合計ジャッジ時間 31,491 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,352 KB
testcase_01 AC 48 ms
52,352 KB
testcase_02 AC 43 ms
52,224 KB
testcase_03 AC 403 ms
135,104 KB
testcase_04 AC 202 ms
77,184 KB
testcase_05 AC 265 ms
90,880 KB
testcase_06 AC 269 ms
98,816 KB
testcase_07 AC 348 ms
101,376 KB
testcase_08 AC 136 ms
91,520 KB
testcase_09 AC 286 ms
86,012 KB
testcase_10 AC 127 ms
77,440 KB
testcase_11 AC 222 ms
95,232 KB
testcase_12 AC 418 ms
134,640 KB
testcase_13 AC 417 ms
135,148 KB
testcase_14 AC 411 ms
135,148 KB
testcase_15 AC 412 ms
134,764 KB
testcase_16 AC 416 ms
134,756 KB
testcase_17 AC 417 ms
134,636 KB
testcase_18 AC 407 ms
134,636 KB
testcase_19 AC 421 ms
134,892 KB
testcase_20 AC 426 ms
135,148 KB
testcase_21 AC 267 ms
77,824 KB
testcase_22 AC 252 ms
77,312 KB
testcase_23 AC 257 ms
77,568 KB
testcase_24 AC 258 ms
77,824 KB
testcase_25 AC 252 ms
77,440 KB
testcase_26 AC 252 ms
77,952 KB
testcase_27 AC 255 ms
77,568 KB
testcase_28 AC 254 ms
77,312 KB
testcase_29 AC 259 ms
77,696 KB
testcase_30 AC 346 ms
129,004 KB
testcase_31 AC 352 ms
129,512 KB
testcase_32 AC 347 ms
128,872 KB
testcase_33 AC 348 ms
128,872 KB
testcase_34 AC 346 ms
128,876 KB
testcase_35 AC 339 ms
128,996 KB
testcase_36 AC 343 ms
129,392 KB
testcase_37 AC 344 ms
128,872 KB
testcase_38 AC 342 ms
129,124 KB
testcase_39 AC 204 ms
76,928 KB
testcase_40 AC 211 ms
76,928 KB
testcase_41 AC 206 ms
76,928 KB
testcase_42 AC 213 ms
77,440 KB
testcase_43 AC 204 ms
77,056 KB
testcase_44 AC 212 ms
77,184 KB
testcase_45 AC 209 ms
76,928 KB
testcase_46 AC 210 ms
77,312 KB
testcase_47 AC 205 ms
76,800 KB
testcase_48 AC 348 ms
128,624 KB
testcase_49 AC 354 ms
128,628 KB
testcase_50 AC 361 ms
128,620 KB
testcase_51 AC 362 ms
128,620 KB
testcase_52 AC 367 ms
129,004 KB
testcase_53 AC 369 ms
128,996 KB
testcase_54 AC 356 ms
128,628 KB
testcase_55 AC 355 ms
128,484 KB
testcase_56 AC 350 ms
128,612 KB
testcase_57 AC 430 ms
142,800 KB
testcase_58 AC 437 ms
143,312 KB
testcase_59 AC 452 ms
142,900 KB
testcase_60 AC 430 ms
142,916 KB
testcase_61 AC 428 ms
142,672 KB
testcase_62 AC 424 ms
143,308 KB
testcase_63 AC 424 ms
143,056 KB
testcase_64 AC 519 ms
142,852 KB
testcase_65 AC 525 ms
142,792 KB
testcase_66 AC 127 ms
76,672 KB
testcase_67 AC 386 ms
118,784 KB
testcase_68 AC 411 ms
142,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = (1 << 63)-1
# inf = (1 << 31)-1
# md = 10**9+7
md = 998244353

class RollingHash:
    def __init__(self, target):
        self.BASE = 2
        self.MOD = md
        self.N = len(target)
        self.table = [0]
        self.power = [1]
        for c in target:
            self.table += [self._mod(self.table[-1]*self.BASE)+c]
            self.power += [self._mod(self.power[-1]*self.BASE)]

    def _mod(self, a):
        return a%self.MOD

    def hash_lr(self, l, r):
        return self._mod(self.table[r]-self._mod(self.table[l]*self.power[r-l]))

from bisect import bisect_left

n, q = LI()
aa = LI()

ii = [0]
for i in range(n-1):
    if aa[i] >= aa[i+1]: ii.append(i+1)

rh = RollingHash(aa[::-1])

for _ in range(q):
    l, r = LI()
    l -= 1
    l = max(l, ii[bisect_left(ii, r)-1])
    ans = rh.hash_lr(n-r, n-(l+1))+aa[l]
    print(ans%md)
0