結果

問題 No.1072 A Nice XOR Pair
ユーザー d9etd9et
提出日時 2020-06-05 21:27:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 246 ms / 2,000 ms
コード長 191 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 102,992 KB
最終ジャッジ日時 2024-05-09 19:58:26
合計ジャッジ時間 2,434 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
55,240 KB
testcase_01 AC 41 ms
54,684 KB
testcase_02 AC 40 ms
54,452 KB
testcase_03 AC 40 ms
54,900 KB
testcase_04 AC 39 ms
54,800 KB
testcase_05 AC 39 ms
55,472 KB
testcase_06 AC 64 ms
71,832 KB
testcase_07 AC 230 ms
93,848 KB
testcase_08 AC 135 ms
76,544 KB
testcase_09 AC 132 ms
76,744 KB
testcase_10 AC 140 ms
76,772 KB
testcase_11 AC 204 ms
87,928 KB
testcase_12 AC 246 ms
102,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
dc = defaultdict(int)
n,x = map(int,input().split())
ans = 0
for i in range(n):
    a = int(input())
    y = x^a
    ans += dc[y]
    dc[a] += 1
print(ans)
0