結果

問題 No.2273 一点乗除区間積
ユーザー ecotteaecottea
提出日時 2023-03-09 04:32:27
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,369 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 132,872 KB
最終ジャッジ日時 2024-09-18 02:47:27
合計ジャッジ時間 8,265 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,312 KB
testcase_01 AC 34 ms
52,652 KB
testcase_02 AC 33 ms
53,700 KB
testcase_03 AC 32 ms
52,952 KB
testcase_04 AC 34 ms
53,436 KB
testcase_05 AC 38 ms
52,332 KB
testcase_06 AC 34 ms
53,288 KB
testcase_07 AC 33 ms
54,324 KB
testcase_08 AC 33 ms
52,860 KB
testcase_09 AC 32 ms
53,684 KB
testcase_10 AC 32 ms
53,884 KB
testcase_11 AC 34 ms
52,400 KB
testcase_12 AC 32 ms
52,988 KB
testcase_13 AC 32 ms
53,292 KB
testcase_14 AC 33 ms
53,076 KB
testcase_15 AC 33 ms
52,744 KB
testcase_16 AC 4,886 ms
132,872 KB
testcase_17 AC 1,298 ms
84,576 KB
testcase_18 TLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

class SegmentTree:
    def __init__(self, ini, op, e):
        self.n = len(ini)
        self.op = op
        self.e = e
        self.v = [e] * (2 * self.n)
    
        for i in range(self.n):
            self.v[self.n + i] = ini[i]
  
        for i in range(self.n - 1, 0, -1):
            self.v[i] = op(self.v[2 * i], self.v[2 * i + 1])

    def set(self, i, x):
        i += self.n
        self.v[i] = x
        while i > 1:
            i >>= 1
            self.v[i] = self.op(self.v[2 * i], self.v[2 * i + 1])

    def prod(self, l, r):
        resl = self.e
        resr = self.e

        l += self.n
        r += self.n
        while l < r:
            if l & 1:
                resl = self.op(resl, self.v[l])
                l += 1
            if r & 1:
                resr = self.op(self.v[r - 1], resr)
            l >>= 1
            r >>= 1
        return self.op(resl, resr)
    
    def get(self, i):
        return self.v[i + self.n]
    
    def dump(self):
        print(self.v[self.n:])

def op(x, y):
    return x * y

e = 1


N, B, Q = map(int, input().split())

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

seg = SegmentTree(A, op, e)

for _ in range(Q):
    j, m, l, r = map(int, input().split())

    x = seg.get(j)

    if x % B == 0 and m == B:
        x //= B
    else:
        x *= m
    
    seg.set(j, x)
    
    print(seg.prod(l, r + 1) % B)
0