結果

問題 No.1091 Range Xor Query
ユーザー lloyzlloyz
提出日時 2022-08-31 07:26:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 638 ms / 2,000 ms
コード長 786 bytes
コンパイル時間 1,595 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 108,032 KB
最終ジャッジ日時 2024-11-07 23:44:26
合計ジャッジ時間 16,119 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,096 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 41 ms
51,712 KB
testcase_03 AC 168 ms
94,848 KB
testcase_04 AC 408 ms
79,744 KB
testcase_05 AC 443 ms
107,264 KB
testcase_06 AC 89 ms
79,104 KB
testcase_07 AC 449 ms
90,368 KB
testcase_08 AC 598 ms
94,848 KB
testcase_09 AC 341 ms
81,280 KB
testcase_10 AC 445 ms
97,152 KB
testcase_11 AC 550 ms
103,552 KB
testcase_12 AC 373 ms
103,808 KB
testcase_13 AC 631 ms
92,416 KB
testcase_14 AC 461 ms
97,536 KB
testcase_15 AC 518 ms
103,296 KB
testcase_16 AC 483 ms
81,280 KB
testcase_17 AC 638 ms
100,224 KB
testcase_18 AC 185 ms
77,440 KB
testcase_19 AC 201 ms
92,032 KB
testcase_20 AC 610 ms
92,032 KB
testcase_21 AC 334 ms
77,056 KB
testcase_22 AC 597 ms
99,840 KB
testcase_23 AC 598 ms
107,264 KB
testcase_24 AC 621 ms
108,032 KB
testcase_25 AC 626 ms
107,776 KB
testcase_26 AC 610 ms
107,648 KB
testcase_27 AC 598 ms
107,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Fenwick_Tree:
    def __init__(self, n):
        self.n = n
        self.data = [0] * (n + 1)

    def add(self, p, x):
        p += 1
        while p <= self.n:
            self.data[p] ^= x
            p += p & -p

    def sum(self, l, r):
        '''範囲[l, r)(lからrまで)の総xorを求める'''
        return self._sum(r) ^ self._sum(l - 1)

    def _sum(self, r):
        '''範囲[0, r)(0からrまで)の総xorを求める'''
        s = 0
        r += 1
        while r > 0:
            s ^= self.data[r]
            r -= r & -r
        return s

n, q = map(int, input().split())
A = list(map(int, input().split()))
FT = Fenwick_Tree(n)
for i in range(n):
    FT.add(i, A[i])
for _ in range(q):
    l, r = map(int, input().split())
    print(FT.sum(l - 1, r - 1))
0