A permutation is a sequence of integers from 1 to N of length N containing each number exactly once. For example (1),(4, 3, 5, 1, 2),(3, 2, 1) are permutations, and (1, 1),(4, 3, 1),(2, 3, 4) are not.
An array B is called good if it can be converted to a permutation by applying the following operation any number of times (possibly zero):
For example, the arrays [1,3,5],[1,3,3],[2,2] are good arrays while the arrays [1,2,2],[2,4,1,1] are not good.
You are given an array A containing N integers. Find the number of good subarrays of A.
Input format
Output format
For each test case, print the answer in a separate line.
Constraints
1≤T≤1041≤N≤3⋅1051≤Ai≤NSum of N over all test cases does not exceed to 3⋅105
In the first test case, the good subarrays are : A[1…1]=[1],A[2…2]=[1],A[2…3]=[1,2],A[3…3]=[2].
In the second test case, there are 15 subarrays of A=[2,2,3,2,1]. All subarrays except A[1…4]=[2,2,3,2],A[1…5]=[2,2,3,2,1],A[2…5]=[2,3,2,1] are good.