結果

問題 No.1091 Range Xor Query
ユーザー yansi819yansi819
提出日時 2024-05-09 21:56:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 561 ms / 2,000 ms
コード長 197 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 119,808 KB
最終ジャッジ日時 2024-05-09 21:57:01
合計ジャッジ時間 14,011 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,584 KB
testcase_01 AC 43 ms
51,840 KB
testcase_02 AC 36 ms
51,840 KB
testcase_03 AC 129 ms
101,760 KB
testcase_04 AC 342 ms
80,256 KB
testcase_05 AC 367 ms
117,632 KB
testcase_06 AC 60 ms
72,064 KB
testcase_07 AC 389 ms
95,744 KB
testcase_08 AC 496 ms
101,888 KB
testcase_09 AC 271 ms
82,048 KB
testcase_10 AC 400 ms
105,600 KB
testcase_11 AC 450 ms
112,856 KB
testcase_12 AC 292 ms
114,944 KB
testcase_13 AC 561 ms
98,660 KB
testcase_14 AC 384 ms
105,644 KB
testcase_15 AC 439 ms
114,196 KB
testcase_16 AC 410 ms
82,816 KB
testcase_17 AC 508 ms
109,440 KB
testcase_18 AC 165 ms
77,824 KB
testcase_19 AC 153 ms
98,944 KB
testcase_20 AC 500 ms
97,536 KB
testcase_21 AC 272 ms
77,440 KB
testcase_22 AC 508 ms
108,160 KB
testcase_23 AC 506 ms
119,808 KB
testcase_24 AC 548 ms
119,408 KB
testcase_25 AC 525 ms
119,808 KB
testcase_26 AC 544 ms
119,680 KB
testcase_27 AC 519 ms
119,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, Q = map(int, input().split())
A = list(map(int, input().split()))
X = [0]
for a in A:
    X.append(X[-1] ^ a)

for _ in range(Q):
    l, r = map(int, input().split())
    print(X[l - 1] ^ X[r])
0