結果

問題 No.1091 Range Xor Query
ユーザー tentententen
提出日時 2023-02-16 15:04:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 530 ms / 2,000 ms
コード長 1,815 bytes
コンパイル時間 2,689 ms
コンパイル使用メモリ 92,320 KB
実行使用メモリ 65,568 KB
最終ジャッジ日時 2024-07-18 15:35:45
合計ジャッジ時間 18,225 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
37,032 KB
testcase_01 AC 52 ms
36,848 KB
testcase_02 AC 52 ms
37,072 KB
testcase_03 AC 257 ms
45,844 KB
testcase_04 AC 377 ms
49,016 KB
testcase_05 AC 455 ms
51,176 KB
testcase_06 AC 155 ms
41,384 KB
testcase_07 AC 457 ms
50,356 KB
testcase_08 AC 464 ms
50,712 KB
testcase_09 AC 343 ms
47,600 KB
testcase_10 AC 434 ms
50,456 KB
testcase_11 AC 499 ms
52,016 KB
testcase_12 AC 403 ms
51,088 KB
testcase_13 AC 484 ms
53,216 KB
testcase_14 AC 455 ms
50,376 KB
testcase_15 AC 476 ms
52,288 KB
testcase_16 AC 412 ms
49,004 KB
testcase_17 AC 530 ms
52,368 KB
testcase_18 AC 225 ms
44,128 KB
testcase_19 AC 271 ms
47,156 KB
testcase_20 AC 469 ms
50,412 KB
testcase_21 AC 335 ms
49,344 KB
testcase_22 AC 491 ms
50,500 KB
testcase_23 AC 498 ms
52,644 KB
testcase_24 AC 520 ms
54,268 KB
testcase_25 AC 514 ms
54,600 KB
testcase_26 AC 515 ms
54,724 KB
testcase_27 AC 525 ms
65,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int q = sc.nextInt();
        int[] values = new int[n + 1];
        for (int i = 1; i <= n; i++) {
            values[i] = values[i - 1] ^ sc.nextInt();
        }
        StringBuilder sb = new StringBuilder();
        while (q-- > 0) {
            sb.append(values[sc.nextInt() - 1] ^ values[sc.nextInt()]).append("\n");
        }
        System.out.print(sb);
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0