結果

問題 No.1091 Range Xor Query
ユーザー flippergoflippergo
提出日時 2024-12-14 19:44:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 543 ms / 2,000 ms
コード長 206 bytes
コンパイル時間 409 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 109,076 KB
最終ジャッジ日時 2024-12-14 19:45:12
合計ジャッジ時間 14,683 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,164 KB
testcase_01 AC 38 ms
51,944 KB
testcase_02 AC 37 ms
52,160 KB
testcase_03 AC 130 ms
95,588 KB
testcase_04 AC 341 ms
79,580 KB
testcase_05 AC 358 ms
108,512 KB
testcase_06 AC 62 ms
70,712 KB
testcase_07 AC 362 ms
91,188 KB
testcase_08 AC 488 ms
95,984 KB
testcase_09 AC 328 ms
80,856 KB
testcase_10 AC 356 ms
98,540 KB
testcase_11 AC 433 ms
104,376 KB
testcase_12 AC 312 ms
105,056 KB
testcase_13 AC 522 ms
93,120 KB
testcase_14 AC 387 ms
98,680 KB
testcase_15 AC 437 ms
104,600 KB
testcase_16 AC 412 ms
81,860 KB
testcase_17 AC 540 ms
101,448 KB
testcase_18 AC 144 ms
77,400 KB
testcase_19 AC 152 ms
93,340 KB
testcase_20 AC 526 ms
92,992 KB
testcase_21 AC 296 ms
77,580 KB
testcase_22 AC 472 ms
101,304 KB
testcase_23 AC 503 ms
108,736 KB
testcase_24 AC 537 ms
109,040 KB
testcase_25 AC 514 ms
108,916 KB
testcase_26 AC 543 ms
109,076 KB
testcase_27 AC 511 ms
109,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q = map(int,input().split())
A = [0]+list(map(int,input().split()))
B = [0]*(N+1)
for i in range(1,N+1):
    B[i] = A[i]^B[i-1]
for _ in range(Q):
    l,r = map(int,input().split())
    print(B[r]^B[l-1])
0