結果

問題 No.1072 A Nice XOR Pair
ユーザー htensaihtensai
提出日時 2020-06-10 08:44:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,137 ms / 2,000 ms
コード長 844 bytes
コンパイル時間 2,491 ms
コンパイル使用メモリ 85,676 KB
実行使用メモリ 84,640 KB
最終ジャッジ日時 2024-06-13 01:19:13
合計ジャッジ時間 11,185 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
53,176 KB
testcase_01 AC 118 ms
53,852 KB
testcase_02 AC 121 ms
53,980 KB
testcase_03 AC 120 ms
52,896 KB
testcase_04 AC 111 ms
53,180 KB
testcase_05 AC 112 ms
53,476 KB
testcase_06 AC 195 ms
56,676 KB
testcase_07 AC 1,137 ms
84,640 KB
testcase_08 AC 780 ms
68,880 KB
testcase_09 AC 764 ms
67,724 KB
testcase_10 AC 809 ms
68,052 KB
testcase_11 AC 843 ms
71,972 KB
testcase_12 AC 1,023 ms
80,536 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();
		HashMap<Integer, Integer> map = new HashMap<>();
		for (int i = 0; i < n; i++) {
		    int y = sc.nextInt();
		    if (map.containsKey(y)) {
		        map.put(y, map.get(y) + 1);
		    } else {
		        map.put(y, 1);
		    }
		}
		long total = 0;
		if (x == 0) {
		    for (int y : map.values()) {
		        total += (long)(y - 1) * y / 2;
		    }
		} else {
		    for (Map.Entry<Integer, Integer> entry : map.entrySet()) {
		        int key = entry.getKey() ^ x;
		        int value = entry.getValue();
		        if (map.containsKey(key)) {
		            total += (long)value * map.get(key);
		        }
		    }
		    total /= 2;
		}
		System.out.println(total);
	}
}
0