PivotOJ

Do You Know Your ABCs?

시간 제한: 1000ms메모리 제한: 512MB출처: USACO 2021 Open SilverBOJ 21818

문제

Farmer John's cows have been holding a daily online gathering on the "mooZ" video meeting platform. For fun, they have invented a simple number game to play during the meeting to keep themselves entertained.

Elsie has three positive integers AA, BB, and CC (1ABC1\le A\le B\le C). These integers are supposed to be secret, so she will not directly reveal them to her sister Bessie. Instead, she tells Bessie NN (4N74\le N\le 7) distinct integers x1,x2,,xNx_1,x_2,\ldots,x_N (1xi1091\le x_i\le 10^9), claiming that each xix_i is one of AA, BB, CC, A+BA+B, B+CB+C, C+AC+A, or A+B+CA+B+C. However, Elsie may be lying; the integers xix_i might not correspond to any valid triple (A,B,C)(A,B,C).

This is too hard for Bessie to wrap her head around, so it is up to you to determine the number of triples (A,B,C)(A,B,C) that are consistent with the numbers Elsie presented (possibly zero).

Each input file will contain TT (1T1001\le T\le 100) test cases that should be solved independently.

입력

The first input line contains TT.

Each test case starts with NN, the number of integers Elsie gives to Bessie.

The second line of each test case contains NN distinct integers x1,x2,,xNx_1,x_2,\ldots,x_N.

출력

For each test case, output the number of triples (A,B,C)(A,B,C) that are consistent with the numbers Elsie presented.

힌트

For x={4,5,7,9}x=\{4,5,7,9\}, the five possible triples are as follows: (2,2,5),(2,3,4),(2,4,5),(3,4,5),(4,5,7).(2, 2, 5), (2, 3, 4), (2, 4, 5), (3, 4, 5), (4, 5, 7).

예제

예제 1

입력
10
7
1 2 3 4 5 6 7
4
4 5 7 8
4
4 5 7 9
4
4 5 7 10
4
4 5 7 11
4
4 5 7 12
4
4 5 7 13
4
4 5 7 14
4
4 5 7 15
4
4 5 7 16
출력
1
3
5
1
4
3
0
0
0
1
코드를 제출하려면 로그인하세요.