結果

問題 No.1091 Range Xor Query
ユーザー KazunKazun
提出日時 2020-06-25 23:53:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 547 ms / 2,000 ms
コード長 189 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 119,908 KB
最終ジャッジ日時 2024-07-03 21:58:49
合計ジャッジ時間 12,422 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,964 KB
testcase_01 AC 37 ms
52,428 KB
testcase_02 AC 37 ms
53,592 KB
testcase_03 AC 133 ms
102,304 KB
testcase_04 AC 351 ms
80,264 KB
testcase_05 AC 367 ms
117,952 KB
testcase_06 AC 61 ms
72,352 KB
testcase_07 AC 374 ms
96,008 KB
testcase_08 AC 507 ms
102,216 KB
testcase_09 AC 280 ms
82,496 KB
testcase_10 AC 364 ms
105,516 KB
testcase_11 AC 462 ms
112,432 KB
testcase_12 AC 295 ms
114,672 KB
testcase_13 AC 520 ms
98,672 KB
testcase_14 AC 397 ms
105,248 KB
testcase_15 AC 408 ms
113,940 KB
testcase_16 AC 421 ms
82,884 KB
testcase_17 AC 547 ms
109,584 KB
testcase_18 AC 146 ms
77,544 KB
testcase_19 AC 155 ms
98,640 KB
testcase_20 AC 510 ms
97,672 KB
testcase_21 AC 278 ms
77,804 KB
testcase_22 AC 483 ms
108,120 KB
testcase_23 AC 525 ms
119,908 KB
testcase_24 AC 527 ms
119,812 KB
testcase_25 AC 531 ms
119,648 KB
testcase_26 AC 532 ms
119,800 KB
testcase_27 AC 529 ms
119,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

S=[0]
for i in range(N):
    S.append(S[-1]^A[i])

for _ in range(Q):
    l,r=map(int,input().split())
    print(S[r]^S[l-1])
0