結果

問題 No.1072 A Nice XOR Pair
ユーザー tentententen
提出日時 2020-08-20 06:40:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,032 ms / 2,000 ms
コード長 633 bytes
コンパイル時間 2,821 ms
コンパイル使用メモリ 74,968 KB
実行使用メモリ 68,544 KB
最終ジャッジ日時 2024-10-12 21:41:23
合計ジャッジ時間 9,977 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
40,004 KB
testcase_01 AC 114 ms
40,124 KB
testcase_02 AC 117 ms
40,136 KB
testcase_03 AC 124 ms
41,404 KB
testcase_04 AC 119 ms
41,180 KB
testcase_05 AC 119 ms
40,680 KB
testcase_06 AC 204 ms
43,488 KB
testcase_07 AC 1,032 ms
68,544 KB
testcase_08 AC 897 ms
58,268 KB
testcase_09 AC 853 ms
58,780 KB
testcase_10 AC 930 ms
57,712 KB
testcase_11 AC 855 ms
63,000 KB
testcase_12 AC 958 ms
66,940 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 x = sc.nextInt();
		int[] arr = new int[n];
		for (int i = 0; i < n; i++) {
		    arr[i] = sc.nextInt();
		}
		long total = 0;
		HashMap<Integer, Integer> map = new HashMap<>();
		for (int i = n - 1; i >= 0; i--) {
		    if (map.containsKey(arr[i] ^ x)) {
		        total += map.get(arr[i] ^ x);
		    }
		    if (map.containsKey(arr[i])) {
		        map.put(arr[i], map.get(arr[i]) + 1);
		    } else {
		        map.put(arr[i], 1);
		    }
		}
		System.out.println(total);
	}
}
0