結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,496 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 29 ms
10,368 KB
testcase_03 AC 177 ms
22,796 KB
testcase_04 AC 868 ms
14,084 KB
testcase_05 AC 882 ms
29,160 KB
testcase_06 AC 51 ms
14,144 KB
testcase_07 AC 952 ms
20,144 KB
testcase_08 AC 1,299 ms
23,224 KB
testcase_09 AC 677 ms
14,580 KB
testcase_10 AC 880 ms
24,936 KB
testcase_11 AC 1,163 ms
26,996 KB
testcase_12 AC 649 ms
28,848 KB
testcase_13 AC 1,411 ms
21,556 KB
testcase_14 AC 966 ms
24,792 KB
testcase_15 AC 1,043 ms
28,904 KB
testcase_16 AC 1,038 ms
14,820 KB
testcase_17 AC 1,356 ms
26,612 KB
testcase_18 AC 231 ms
12,544 KB
testcase_19 AC 253 ms
21,652 KB
testcase_20 AC 1,348 ms
20,768 KB
testcase_21 AC 658 ms
12,544 KB
testcase_22 AC 1,247 ms
25,448 KB
testcase_23 AC 1,390 ms
30,552 KB
testcase_24 AC 1,385 ms
30,548 KB
testcase_25 AC 1,402 ms
30,424 KB
testcase_26 AC 1,389 ms
30,552 KB
testcase_27 AC 1,404 ms
30,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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