結果

問題 No.1072 A Nice XOR Pair
ユーザー GrayCoderGrayCoder
提出日時 2020-06-05 23:36:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 325 bytes
コンパイル時間 347 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 55,632 KB
最終ジャッジ日時 2024-05-10 00:04:35
合計ジャッジ時間 9,027 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 506 ms
48,768 KB
testcase_01 AC 530 ms
43,676 KB
testcase_02 AC 542 ms
43,396 KB
testcase_03 AC 519 ms
43,672 KB
testcase_04 AC 506 ms
43,520 KB
testcase_05 AC 517 ms
43,672 KB
testcase_06 AC 587 ms
43,396 KB
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
from sys import stdin


def main():
    input = lambda: stdin.readline()[:-1]
    N, X = map(int, input().split())
    A = [int(input()) for _ in [0] * N]

    x = np.array(A)
    ans = 0
    for i, a in enumerate(A):
        n = X ^ a
        ans += len(np.where(x[i+1:] == n)[0])
    print(ans)


main()
0