結果

問題 No.1091 Range Xor Query
ユーザー pluto77pluto77
提出日時 2020-06-25 09:17:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,408 ms / 2,000 ms
コード長 190 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 30,552 KB
最終ジャッジ日時 2024-07-03 20:43:09
合計ジャッジ時間 25,839 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 190 ms
22,664 KB
testcase_04 AC 833 ms
14,224 KB
testcase_05 AC 807 ms
29,288 KB
testcase_06 AC 46 ms
14,148 KB
testcase_07 AC 868 ms
20,268 KB
testcase_08 AC 1,137 ms
23,096 KB
testcase_09 AC 639 ms
14,716 KB
testcase_10 AC 907 ms
25,064 KB
testcase_11 AC 1,082 ms
27,208 KB
testcase_12 AC 607 ms
29,104 KB
testcase_13 AC 1,366 ms
21,552 KB
testcase_14 AC 938 ms
24,796 KB
testcase_15 AC 931 ms
29,028 KB
testcase_16 AC 1,035 ms
14,688 KB
testcase_17 AC 1,271 ms
26,864 KB
testcase_18 AC 252 ms
12,800 KB
testcase_19 AC 255 ms
21,912 KB
testcase_20 AC 1,255 ms
20,888 KB
testcase_21 AC 595 ms
12,672 KB
testcase_22 AC 1,139 ms
25,448 KB
testcase_23 AC 1,280 ms
30,552 KB
testcase_24 AC 1,346 ms
30,548 KB
testcase_25 AC 1,340 ms
30,552 KB
testcase_26 AC 1,271 ms
30,520 KB
testcase_27 AC 1,408 ms
30,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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