結果

問題 No.1072 A Nice XOR Pair
ユーザー ks2mks2m
提出日時 2020-06-05 21:53:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 974 ms / 2,000 ms
コード長 658 bytes
コンパイル時間 2,248 ms
コンパイル使用メモリ 76,012 KB
実行使用メモリ 77,224 KB
最終ジャッジ日時 2024-12-17 14:26:09
合計ジャッジ時間 9,745 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
54,160 KB
testcase_01 AC 123 ms
54,100 KB
testcase_02 AC 119 ms
54,176 KB
testcase_03 AC 107 ms
53,184 KB
testcase_04 AC 108 ms
53,040 KB
testcase_05 AC 106 ms
52,912 KB
testcase_06 AC 189 ms
56,924 KB
testcase_07 AC 957 ms
76,236 KB
testcase_08 AC 851 ms
68,876 KB
testcase_09 AC 850 ms
69,584 KB
testcase_10 AC 974 ms
68,276 KB
testcase_11 AC 880 ms
73,660 KB
testcase_12 AC 824 ms
77,224 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