結果

問題 No.1072 A Nice XOR Pair
ユーザー yuly3yuly3
提出日時 2020-06-26 10:55:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 425 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 82,068 KB
実行使用メモリ 155,136 KB
最終ジャッジ日時 2024-07-03 22:11:41
合計ジャッジ時間 2,305 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,016 KB
testcase_01 AC 41 ms
54,016 KB
testcase_02 AC 41 ms
53,504 KB
testcase_03 AC 43 ms
54,016 KB
testcase_04 WA -
testcase_05 AC 46 ms
53,632 KB
testcase_06 AC 58 ms
63,232 KB
testcase_07 AC 248 ms
142,080 KB
testcase_08 AC 110 ms
77,696 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 182 ms
109,080 KB
testcase_12 AC 231 ms
155,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import Counter, defaultdict

sys.setrecursionlimit(10 ** 7)
rl = sys.stdin.readline


def solve():
    N, X = map(int, rl().split())
    A = [int(rl()) for _ in range(N)]
    
    counter = Counter(A)
    used = defaultdict(int)
    ans = 0
    for ai in A:
        tgt = X ^ ai
        ans += counter[tgt] - used[tgt]
        used[ai] += 1
    print(ans)


if __name__ == '__main__':
    solve()
0