結果

問題 No.1091 Range Xor Query
ユーザー brthyyjpbrthyyjp
提出日時 2020-09-07 02:51:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 530 ms / 2,000 ms
コード長 228 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 107,776 KB
最終ジャッジ日時 2024-05-06 21:45:39
合計ジャッジ時間 13,266 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,480 KB
testcase_01 AC 34 ms
51,840 KB
testcase_02 AC 35 ms
51,584 KB
testcase_03 AC 123 ms
94,848 KB
testcase_04 AC 333 ms
79,540 KB
testcase_05 AC 336 ms
106,868 KB
testcase_06 AC 60 ms
70,144 KB
testcase_07 AC 367 ms
90,240 KB
testcase_08 AC 460 ms
94,976 KB
testcase_09 AC 270 ms
80,512 KB
testcase_10 AC 372 ms
97,664 KB
testcase_11 AC 497 ms
103,364 KB
testcase_12 AC 274 ms
103,552 KB
testcase_13 AC 499 ms
92,256 KB
testcase_14 AC 425 ms
97,664 KB
testcase_15 AC 375 ms
103,552 KB
testcase_16 AC 378 ms
81,792 KB
testcase_17 AC 477 ms
100,480 KB
testcase_18 AC 142 ms
77,568 KB
testcase_19 AC 163 ms
92,672 KB
testcase_20 AC 465 ms
92,160 KB
testcase_21 AC 264 ms
77,952 KB
testcase_22 AC 456 ms
100,308 KB
testcase_23 AC 530 ms
107,220 KB
testcase_24 AC 500 ms
107,212 KB
testcase_25 AC 486 ms
107,228 KB
testcase_26 AC 479 ms
107,264 KB
testcase_27 AC 484 ms
107,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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