結果
問題 | No.1072 A Nice XOR Pair |
ユーザー | umashi-pan-tnokk093n |
提出日時 | 2020-06-06 12:50:13 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 282 bytes |
コンパイル時間 | 204 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 43,640 KB |
最終ジャッジ日時 | 2024-06-06 01:35:44 |
合計ジャッジ時間 | 4,597 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
10,624 KB |
testcase_01 | AC | 27 ms
10,752 KB |
testcase_02 | AC | 27 ms
10,752 KB |
testcase_03 | AC | 27 ms
10,624 KB |
testcase_04 | WA | - |
testcase_05 | AC | 30 ms
10,752 KB |
testcase_06 | AC | 33 ms
10,880 KB |
testcase_07 | AC | 712 ms
43,604 KB |
testcase_08 | AC | 523 ms
18,560 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 613 ms
27,740 KB |
testcase_12 | AC | 631 ms
43,640 KB |
ソースコード
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 for i in c: m=x^i if m in b: ans+=b[m]*b[i] print(ans//2)