結果

問題 No.1091 Range Xor Query
ユーザー ThetaTheta
提出日時 2022-10-20 11:23:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,226 ms / 2,000 ms
コード長 334 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 30,692 KB
最終ジャッジ日時 2024-06-30 05:21:00
合計ジャッジ時間 23,703 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,496 KB
testcase_01 AC 24 ms
10,624 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 156 ms
22,796 KB
testcase_04 AC 705 ms
14,232 KB
testcase_05 AC 742 ms
29,428 KB
testcase_06 AC 42 ms
14,156 KB
testcase_07 AC 803 ms
20,280 KB
testcase_08 AC 1,022 ms
23,108 KB
testcase_09 AC 567 ms
14,600 KB
testcase_10 AC 703 ms
25,068 KB
testcase_11 AC 880 ms
27,092 KB
testcase_12 AC 507 ms
28,984 KB
testcase_13 AC 1,124 ms
21,568 KB
testcase_14 AC 735 ms
24,800 KB
testcase_15 AC 797 ms
28,912 KB
testcase_16 AC 981 ms
14,700 KB
testcase_17 AC 1,226 ms
26,752 KB
testcase_18 AC 189 ms
12,544 KB
testcase_19 AC 191 ms
21,788 KB
testcase_20 AC 1,043 ms
20,776 KB
testcase_21 AC 552 ms
12,672 KB
testcase_22 AC 975 ms
25,460 KB
testcase_23 AC 1,213 ms
30,560 KB
testcase_24 AC 1,174 ms
30,564 KB
testcase_25 AC 1,175 ms
30,692 KB
testcase_26 AC 1,218 ms
30,560 KB
testcase_27 AC 1,107 ms
30,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N, Q = map(int, input().split())
    a = list(map(int, input().split()))
    partial_xor = [0]
    for elm in a:

        partial_xor.append(partial_xor[-1] ^ elm)

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


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