#P1419C. Killjoy

    ID: 5582 Type: RemoteJudge 1000ms 256MiB Tried: 0 Accepted: 0 Difficulty: (None) Uploaded By: Tags>greedyimplementationmath*1500

Killjoy

No submission language available for this problem.

Description

A new agent called Killjoy invented a virus COVID-2069 that infects accounts on Codeforces. Each account has a rating, described by an integer (it can possibly be negative or very large).

Killjoy's account is already infected and has a rating equal to xx. Its rating is constant. There are nn accounts except hers, numbered from 11 to nn. The ii-th account's initial rating is aia_i. Any infected account (initially the only infected account is Killjoy's) instantly infects any uninfected account if their ratings are equal. This can happen at the beginning (before any rating changes) and after each contest. If an account is infected, it can not be healed.

Contests are regularly held on Codeforces. In each contest, any of these nn accounts (including infected ones) can participate. Killjoy can't participate. After each contest ratings are changed this way: each participant's rating is changed by an integer, but the sum of all changes must be equal to zero. New ratings can be any integer.

Find out the minimal number of contests needed to infect all accounts. You can choose which accounts will participate in each contest and how the ratings will change.

It can be proven that all accounts can be infected in some finite number of contests.

The first line contains a single integer tt (1t100)(1 \le t \le 100) — the number of test cases. The next 2t2t lines contain the descriptions of all test cases.

The first line of each test case contains two integers nn and xx (2n1032 \le n \le 10^3, 4000x4000-4000 \le x \le 4000) — the number of accounts on Codeforces and the rating of Killjoy's account.

The second line of each test case contains nn integers a1,a2,,ana_1, a_2, \dots, a_n (4000ai4000)(-4000 \le a_i \le 4000) — the ratings of other accounts.

For each test case output the minimal number of contests needed to infect all accounts.

Input

The first line contains a single integer tt (1t100)(1 \le t \le 100) — the number of test cases. The next 2t2t lines contain the descriptions of all test cases.

The first line of each test case contains two integers nn and xx (2n1032 \le n \le 10^3, 4000x4000-4000 \le x \le 4000) — the number of accounts on Codeforces and the rating of Killjoy's account.

The second line of each test case contains nn integers a1,a2,,ana_1, a_2, \dots, a_n (4000ai4000)(-4000 \le a_i \le 4000) — the ratings of other accounts.

Output

For each test case output the minimal number of contests needed to infect all accounts.

Samples

Sample Input 1

3
2 69
68 70
6 4
4 4 4 4 4 4
9 38
-21 83 50 -59 -77 15 -71 -78 20

Sample Output 1

1
0
2

Note

In the first test case it's possible to make all ratings equal to 6969. First account's rating will increase by 11, and second account's rating will decrease by 11, so the sum of all changes will be equal to zero.

In the second test case all accounts will be instantly infected, because all ratings (including Killjoy's account's rating) are equal to 44.