結果
問題 | No.1072 A Nice XOR Pair |
ユーザー | umashi-pan-tnokk093n |
提出日時 | 2020-06-06 12:50:13 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 282 bytes |
コンパイル時間 | 414 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 43,636 KB |
最終ジャッジ日時 | 2024-12-23 12:12:29 |
合計ジャッジ時間 | 4,781 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
10,624 KB |
testcase_01 | AC | 26 ms
10,496 KB |
testcase_02 | AC | 27 ms
10,624 KB |
testcase_03 | AC | 26 ms
10,496 KB |
testcase_04 | WA | - |
testcase_05 | AC | 28 ms
10,496 KB |
testcase_06 | AC | 32 ms
10,880 KB |
testcase_07 | AC | 671 ms
43,600 KB |
testcase_08 | AC | 539 ms
18,560 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 576 ms
27,612 KB |
testcase_12 | AC | 621 ms
43,636 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)