結果

問題 No.1072 A Nice XOR Pair
ユーザー umashi-pan-tnokk093numashi-pan-tnokk093n
提出日時 2020-06-06 12:39:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 251 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 27,092 KB
最終ジャッジ日時 2024-06-06 01:34:37
合計ジャッジ時間 4,339 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
16,128 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 134 ms
10,624 KB
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,x=map(int,input().split())
a=[]
for i in range(n):
    num=int(input())
    a.append(num)

a.sort()
ans=0
for i in range(n):
    m=x^a[i]
    if m not in a[i+1:]:
        continue
    for j in a[i+1:]:
        if m==j:
            ans+=1
print(ans)
0