結果

問題 No.1072 A Nice XOR Pair
ユーザー umashi-pan-tnokk093numashi-pan-tnokk093n
提出日時 2020-06-05 21:58:17
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 198 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 92,248 KB
最終ジャッジ日時 2024-05-09 21:04:50
合計ジャッジ時間 4,129 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
59,148 KB
testcase_01 AC 31 ms
52,384 KB
testcase_02 AC 30 ms
53,648 KB
testcase_03 AC 31 ms
52,672 KB
testcase_04 AC 30 ms
53,364 KB
testcase_05 AC 30 ms
52,768 KB
testcase_06 AC 116 ms
76,052 KB
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
n,x=map(int,input().split())
a=[]
for i in range(n):
    num=int(input())
    a.append(num)
ans=0
for l,r in itertools.combinations(a,2):
    if(x==(l^r)):
        ans+=1
print(ans)
0