結果

問題 No.1091 Range Xor Query
ユーザー ああいいああいい
提出日時 2021-12-24 10:44:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,335 ms / 2,000 ms
コード長 229 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 30,684 KB
最終ジャッジ日時 2024-09-19 07:41:01
合計ジャッジ時間 25,364 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 26 ms
10,880 KB
testcase_03 AC 182 ms
22,920 KB
testcase_04 AC 807 ms
14,472 KB
testcase_05 AC 844 ms
29,488 KB
testcase_06 AC 50 ms
14,276 KB
testcase_07 AC 872 ms
20,400 KB
testcase_08 AC 1,205 ms
23,284 KB
testcase_09 AC 628 ms
14,840 KB
testcase_10 AC 824 ms
25,192 KB
testcase_11 AC 1,131 ms
27,340 KB
testcase_12 AC 612 ms
28,980 KB
testcase_13 AC 1,315 ms
21,556 KB
testcase_14 AC 922 ms
24,800 KB
testcase_15 AC 1,023 ms
29,032 KB
testcase_16 AC 968 ms
14,872 KB
testcase_17 AC 1,309 ms
26,736 KB
testcase_18 AC 229 ms
12,672 KB
testcase_19 AC 248 ms
22,036 KB
testcase_20 AC 1,255 ms
21,024 KB
testcase_21 AC 613 ms
12,672 KB
testcase_22 AC 1,171 ms
25,452 KB
testcase_23 AC 1,330 ms
30,680 KB
testcase_24 AC 1,303 ms
30,552 KB
testcase_25 AC 1,335 ms
30,684 KB
testcase_26 AC 1,318 ms
30,676 KB
testcase_27 AC 1,329 ms
30,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q = map(int,input().split())
a = list(map(int,input().split()))

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