結果

問題 No.1072 A Nice XOR Pair
コンテスト
ユーザー cologne
提出日時 2025-12-18 16:06:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 222 ms / 2,000 ms
コード長 659 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 404 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 102,356 KB
最終ジャッジ日時 2025-12-18 16:06:53
合計ジャッジ時間 3,322 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 11
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

import sys
from collections import defaultdict
from typing import Generator, List, Tuple


def input(): return sys.stdin.readline().rstrip('\n')


def main():
    n, x = map(int, input().split())
    s = defaultdict(int)
    ans = 0
    for _ in range(n):
        a = int(input())
        ans += s[a ^ x]
        s[a] += 1
    return ans


if __name__ == '__main__':
    ret = main()


    def out(x):
        if isinstance(x, List) or isinstance(x, Tuple):
            print(*x)
        else:
            print(x)


    if ret is None:
        pass
    elif isinstance(ret, Generator):
        for val in ret:
            out(val)
    else:
        out(ret)
0