結果

問題 No.1091 Range Xor Query
ユーザー kept1994kept1994
提出日時 2021-08-28 15:21:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 538 ms / 2,000 ms
コード長 440 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 119,324 KB
最終ジャッジ日時 2024-11-21 21:05:08
合計ジャッジ時間 14,306 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 137 ms
101,908 KB
testcase_04 AC 351 ms
80,244 KB
testcase_05 AC 535 ms
117,760 KB
testcase_06 AC 64 ms
71,680 KB
testcase_07 AC 379 ms
95,620 KB
testcase_08 AC 489 ms
102,172 KB
testcase_09 AC 283 ms
82,616 KB
testcase_10 AC 366 ms
105,184 KB
testcase_11 AC 444 ms
112,312 KB
testcase_12 AC 288 ms
114,492 KB
testcase_13 AC 525 ms
98,524 KB
testcase_14 AC 392 ms
105,700 KB
testcase_15 AC 413 ms
114,048 KB
testcase_16 AC 431 ms
82,816 KB
testcase_17 AC 511 ms
109,436 KB
testcase_18 AC 145 ms
77,412 KB
testcase_19 AC 159 ms
98,380 KB
testcase_20 AC 505 ms
97,664 KB
testcase_21 AC 278 ms
77,428 KB
testcase_22 AC 477 ms
107,804 KB
testcase_23 AC 529 ms
119,048 KB
testcase_24 AC 527 ms
119,008 KB
testcase_25 AC 528 ms
119,308 KB
testcase_26 AC 521 ms
119,324 KB
testcase_27 AC 538 ms
119,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys


def main():
    # N = int(input())
    N, Q = map(int,input().split())
    A = list(map(int,input().split()))
    xA = [0]
    for aa in A:
        xA.append(xA[-1] ^ aa)
    xA.pop(0)
    for _ in range(Q):
        l, r = map(int,input().split())
        if l - 1 == 0:
            print(xA[r - 1])
        else:
            print(xA[l - 2] ^ xA[r - 1])
    return

if __name__ == '__main__':
    main()
0