結果

問題 No.1091 Range Xor Query
ユーザー 双六双六
提出日時 2020-08-05 22:57:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 154 ms / 2,000 ms
コード長 458 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 117,792 KB
最終ジャッジ日時 2024-09-17 20:06:25
合計ジャッジ時間 7,468 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
54,864 KB
testcase_01 AC 39 ms
54,008 KB
testcase_02 AC 33 ms
54,340 KB
testcase_03 AC 86 ms
101,428 KB
testcase_04 AC 91 ms
80,020 KB
testcase_05 AC 135 ms
115,916 KB
testcase_06 AC 49 ms
71,044 KB
testcase_07 AC 112 ms
95,108 KB
testcase_08 AC 135 ms
101,924 KB
testcase_09 AC 88 ms
81,788 KB
testcase_10 AC 121 ms
105,268 KB
testcase_11 AC 137 ms
111,304 KB
testcase_12 AC 132 ms
112,920 KB
testcase_13 AC 149 ms
98,684 KB
testcase_14 AC 121 ms
105,408 KB
testcase_15 AC 131 ms
112,672 KB
testcase_16 AC 112 ms
82,184 KB
testcase_17 AC 148 ms
108,404 KB
testcase_18 AC 64 ms
77,144 KB
testcase_19 AC 91 ms
98,736 KB
testcase_20 AC 138 ms
97,364 KB
testcase_21 AC 92 ms
77,492 KB
testcase_22 AC 146 ms
107,512 KB
testcase_23 AC 149 ms
117,596 KB
testcase_24 AC 141 ms
117,756 KB
testcase_25 AC 152 ms
117,664 KB
testcase_26 AC 154 ms
117,760 KB
testcase_27 AC 140 ms
117,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys; input = sys.stdin.buffer.readline
sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")

def getlist():
	return list(map(int, input().split()))

#処理内容
def main():
	N, Q = getlist()
	A = getlist()
	XOR = [0]
	for i in range(N):
		XOR.append(XOR[-1] ^ A[i])

	for i in range(Q):
		l, r = getlist()
		l -= 1; r -= 1
		ans = XOR[l] ^ XOR[r + 1]
		print(ans)

if __name__ == '__main__':
	main()
0