結果

問題 No.1091 Range Xor Query
ユーザー tanon710tanon710
提出日時 2020-07-08 00:10:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 192 ms / 2,000 ms
コード長 506 bytes
コンパイル時間 436 ms
コンパイル使用メモリ 82,504 KB
実行使用メモリ 137,496 KB
最終ジャッジ日時 2024-10-01 22:10:55
合計ジャッジ時間 8,295 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,224 KB
testcase_01 AC 38 ms
52,556 KB
testcase_02 AC 39 ms
52,804 KB
testcase_03 AC 109 ms
112,604 KB
testcase_04 AC 115 ms
81,660 KB
testcase_05 AC 175 ms
133,492 KB
testcase_06 AC 58 ms
74,684 KB
testcase_07 AC 145 ms
104,624 KB
testcase_08 AC 179 ms
112,456 KB
testcase_09 AC 107 ms
84,564 KB
testcase_10 AC 150 ms
118,056 KB
testcase_11 AC 180 ms
126,340 KB
testcase_12 AC 149 ms
129,936 KB
testcase_13 AC 172 ms
108,500 KB
testcase_14 AC 162 ms
117,852 KB
testcase_15 AC 176 ms
129,568 KB
testcase_16 AC 129 ms
85,064 KB
testcase_17 AC 192 ms
123,300 KB
testcase_18 AC 78 ms
78,356 KB
testcase_19 AC 106 ms
107,960 KB
testcase_20 AC 172 ms
105,956 KB
testcase_21 AC 101 ms
77,812 KB
testcase_22 AC 182 ms
120,492 KB
testcase_23 AC 184 ms
137,076 KB
testcase_24 AC 183 ms
136,964 KB
testcase_25 AC 183 ms
137,016 KB
testcase_26 AC 183 ms
137,496 KB
testcase_27 AC 183 ms
136,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

import sys
input=sys.stdin.readline

n,q=map(int,input().split())
arr=list(map(int,input().split()))
total=0
for i in range(n):
    total^=arr[i]
acum_left=[0]
for i in range(n):
    acum_left.append(acum_left[-1]^arr[i])
acum_right=[0]
for i in range(n-1,-1,-1):
    acum_right.append(acum_right[-1]^arr[i])
acum_right=acum_right+[0]
acum_right=acum_right[::-1]
for _ in range(q):
    l,r=map(int,input().split())
    print(total^acum_left[l-1]^acum_right[r+1])
0