結果

問題 No.1072 A Nice XOR Pair
ユーザー umashi-pan-tnokk093numashi-pan-tnokk093n
提出日時 2020-06-06 13:01:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,733 ms / 2,000 ms
コード長 519 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 43,916 KB
最終ジャッジ日時 2024-06-06 01:37:37
合計ジャッジ時間 6,133 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 37 ms
11,008 KB
testcase_07 AC 765 ms
43,916 KB
testcase_08 AC 565 ms
18,560 KB
testcase_09 AC 1,733 ms
21,560 KB
testcase_10 AC 577 ms
18,816 KB
testcase_11 AC 663 ms
28,012 KB
testcase_12 AC 695 ms
43,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
n,x=map(int,input().split())
a=[]
b=dict()
for i in range(n):
    num=int(input())
    a.append(num)
    if num not in b:
        b[num]=1
    else:
        b[num]+=1

c=list(set(a))
#print(b)
#print(c)
ans=0
if x==0:
    def combinations_count(n, r):
        return math.factorial(n) // (math.factorial(n - r) * math.factorial(r))

    for i in b.values():
        ans+=combinations_count(i,2)
    
else:
    for i in c:
        m=x^i
        if m in b:
            ans+=b[m]*b[i]
    ans=ans//2
print(ans)
0