結果

問題 No.1091 Range Xor Query
ユーザー trineutrontrineutron
提出日時 2020-06-24 07:09:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,464 ms / 2,000 ms
コード長 216 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 30,676 KB
最終ジャッジ日時 2024-07-03 19:57:25
合計ジャッジ時間 26,921 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,496 KB
testcase_01 AC 28 ms
10,496 KB
testcase_02 AC 29 ms
10,496 KB
testcase_03 AC 179 ms
22,916 KB
testcase_04 AC 886 ms
14,348 KB
testcase_05 AC 899 ms
29,420 KB
testcase_06 AC 49 ms
14,024 KB
testcase_07 AC 948 ms
20,396 KB
testcase_08 AC 1,322 ms
23,092 KB
testcase_09 AC 642 ms
14,716 KB
testcase_10 AC 882 ms
25,064 KB
testcase_11 AC 1,137 ms
27,080 KB
testcase_12 AC 651 ms
29,104 KB
testcase_13 AC 1,464 ms
21,556 KB
testcase_14 AC 980 ms
24,920 KB
testcase_15 AC 1,004 ms
28,904 KB
testcase_16 AC 1,015 ms
14,684 KB
testcase_17 AC 1,362 ms
26,740 KB
testcase_18 AC 223 ms
12,544 KB
testcase_19 AC 249 ms
21,784 KB
testcase_20 AC 1,322 ms
21,016 KB
testcase_21 AC 649 ms
12,672 KB
testcase_22 AC 1,228 ms
25,452 KB
testcase_23 AC 1,396 ms
30,460 KB
testcase_24 AC 1,344 ms
30,556 KB
testcase_25 AC 1,380 ms
30,676 KB
testcase_26 AC 1,396 ms
30,552 KB
testcase_27 AC 1,398 ms
30,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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