CF1743A.Password
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Monocarp has forgotten the password to his mobile phone. The password consists of 4 digits from 0 to 9 (note that it can start with the digit 0 ).
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 4 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 t ( 1≤t≤200 ) — the number of testcases.
The first line of each testcase contains a single integer n ( 1≤n≤8 ) — the number of digits for which Monocarp remembers that they were not used in the password.
The second line contains n different integers a1,a2,…an ( 0≤ai≤9 ) representing the digits that were not used in the password. Note that the digits a1,a2,…,an are given in ascending order.
输出格式
For each testcase, print one integer — the number of different 4 -digit sequences that meet the constraints.
输入输出样例
输入#1
2 8 0 1 2 4 5 6 8 9 1 8
输出#1
6 216
说明/提示
In the first example, all possible passwords are: "3377", "3737", "3773", "7337", "7373", "7733".