結果

問題 No.1091 Range Xor Query
ユーザー Konton7Konton7
提出日時 2020-06-26 21:45:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,393 ms / 2,000 ms
コード長 224 bytes
コンパイル時間 111 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 30,660 KB
最終ジャッジ日時 2024-07-04 20:32:14
合計ジャッジ時間 26,188 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 187 ms
22,864 KB
testcase_04 AC 834 ms
14,276 KB
testcase_05 AC 857 ms
30,660 KB
testcase_06 AC 51 ms
14,292 KB
testcase_07 AC 900 ms
20,292 KB
testcase_08 AC 1,227 ms
24,032 KB
testcase_09 AC 637 ms
14,704 KB
testcase_10 AC 858 ms
26,196 KB
testcase_11 AC 1,120 ms
28,368 KB
testcase_12 AC 621 ms
29,108 KB
testcase_13 AC 1,356 ms
21,684 KB
testcase_14 AC 952 ms
24,808 KB
testcase_15 AC 1,012 ms
27,896 KB
testcase_16 AC 974 ms
14,708 KB
testcase_17 AC 1,357 ms
26,804 KB
testcase_18 AC 222 ms
12,672 KB
testcase_19 AC 258 ms
21,796 KB
testcase_20 AC 1,315 ms
21,036 KB
testcase_21 AC 601 ms
12,672 KB
testcase_22 AC 1,161 ms
26,344 KB
testcase_23 AC 1,385 ms
30,476 KB
testcase_24 AC 1,354 ms
30,480 KB
testcase_25 AC 1,353 ms
30,604 KB
testcase_26 AC 1,373 ms
30,612 KB
testcase_27 AC 1,393 ms
30,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, q = [int(v) for v in input().split()]
a = [0]
b = [int(v) for v in input().split()]
for i in range(n):
    a.append(a[-1] ^ b[i])

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