結果

問題 No.1091 Range Xor Query
ユーザー tentententen
提出日時 2020-08-18 15:19:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,386 ms / 2,000 ms
コード長 581 bytes
コンパイル時間 2,249 ms
コンパイル使用メモリ 74,228 KB
実行使用メモリ 63,668 KB
最終ジャッジ日時 2024-10-12 02:47:37
合計ジャッジ時間 34,604 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
40,296 KB
testcase_01 AC 133 ms
41,188 KB
testcase_02 AC 132 ms
41,104 KB
testcase_03 AC 728 ms
49,616 KB
testcase_04 AC 959 ms
59,996 KB
testcase_05 AC 1,128 ms
60,884 KB
testcase_06 AC 415 ms
47,876 KB
testcase_07 AC 1,109 ms
60,200 KB
testcase_08 AC 1,213 ms
59,776 KB
testcase_09 AC 865 ms
57,052 KB
testcase_10 AC 1,095 ms
60,192 KB
testcase_11 AC 1,150 ms
60,508 KB
testcase_12 AC 1,051 ms
59,604 KB
testcase_13 AC 1,253 ms
62,908 KB
testcase_14 AC 1,212 ms
60,608 KB
testcase_15 AC 1,179 ms
60,732 KB
testcase_16 AC 1,100 ms
60,000 KB
testcase_17 AC 1,253 ms
60,696 KB
testcase_18 AC 594 ms
48,272 KB
testcase_19 AC 730 ms
51,464 KB
testcase_20 AC 1,147 ms
60,280 KB
testcase_21 AC 826 ms
54,780 KB
testcase_22 AC 1,242 ms
60,048 KB
testcase_23 AC 1,362 ms
61,148 KB
testcase_24 AC 1,347 ms
63,668 KB
testcase_25 AC 1,370 ms
63,384 KB
testcase_26 AC 1,346 ms
63,584 KB
testcase_27 AC 1,386 ms
63,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int q = sc.nextInt();
        int[] xors = new int[n + 1];
        for (int i = 1; i <= n; i++) {
            xors[i] = xors[i - 1] ^ sc.nextInt();
        }
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < q; i++) {
            sb.append(xors[sc.nextInt() - 1] ^ xors[sc.nextInt()]).append("\n");
        }
        System.out.print(sb);
    }
} 
0