結果

問題 No.1091 Range Xor Query
ユーザー NatsubiSoganNatsubiSogan
提出日時 2020-08-28 20:28:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,399 ms / 2,000 ms
コード長 205 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 30,804 KB
最終ジャッジ日時 2024-11-13 23:42:47
合計ジャッジ時間 28,736 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 34 ms
10,624 KB
testcase_02 AC 32 ms
10,624 KB
testcase_03 AC 180 ms
23,828 KB
testcase_04 AC 869 ms
14,528 KB
testcase_05 AC 883 ms
29,292 KB
testcase_06 AC 52 ms
14,432 KB
testcase_07 AC 936 ms
21,012 KB
testcase_08 AC 1,304 ms
23,220 KB
testcase_09 AC 670 ms
14,768 KB
testcase_10 AC 911 ms
25,056 KB
testcase_11 AC 1,191 ms
27,080 KB
testcase_12 AC 662 ms
29,100 KB
testcase_13 AC 1,399 ms
21,804 KB
testcase_14 AC 986 ms
24,920 KB
testcase_15 AC 1,035 ms
29,032 KB
testcase_16 AC 1,060 ms
14,968 KB
testcase_17 AC 1,377 ms
26,860 KB
testcase_18 AC 236 ms
12,800 KB
testcase_19 AC 260 ms
21,900 KB
testcase_20 AC 1,337 ms
21,012 KB
testcase_21 AC 680 ms
12,928 KB
testcase_22 AC 1,238 ms
25,572 KB
testcase_23 AC 1,380 ms
30,800 KB
testcase_24 AC 1,389 ms
30,548 KB
testcase_25 AC 1,380 ms
30,616 KB
testcase_26 AC 1,390 ms
30,804 KB
testcase_27 AC 1,397 ms
30,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, q = map(int, input().split())
a = list(map(int, input().split()))
x = [0]
for i in range(n):
    x.append(x[-1] ^ a[i])
for i in range(q):
    l, r = map(int, input().split())
    print(x[r] ^ x[l - 1])
0