結果

問題 No.1091 Range Xor Query
ユーザー Omura ShunsukeOmura Shunsuke
提出日時 2020-06-24 18:25:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 554 ms / 2,000 ms
コード長 204 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 82,788 KB
実行使用メモリ 121,468 KB
最終ジャッジ日時 2024-07-03 20:13:11
合計ジャッジ時間 12,737 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,360 KB
testcase_01 AC 38 ms
53,372 KB
testcase_02 AC 36 ms
53,524 KB
testcase_03 AC 136 ms
103,076 KB
testcase_04 AC 345 ms
80,760 KB
testcase_05 AC 371 ms
119,400 KB
testcase_06 AC 61 ms
73,220 KB
testcase_07 AC 381 ms
96,880 KB
testcase_08 AC 506 ms
103,292 KB
testcase_09 AC 289 ms
82,600 KB
testcase_10 AC 370 ms
106,972 KB
testcase_11 AC 463 ms
114,016 KB
testcase_12 AC 290 ms
115,896 KB
testcase_13 AC 534 ms
99,516 KB
testcase_14 AC 392 ms
106,704 KB
testcase_15 AC 415 ms
116,156 KB
testcase_16 AC 403 ms
83,072 KB
testcase_17 AC 530 ms
110,988 KB
testcase_18 AC 144 ms
77,704 KB
testcase_19 AC 160 ms
99,624 KB
testcase_20 AC 514 ms
98,432 KB
testcase_21 AC 281 ms
77,604 KB
testcase_22 AC 483 ms
109,088 KB
testcase_23 AC 529 ms
120,996 KB
testcase_24 AC 550 ms
121,164 KB
testcase_25 AC 554 ms
121,468 KB
testcase_26 AC 525 ms
121,044 KB
testcase_27 AC 533 ms
121,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q=map(int,input().split())
a=[0]+list(map(int,input().split()))
x=[0]
for i in range(1,N+1):
    x.append(x[-1]^a[i])
#print(x)
for i in range(Q):
    s,e=map(int,input().split())
    print(x[e]^x[s-1])
0