結果

問題 No.1091 Range Xor Query
ユーザー tentententen
提出日時 2022-08-04 14:14:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 534 ms / 2,000 ms
コード長 1,255 bytes
コンパイル時間 2,443 ms
コンパイル使用メモリ 77,420 KB
実行使用メモリ 64,948 KB
最終ジャッジ日時 2024-09-14 10:38:20
合計ジャッジ時間 18,381 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,652 KB
testcase_01 AC 53 ms
36,780 KB
testcase_02 AC 54 ms
36,492 KB
testcase_03 AC 254 ms
45,224 KB
testcase_04 AC 374 ms
48,640 KB
testcase_05 AC 468 ms
51,188 KB
testcase_06 AC 152 ms
41,308 KB
testcase_07 AC 460 ms
49,100 KB
testcase_08 AC 498 ms
50,228 KB
testcase_09 AC 354 ms
47,412 KB
testcase_10 AC 430 ms
50,296 KB
testcase_11 AC 523 ms
51,692 KB
testcase_12 AC 430 ms
50,736 KB
testcase_13 AC 502 ms
52,844 KB
testcase_14 AC 463 ms
50,020 KB
testcase_15 AC 485 ms
51,768 KB
testcase_16 AC 430 ms
47,852 KB
testcase_17 AC 525 ms
51,456 KB
testcase_18 AC 229 ms
46,056 KB
testcase_19 AC 279 ms
45,408 KB
testcase_20 AC 494 ms
50,248 KB
testcase_21 AC 337 ms
48,908 KB
testcase_22 AC 482 ms
50,332 KB
testcase_23 AC 511 ms
52,056 KB
testcase_24 AC 533 ms
54,492 KB
testcase_25 AC 534 ms
53,676 KB
testcase_26 AC 527 ms
54,280 KB
testcase_27 AC 521 ms
64,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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 Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    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 String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0