結果

問題 No.1072 A Nice XOR Pair
ユーザー tentententen
提出日時 2024-02-06 10:10:01
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,478 bytes
コンパイル時間 2,556 ms
コンパイル使用メモリ 80,844 KB
実行使用メモリ 73,044 KB
最終ジャッジ日時 2024-02-06 10:10:08
合計ジャッジ時間 7,333 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
54,764 KB
testcase_01 AC 68 ms
54,816 KB
testcase_02 AC 69 ms
54,760 KB
testcase_03 AC 69 ms
54,776 KB
testcase_04 AC 68 ms
54,668 KB
testcase_05 AC 69 ms
54,884 KB
testcase_06 AC 103 ms
55,776 KB
testcase_07 AC 541 ms
73,044 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 334 ms
61,820 KB
testcase_11 AC 440 ms
66,544 KB
testcase_12 AC 509 ms
69,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
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();
        Map<Integer, Integer> counts = new HashMap<>();
        long ans = IntStream.range(0, n).map(i -> {
            int x = sc.nextInt();
            int result = counts.getOrDefault(x ^ target, 0);
            counts.put(x, counts.getOrDefault(x, 0) + 1);
            return result;
        }).sum();
        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