結果

問題 No.1091 Range Xor Query
ユーザー 37zigen37zigen
提出日時 2020-07-02 05:50:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,435 ms / 2,000 ms
コード長 201 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 30,680 KB
最終ジャッジ日時 2024-09-14 16:12:50
合計ジャッジ時間 28,976 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,368 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 188 ms
22,660 KB
testcase_04 AC 869 ms
13,512 KB
testcase_05 AC 906 ms
29,292 KB
testcase_06 AC 55 ms
13,544 KB
testcase_07 AC 944 ms
20,268 KB
testcase_08 AC 1,306 ms
23,096 KB
testcase_09 AC 656 ms
14,328 KB
testcase_10 AC 894 ms
24,936 KB
testcase_11 AC 1,148 ms
26,952 KB
testcase_12 AC 686 ms
28,980 KB
testcase_13 AC 1,410 ms
21,556 KB
testcase_14 AC 962 ms
24,672 KB
testcase_15 AC 1,034 ms
28,904 KB
testcase_16 AC 1,080 ms
14,584 KB
testcase_17 AC 1,394 ms
26,740 KB
testcase_18 AC 237 ms
12,544 KB
testcase_19 AC 266 ms
21,784 KB
testcase_20 AC 1,354 ms
20,768 KB
testcase_21 AC 663 ms
12,544 KB
testcase_22 AC 1,242 ms
25,452 KB
testcase_23 AC 1,411 ms
30,428 KB
testcase_24 AC 1,381 ms
30,680 KB
testcase_25 AC 1,385 ms
30,552 KB
testcase_26 AC 1,388 ms
30,424 KB
testcase_27 AC 1,435 ms
30,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
N,Q=map(int,input().split())
a=[0]+[int(x) for x in input().split()]
for i in range(1,N+1):
    a[i]^=a[i-1]
for i in range(Q):
    l,r=map(int,input().split())
    print(a[r]^a[l-1])
0