codeforces#P1743A. Password

Password

Description

Monocarp has forgotten the password to his mobile phone. The password consists of 44 digits from 00 to 99 (note that it can start with the digit 00).

Monocarp remembers that his password had exactly two different digits, and each of these digits appeared exactly two times in the password. Monocarp also remembers some digits which were definitely not used in the password.

You have to calculate the number of different sequences of 44 digits that could be the password for Monocarp's mobile phone (i. e. these sequences should meet all constraints on Monocarp's password).

The first line contains a single integer tt (1t2001 \le t \le 200) — the number of testcases.

The first line of each testcase contains a single integer nn (1n81 \le n \le 8) — the number of digits for which Monocarp remembers that they were not used in the password.

The second line contains nn different integers a1,a2,ana_1, a_2, \dots a_n (0ai90 \le a_i \le 9) representing the digits that were not used in the password. Note that the digits a1,a2,,ana_1, a_2, \dots, a_n are given in ascending order.

For each testcase, print one integer — the number of different 44-digit sequences that meet the constraints.

Input

The first line contains a single integer tt (1t2001 \le t \le 200) — the number of testcases.

The first line of each testcase contains a single integer nn (1n81 \le n \le 8) — the number of digits for which Monocarp remembers that they were not used in the password.

The second line contains nn different integers a1,a2,ana_1, a_2, \dots a_n (0ai90 \le a_i \le 9) representing the digits that were not used in the password. Note that the digits a1,a2,,ana_1, a_2, \dots, a_n are given in ascending order.

Output

For each testcase, print one integer — the number of different 44-digit sequences that meet the constraints.

输入数据 1

2
8
0 1 2 4 5 6 8 9
1
8

输出数据 1

6
216

Note

In the first example, all possible passwords are: "3377", "3737", "3773", "7337", "7373", "7733".