結果

問題 No.1091 Range Xor Query
ユーザー 👑 rin204rin204
提出日時 2020-08-13 08:25:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,405 ms / 2,000 ms
コード長 211 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 30,804 KB
最終ジャッジ日時 2024-10-09 19:02:34
合計ジャッジ時間 28,072 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 34 ms
10,752 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 170 ms
23,696 KB
testcase_04 AC 844 ms
14,524 KB
testcase_05 AC 873 ms
29,420 KB
testcase_06 AC 49 ms
14,304 KB
testcase_07 AC 916 ms
21,012 KB
testcase_08 AC 1,306 ms
23,228 KB
testcase_09 AC 673 ms
14,768 KB
testcase_10 AC 882 ms
25,180 KB
testcase_11 AC 1,124 ms
27,080 KB
testcase_12 AC 618 ms
29,104 KB
testcase_13 AC 1,340 ms
21,680 KB
testcase_14 AC 949 ms
24,920 KB
testcase_15 AC 1,013 ms
29,156 KB
testcase_16 AC 1,035 ms
14,972 KB
testcase_17 AC 1,359 ms
26,860 KB
testcase_18 AC 229 ms
12,928 KB
testcase_19 AC 246 ms
21,908 KB
testcase_20 AC 1,303 ms
21,016 KB
testcase_21 AC 658 ms
12,800 KB
testcase_22 AC 1,209 ms
25,636 KB
testcase_23 AC 1,405 ms
30,676 KB
testcase_24 AC 1,373 ms
30,544 KB
testcase_25 AC 1,358 ms
30,800 KB
testcase_26 AC 1,370 ms
30,804 KB
testcase_27 AC 1,387 ms
30,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, q = map(int, input().split())
alst = list(map(int, input().split()))
ans = [0]
for a in alst:
    ans.append(ans[-1] ^ a)
for _ in range(q):
    l, r = map(int, input().split())
    print(ans[r] ^ ans[l - 1])
0