結果

問題 No.1091 Range Xor Query
ユーザー yansi819yansi819
提出日時 2024-05-09 21:56:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 501 ms / 2,000 ms
コード長 197 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 119,872 KB
最終ジャッジ日時 2024-12-17 16:04:43
合計ジャッジ時間 12,790 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,328 KB
testcase_01 AC 34 ms
53,148 KB
testcase_02 AC 35 ms
53,228 KB
testcase_03 AC 126 ms
102,028 KB
testcase_04 AC 303 ms
80,520 KB
testcase_05 AC 333 ms
118,068 KB
testcase_06 AC 57 ms
72,248 KB
testcase_07 AC 341 ms
95,620 KB
testcase_08 AC 445 ms
101,952 KB
testcase_09 AC 258 ms
82,296 KB
testcase_10 AC 334 ms
105,760 KB
testcase_11 AC 407 ms
112,572 KB
testcase_12 AC 262 ms
114,804 KB
testcase_13 AC 477 ms
98,900 KB
testcase_14 AC 352 ms
105,720 KB
testcase_15 AC 381 ms
114,340 KB
testcase_16 AC 380 ms
82,856 KB
testcase_17 AC 487 ms
110,088 KB
testcase_18 AC 129 ms
77,760 KB
testcase_19 AC 147 ms
98,780 KB
testcase_20 AC 457 ms
97,852 KB
testcase_21 AC 255 ms
77,632 KB
testcase_22 AC 430 ms
108,224 KB
testcase_23 AC 481 ms
119,624 KB
testcase_24 AC 499 ms
119,872 KB
testcase_25 AC 484 ms
119,484 KB
testcase_26 AC 501 ms
119,808 KB
testcase_27 AC 497 ms
119,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, Q = map(int, input().split())
A = list(map(int, input().split()))
X = [0]
for a in A:
    X.append(X[-1] ^ a)

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