結果

問題 No.1072 A Nice XOR Pair
ユーザー 👑 KazunKazun
提出日時 2020-06-05 21:28:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 260 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 106,724 KB
最終ジャッジ日時 2024-05-09 20:01:14
合計ジャッジ時間 2,512 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 42 ms
51,840 KB
testcase_03 AC 39 ms
52,096 KB
testcase_04 WA -
testcase_05 AC 40 ms
52,352 KB
testcase_06 AC 71 ms
67,200 KB
testcase_07 AC 296 ms
106,724 KB
testcase_08 AC 136 ms
76,288 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 224 ms
90,296 KB
testcase_12 AC 211 ms
106,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,X=map(int,input().split())
A={}
U=set()

for i in range(N):
    a=int(input())
    U.add(a)
    if a in A:
        A[a]+=1
    else:
        A[a]=1

S=0
while U:
    x=U.pop()
    if X^x in U:
        y=X^x
        U.remove(y)
        S+=A[x]*A[y]

print(S)
0