#P1462E1. Close Tuples (easy version)
Close Tuples (easy version)
No submission language available for this problem.
Description
This is the easy version of this problem. The only difference between easy and hard versions is the constraints on and (in this version and ). Also, in this version of the problem, you DON'T NEED to output the answer by modulo.
You are given a sequence of length consisting of integers from to . The sequence may contain duplicates (i.e. some elements can be equal).
Find the number of tuples of elements such that the maximum number in the tuple differs from the minimum by no more than . Formally, you need to find the number of triples of indices such that
For example, if and , then there are two such triples ( and ). If and , then all four possible triples are suitable.
The first line contains a single integer () — the number of test cases. Then test cases follow.
The first line of each test case contains an integer () — the length of the sequence .
The next line contains integers () — the sequence .
It is guaranteed that the sum of for all test cases does not exceed .
Output answers to the given test cases. Each answer is the required number of triples of elements, such that the maximum value in the triple differs from the minimum by no more than . Note that in difference to the hard version of the problem, you don't need to output the answer by modulo. You must output the exact value of the answer.
Input
The first line contains a single integer () — the number of test cases. Then test cases follow.
The first line of each test case contains an integer () — the length of the sequence .
The next line contains integers () — the sequence .
It is guaranteed that the sum of for all test cases does not exceed .
Output
Output answers to the given test cases. Each answer is the required number of triples of elements, such that the maximum value in the triple differs from the minimum by no more than . Note that in difference to the hard version of the problem, you don't need to output the answer by modulo. You must output the exact value of the answer.