結果

問題 No.1072 A Nice XOR Pair
ユーザー tentententen
提出日時 2023-02-16 14:57:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 451 ms / 2,000 ms
コード長 2,107 bytes
コンパイル時間 2,057 ms
コンパイル使用メモリ 87,796 KB
実行使用メモリ 62,432 KB
最終ジャッジ日時 2024-07-18 15:30:48
合計ジャッジ時間 5,474 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
37,084 KB
testcase_01 AC 45 ms
36,980 KB
testcase_02 AC 48 ms
37,240 KB
testcase_03 AC 47 ms
36,856 KB
testcase_04 AC 46 ms
37,232 KB
testcase_05 AC 46 ms
36,984 KB
testcase_06 AC 89 ms
38,684 KB
testcase_07 AC 451 ms
62,432 KB
testcase_08 AC 280 ms
45,928 KB
testcase_09 AC 271 ms
45,720 KB
testcase_10 AC 270 ms
46,004 KB
testcase_11 AC 299 ms
51,320 KB
testcase_12 AC 382 ms
56,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int target = sc.nextInt();
        HashMap<Integer, Long> counts = new HashMap<>();
        for (int i = 0; i < n; i++) {
            int x = sc.nextInt();
            counts.put(x, counts.getOrDefault(x, 0L) + 1);
        }
        long ans = 0;
        if (target == 0) {
            for (long x : counts.values()) {
                ans += x * (x - 1) / 2;
            }
        } else {
            for (int x : counts.keySet()) {
                if (x > (target ^ x)) {
                    continue;
                }
                ans += counts.get(x) * counts.getOrDefault(target ^ x, 0L);
            }
        }
        System.out.println(ans);
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0