結果

問題 No.1072 A Nice XOR Pair
ユーザー tentententen
提出日時 2024-07-25 14:29:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 475 ms / 2,000 ms
コード長 1,446 bytes
コンパイル時間 3,367 ms
コンパイル使用メモリ 79,204 KB
実行使用メモリ 70,196 KB
最終ジャッジ日時 2024-07-25 14:29:44
合計ジャッジ時間 7,329 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
50,384 KB
testcase_01 AC 50 ms
50,252 KB
testcase_02 AC 50 ms
50,260 KB
testcase_03 AC 50 ms
50,416 KB
testcase_04 AC 49 ms
50,252 KB
testcase_05 AC 50 ms
50,384 KB
testcase_06 AC 82 ms
51,540 KB
testcase_07 AC 475 ms
70,196 KB
testcase_08 AC 321 ms
57,664 KB
testcase_09 AC 295 ms
57,572 KB
testcase_10 AC 295 ms
57,712 KB
testcase_11 AC 349 ms
62,240 KB
testcase_12 AC 441 ms
65,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static int MOD;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int x = sc.nextInt();
        Map<Integer, Integer> counts = new HashMap<>();
        long ans = 0;
        while (n-- > 0) {
            int a = sc.nextInt();
            ans += counts.getOrDefault(a ^ x, 0);
            counts.put(a, counts.getOrDefault(a, 0) + 1);
        }
        System.out.println(ans);
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0