結果

問題 No.1091 Range Xor Query
ユーザー first_vilfirst_vil
提出日時 2020-06-25 10:01:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,449 ms / 2,000 ms
コード長 176 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 30,812 KB
最終ジャッジ日時 2024-07-03 20:46:38
合計ジャッジ時間 27,261 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 181 ms
22,920 KB
testcase_04 AC 847 ms
13,772 KB
testcase_05 AC 880 ms
29,420 KB
testcase_06 AC 51 ms
13,800 KB
testcase_07 AC 969 ms
20,400 KB
testcase_08 AC 1,331 ms
23,228 KB
testcase_09 AC 683 ms
14,588 KB
testcase_10 AC 915 ms
25,064 KB
testcase_11 AC 1,165 ms
27,088 KB
testcase_12 AC 644 ms
28,984 KB
testcase_13 AC 1,418 ms
21,684 KB
testcase_14 AC 999 ms
24,800 KB
testcase_15 AC 1,030 ms
29,024 KB
testcase_16 AC 1,089 ms
14,712 KB
testcase_17 AC 1,393 ms
26,872 KB
testcase_18 AC 240 ms
12,928 KB
testcase_19 AC 256 ms
21,912 KB
testcase_20 AC 1,365 ms
21,024 KB
testcase_21 AC 674 ms
12,800 KB
testcase_22 AC 1,250 ms
25,584 KB
testcase_23 AC 1,429 ms
30,684 KB
testcase_24 AC 1,449 ms
30,812 KB
testcase_25 AC 1,414 ms
30,680 KB
testcase_26 AC 1,414 ms
30,760 KB
testcase_27 AC 1,386 ms
30,688 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 i in range(q):
    l,r=map(int,input().split())
    print(a[r]^a[l-1])
0