結果
問題 | No.1072 A Nice XOR Pair |
ユーザー | c-yan |
提出日時 | 2020-06-05 22:04:03 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 329 bytes |
コンパイル時間 | 101 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 36,104 KB |
最終ジャッジ日時 | 2024-05-09 21:16:01 |
合計ジャッジ時間 | 3,992 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | AC | 29 ms
10,752 KB |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | AC | 461 ms
24,960 KB |
testcase_10 | AC | 472 ms
25,088 KB |
testcase_11 | RE | - |
testcase_12 | RE | - |
ソースコード
N, X = map(int, input().split()) A = [input() for _ in range(N)] d = {} for a in A: d.setdefault(a, 0) d[a] += 1 result = 0 if X == 0: for v in d.values(): result += v * (v - 1) // 2 print(result) else: for k in d: if k ^ X in d: result += d[k] * d[k ^ X] print(result // 2)