結果

問題 No.1072 A Nice XOR Pair
ユーザー NagisaNagisa
提出日時 2020-06-06 11:07:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 323 ms / 2,000 ms
コード長 456 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 33,904 KB
最終ジャッジ日時 2024-06-02 12:25:42
合計ジャッジ時間 2,167 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,496 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 26 ms
10,496 KB
testcase_04 AC 26 ms
10,624 KB
testcase_05 AC 26 ms
10,624 KB
testcase_06 AC 27 ms
10,624 KB
testcase_07 AC 323 ms
33,856 KB
testcase_08 AC 144 ms
18,560 KB
testcase_09 AC 142 ms
18,304 KB
testcase_10 AC 151 ms
18,560 KB
testcase_11 AC 196 ms
22,576 KB
testcase_12 AC 205 ms
33,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import Counter
def input():
    return sys.stdin.readline()[:-1]
def main():
    N, X = map(int,input().split())
    A = [int(input()) for _ in range(N)]
    C = Counter(A)
    ans = 0
    if X != 0:
        for e in C:
            if e^X in C:
                ans += C[e]*C[e^X]
                C[e^X] = 0
    else:
        for e in C:
            ans += (C[e]*(C[e]-1))//2
    print(ans)
if __name__ == '__main__':
    main()
0