結果

問題 No.1072 A Nice XOR Pair
ユーザー ks2mks2m
提出日時 2020-06-05 21:53:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,045 ms / 2,000 ms
コード長 658 bytes
コンパイル時間 2,264 ms
コンパイル使用メモリ 75,492 KB
実行使用メモリ 67,936 KB
最終ジャッジ日時 2024-05-09 20:56:02
合計ジャッジ時間 9,958 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,388 KB
testcase_01 AC 130 ms
41,412 KB
testcase_02 AC 134 ms
41,404 KB
testcase_03 AC 134 ms
41,716 KB
testcase_04 AC 128 ms
41,200 KB
testcase_05 AC 129 ms
41,620 KB
testcase_06 AC 207 ms
43,716 KB
testcase_07 AC 1,045 ms
67,632 KB
testcase_08 AC 961 ms
57,768 KB
testcase_09 AC 887 ms
59,000 KB
testcase_10 AC 972 ms
58,572 KB
testcase_11 AC 974 ms
63,176 KB
testcase_12 AC 998 ms
67,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int x = sc.nextInt();
		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = sc.nextInt();
		}
		sc.close();

		long ans = 0;
		Map<Integer, Integer> map = new HashMap<>();
		for (int i = 0; i < n; i++) {
			int b = x ^ a[i];
			if (map.containsKey(b)) {
				ans += map.get(b);
			}
			if (map.containsKey(a[i])) {
				map.put(a[i], map.get(a[i]) + 1);
			} else {
				map.put(a[i], 1);
			}
		}
		System.out.println(ans);
	}
}
0