結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 188 ms
22,788 KB
testcase_04 AC 866 ms
13,636 KB
testcase_05 AC 904 ms
29,164 KB
testcase_06 AC 55 ms
13,544 KB
testcase_07 AC 932 ms
20,268 KB
testcase_08 AC 1,343 ms
23,092 KB
testcase_09 AC 666 ms
14,456 KB
testcase_10 AC 899 ms
24,932 KB
testcase_11 AC 1,183 ms
26,956 KB
testcase_12 AC 664 ms
29,108 KB
testcase_13 AC 1,429 ms
21,556 KB
testcase_14 AC 979 ms
24,792 KB
testcase_15 AC 1,067 ms
28,776 KB
testcase_16 AC 1,060 ms
14,456 KB
testcase_17 AC 1,360 ms
26,744 KB
testcase_18 AC 239 ms
12,672 KB
testcase_19 AC 257 ms
21,784 KB
testcase_20 AC 1,360 ms
20,892 KB
testcase_21 AC 666 ms
12,672 KB
testcase_22 AC 1,270 ms
25,324 KB
testcase_23 AC 1,466 ms
30,552 KB
testcase_24 AC 1,446 ms
30,556 KB
testcase_25 AC 1,415 ms
30,548 KB
testcase_26 AC 1,445 ms
30,424 KB
testcase_27 AC 1,433 ms
30,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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