結果

問題 No.1072 A Nice XOR Pair
ユーザー galileo15640215galileo15640215
提出日時 2020-06-05 21:33:27
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 185 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 84,660 KB
最終ジャッジ日時 2024-05-09 20:12:43
合計ジャッジ時間 4,218 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
57,808 KB
testcase_01 AC 36 ms
52,420 KB
testcase_02 AC 36 ms
52,588 KB
testcase_03 AC 35 ms
52,248 KB
testcase_04 AC 35 ms
52,744 KB
testcase_05 AC 36 ms
52,704 KB
testcase_06 AC 67 ms
68,036 KB
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, x = map(int, input().split())
a = [int(input()) for i in range(n)]
cnt = 0
for i in range(n-1):
    for j in range(i+1, n):
        if a[i]^a[j] == x:
            cnt += 1
print(cnt)
0