結果

問題 No.1091 Range Xor Query
ユーザー syunsukesyunsuke
提出日時 2020-09-16 19:46:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 550 ms / 2,000 ms
コード長 335 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 126,228 KB
最終ジャッジ日時 2024-06-22 03:29:38
合計ジャッジ時間 14,391 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,204 KB
testcase_01 AC 37 ms
53,188 KB
testcase_02 AC 37 ms
53,448 KB
testcase_03 AC 137 ms
106,316 KB
testcase_04 AC 351 ms
81,752 KB
testcase_05 AC 382 ms
123,996 KB
testcase_06 AC 69 ms
74,912 KB
testcase_07 AC 392 ms
99,128 KB
testcase_08 AC 505 ms
106,120 KB
testcase_09 AC 285 ms
83,944 KB
testcase_10 AC 371 ms
110,344 KB
testcase_11 AC 473 ms
118,096 KB
testcase_12 AC 303 ms
120,620 KB
testcase_13 AC 539 ms
102,024 KB
testcase_14 AC 399 ms
110,144 KB
testcase_15 AC 420 ms
119,664 KB
testcase_16 AC 415 ms
84,260 KB
testcase_17 AC 538 ms
115,172 KB
testcase_18 AC 150 ms
78,044 KB
testcase_19 AC 165 ms
102,112 KB
testcase_20 AC 519 ms
101,440 KB
testcase_21 AC 288 ms
78,240 KB
testcase_22 AC 493 ms
113,384 KB
testcase_23 AC 528 ms
126,196 KB
testcase_24 AC 540 ms
125,888 KB
testcase_25 AC 550 ms
126,228 KB
testcase_26 AC 538 ms
126,152 KB
testcase_27 AC 534 ms
126,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q=map(int,input().split())
L=list(map(int,input().split()))
L=[0]+L+[0]
F=[0]
for i in range(1,len(L)):
    F.append(F[-1]^L[i])
#print(F)

E=[0 for i in range(len(F))]
for i in range(1,len(L)):
    E[len(L)-1-i]=E[len(L)-i]^L[len(L)-1-i]
#print(E)

for i in range(Q):
    l,r=map(int,input().split())
    print(F[-1]^F[l-1]^E[r+1])
0