結果

問題 No.1091 Range Xor Query
ユーザー vwxyzvwxyz
提出日時 2024-07-17 09:37:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,476 ms / 2,000 ms
コード長 199 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 30,808 KB
最終ジャッジ日時 2024-07-17 09:37:41
合計ジャッジ時間 27,597 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 190 ms
22,792 KB
testcase_04 AC 875 ms
13,768 KB
testcase_05 AC 904 ms
29,288 KB
testcase_06 AC 52 ms
13,672 KB
testcase_07 AC 946 ms
20,396 KB
testcase_08 AC 1,358 ms
23,100 KB
testcase_09 AC 675 ms
14,460 KB
testcase_10 AC 936 ms
25,060 KB
testcase_11 AC 1,195 ms
26,956 KB
testcase_12 AC 679 ms
29,104 KB
testcase_13 AC 1,407 ms
21,424 KB
testcase_14 AC 1,010 ms
24,796 KB
testcase_15 AC 1,058 ms
29,072 KB
testcase_16 AC 1,095 ms
14,592 KB
testcase_17 AC 1,427 ms
26,736 KB
testcase_18 AC 237 ms
12,672 KB
testcase_19 AC 260 ms
21,740 KB
testcase_20 AC 1,403 ms
21,020 KB
testcase_21 AC 672 ms
12,928 KB
testcase_22 AC 1,276 ms
25,452 KB
testcase_23 AC 1,427 ms
30,552 KB
testcase_24 AC 1,456 ms
30,808 KB
testcase_25 AC 1,463 ms
30,552 KB
testcase_26 AC 1,476 ms
30,552 KB
testcase_27 AC 1,428 ms
30,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q=map(int,input().split())
A=[0]+list(map(int,input().split()))
for i in range(1,N+1):
    A[i]^=A[i-1]
for q in range(Q):
    l,r=map(int,input().split())
    l-=1
    ans=A[l]^A[r]
    print(ans)
0