結果
問題 | No.1072 A Nice XOR Pair |
ユーザー | tenten |
提出日時 | 2024-02-06 10:10:01 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,478 bytes |
コンパイル時間 | 2,123 ms |
コンパイル使用メモリ | 80,236 KB |
実行使用メモリ | 69,528 KB |
最終ジャッジ日時 | 2024-09-28 11:56:46 |
合計ジャッジ時間 | 6,044 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 63 ms
51,044 KB |
testcase_01 | AC | 66 ms
51,168 KB |
testcase_02 | AC | 63 ms
50,832 KB |
testcase_03 | AC | 66 ms
50,832 KB |
testcase_04 | AC | 63 ms
50,908 KB |
testcase_05 | AC | 66 ms
51,144 KB |
testcase_06 | AC | 94 ms
51,712 KB |
testcase_07 | AC | 488 ms
69,528 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 313 ms
57,948 KB |
testcase_11 | AC | 357 ms
62,324 KB |
testcase_12 | AC | 416 ms
66,260 KB |
ソースコード
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(); } } }