結果

問題 No.2170 Left Addition Machine
ユーザー mkawa2mkawa2
提出日時 2022-12-24 10:09:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 334 ms / 2,000 ms
コード長 1,516 bytes
コンパイル時間 430 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 142,928 KB
最終ジャッジ日時 2024-11-18 07:18:08
合計ジャッジ時間 22,703 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,020 KB
testcase_01 AC 32 ms
52,864 KB
testcase_02 AC 33 ms
53,796 KB
testcase_03 AC 275 ms
134,408 KB
testcase_04 AC 142 ms
77,256 KB
testcase_05 AC 187 ms
90,948 KB
testcase_06 AC 190 ms
98,472 KB
testcase_07 AC 244 ms
101,244 KB
testcase_08 AC 100 ms
91,652 KB
testcase_09 AC 203 ms
85,588 KB
testcase_10 AC 93 ms
77,060 KB
testcase_11 AC 162 ms
95,508 KB
testcase_12 AC 297 ms
134,700 KB
testcase_13 AC 295 ms
134,820 KB
testcase_14 AC 294 ms
134,592 KB
testcase_15 AC 297 ms
134,708 KB
testcase_16 AC 296 ms
134,460 KB
testcase_17 AC 294 ms
134,596 KB
testcase_18 AC 305 ms
134,708 KB
testcase_19 AC 299 ms
134,700 KB
testcase_20 AC 299 ms
134,700 KB
testcase_21 AC 180 ms
77,472 KB
testcase_22 AC 184 ms
77,332 KB
testcase_23 AC 181 ms
77,768 KB
testcase_24 AC 179 ms
78,060 KB
testcase_25 AC 178 ms
77,640 KB
testcase_26 AC 180 ms
77,612 KB
testcase_27 AC 182 ms
77,376 KB
testcase_28 AC 177 ms
77,352 KB
testcase_29 AC 192 ms
77,996 KB
testcase_30 AC 236 ms
128,944 KB
testcase_31 AC 238 ms
129,072 KB
testcase_32 AC 250 ms
128,700 KB
testcase_33 AC 234 ms
128,708 KB
testcase_34 AC 236 ms
128,936 KB
testcase_35 AC 238 ms
129,064 KB
testcase_36 AC 243 ms
129,100 KB
testcase_37 AC 237 ms
129,064 KB
testcase_38 AC 240 ms
129,212 KB
testcase_39 AC 136 ms
77,052 KB
testcase_40 AC 137 ms
76,916 KB
testcase_41 AC 137 ms
76,944 KB
testcase_42 AC 138 ms
77,104 KB
testcase_43 AC 137 ms
76,984 KB
testcase_44 AC 139 ms
76,976 KB
testcase_45 AC 143 ms
76,980 KB
testcase_46 AC 139 ms
77,140 KB
testcase_47 AC 137 ms
76,908 KB
testcase_48 AC 248 ms
128,304 KB
testcase_49 AC 264 ms
128,492 KB
testcase_50 AC 263 ms
128,488 KB
testcase_51 AC 258 ms
128,524 KB
testcase_52 AC 280 ms
128,620 KB
testcase_53 AC 273 ms
128,496 KB
testcase_54 AC 264 ms
129,004 KB
testcase_55 AC 257 ms
128,740 KB
testcase_56 AC 255 ms
128,628 KB
testcase_57 AC 326 ms
142,800 KB
testcase_58 AC 322 ms
142,876 KB
testcase_59 AC 325 ms
142,928 KB
testcase_60 AC 324 ms
142,796 KB
testcase_61 AC 325 ms
142,876 KB
testcase_62 AC 334 ms
142,804 KB
testcase_63 AC 332 ms
142,804 KB
testcase_64 AC 319 ms
142,716 KB
testcase_65 AC 327 ms
142,788 KB
testcase_66 AC 94 ms
76,148 KB
testcase_67 AC 287 ms
118,656 KB
testcase_68 AC 316 ms
142,916 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