結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,456 KB
testcase_01 AC 45 ms
51,712 KB
testcase_02 AC 38 ms
51,712 KB
testcase_03 AC 133 ms
101,888 KB
testcase_04 AC 345 ms
80,436 KB
testcase_05 AC 346 ms
117,248 KB
testcase_06 AC 60 ms
71,808 KB
testcase_07 AC 363 ms
95,360 KB
testcase_08 AC 488 ms
101,888 KB
testcase_09 AC 269 ms
82,428 KB
testcase_10 AC 360 ms
105,344 KB
testcase_11 AC 439 ms
112,572 KB
testcase_12 AC 285 ms
114,432 KB
testcase_13 AC 515 ms
98,304 KB
testcase_14 AC 383 ms
105,344 KB
testcase_15 AC 405 ms
114,304 KB
testcase_16 AC 408 ms
82,944 KB
testcase_17 AC 503 ms
109,824 KB
testcase_18 AC 153 ms
77,492 KB
testcase_19 AC 158 ms
98,636 KB
testcase_20 AC 500 ms
97,652 KB
testcase_21 AC 284 ms
77,440 KB
testcase_22 AC 474 ms
108,032 KB
testcase_23 AC 515 ms
119,040 KB
testcase_24 AC 526 ms
119,388 KB
testcase_25 AC 528 ms
119,664 KB
testcase_26 AC 532 ms
119,196 KB
testcase_27 AC 523 ms
119,176 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)
    for _ in range(Q):
        l, r = map(int,input().split())
        print(xA[l - 1] ^ xA[r])
    return

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