結果

問題 No.1091 Range Xor Query
ユーザー takakintakakin
提出日時 2020-07-18 21:40:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 601 ms / 2,000 ms
コード長 233 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 30,688 KB
最終ジャッジ日時 2024-12-14 08:41:30
合計ジャッジ時間 15,024 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 133 ms
22,920 KB
testcase_04 AC 335 ms
14,224 KB
testcase_05 AC 422 ms
29,296 KB
testcase_06 AC 50 ms
14,408 KB
testcase_07 AC 398 ms
20,320 KB
testcase_08 AC 543 ms
23,100 KB
testcase_09 AC 264 ms
14,848 KB
testcase_10 AC 408 ms
25,068 KB
testcase_11 AC 513 ms
27,088 KB
testcase_12 AC 342 ms
28,984 KB
testcase_13 AC 583 ms
21,568 KB
testcase_14 AC 444 ms
24,928 KB
testcase_15 AC 476 ms
28,908 KB
testcase_16 AC 416 ms
14,696 KB
testcase_17 AC 601 ms
26,744 KB
testcase_18 AC 110 ms
12,672 KB
testcase_19 AC 158 ms
21,788 KB
testcase_20 AC 564 ms
20,900 KB
testcase_21 AC 264 ms
12,672 KB
testcase_22 AC 546 ms
25,452 KB
testcase_23 AC 570 ms
30,688 KB
testcase_24 AC 574 ms
30,560 KB
testcase_25 AC 568 ms
30,564 KB
testcase_26 AC 568 ms
30,564 KB
testcase_27 AC 574 ms
30,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n,q=map(int,input().split())
A=[int(i) for i in input().split()]
AA=[0]
for a in A:
  AA.append(AA[-1]^a)
for _ in range(q):
  l,r=map(int,input().split())
  print(AA[r]^AA[l-1])
0