結果

問題 No.1091 Range Xor Query
ユーザー hir355hir355
提出日時 2020-08-01 21:43:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,410 ms / 2,000 ms
コード長 198 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 30,804 KB
最終ジャッジ日時 2024-07-08 08:27:46
合計ジャッジ時間 27,663 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 28 ms
10,496 KB
testcase_03 AC 168 ms
22,788 KB
testcase_04 AC 816 ms
13,512 KB
testcase_05 AC 831 ms
29,160 KB
testcase_06 AC 50 ms
13,792 KB
testcase_07 AC 906 ms
20,524 KB
testcase_08 AC 1,243 ms
23,088 KB
testcase_09 AC 645 ms
14,324 KB
testcase_10 AC 860 ms
25,184 KB
testcase_11 AC 1,154 ms
26,952 KB
testcase_12 AC 650 ms
28,848 KB
testcase_13 AC 1,368 ms
21,420 KB
testcase_14 AC 926 ms
25,052 KB
testcase_15 AC 1,012 ms
28,896 KB
testcase_16 AC 1,065 ms
14,712 KB
testcase_17 AC 1,360 ms
26,864 KB
testcase_18 AC 230 ms
12,544 KB
testcase_19 AC 248 ms
21,652 KB
testcase_20 AC 1,309 ms
20,764 KB
testcase_21 AC 663 ms
12,544 KB
testcase_22 AC 1,201 ms
25,448 KB
testcase_23 AC 1,348 ms
30,680 KB
testcase_24 AC 1,370 ms
30,544 KB
testcase_25 AC 1,396 ms
30,804 KB
testcase_26 AC 1,373 ms
30,548 KB
testcase_27 AC 1,410 ms
30,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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