結果

問題 No.1091 Range Xor Query
ユーザー TententenTententen
提出日時 2020-12-14 13:54:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,255 ms / 2,000 ms
コード長 508 bytes
コンパイル時間 2,310 ms
コンパイル使用メモリ 74,196 KB
実行使用メモリ 63,836 KB
最終ジャッジ日時 2024-09-20 00:42:15
合計ジャッジ時間 30,021 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,208 KB
testcase_01 AC 116 ms
41,112 KB
testcase_02 AC 107 ms
39,912 KB
testcase_03 AC 668 ms
49,712 KB
testcase_04 AC 769 ms
59,904 KB
testcase_05 AC 1,061 ms
61,088 KB
testcase_06 AC 379 ms
47,948 KB
testcase_07 AC 972 ms
60,332 KB
testcase_08 AC 1,079 ms
60,796 KB
testcase_09 AC 737 ms
54,936 KB
testcase_10 AC 1,013 ms
60,832 KB
testcase_11 AC 1,059 ms
60,780 KB
testcase_12 AC 967 ms
59,732 KB
testcase_13 AC 1,103 ms
62,876 KB
testcase_14 AC 1,001 ms
60,648 KB
testcase_15 AC 1,037 ms
60,948 KB
testcase_16 AC 952 ms
60,496 KB
testcase_17 AC 1,087 ms
60,664 KB
testcase_18 AC 551 ms
48,612 KB
testcase_19 AC 647 ms
50,756 KB
testcase_20 AC 1,097 ms
60,688 KB
testcase_21 AC 787 ms
54,628 KB
testcase_22 AC 1,036 ms
60,716 KB
testcase_23 AC 1,162 ms
61,232 KB
testcase_24 AC 1,222 ms
63,504 KB
testcase_25 AC 1,100 ms
62,520 KB
testcase_26 AC 1,130 ms
63,280 KB
testcase_27 AC 1,255 ms
63,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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