#abc175b. [abc175_b]Making Triangle

[abc175_b]Making Triangle

Problem Statement

We have sticks numbered 1,cdots,N1, \\cdots, N. The length of Stick ii (1leqileqN)(1 \\leq i \\leq N) is LiL_i.

In how many ways can we choose three of the sticks with different lengths that can form a triangle?

That is, find the number of triples of integers (i,j,k)(i, j, k) (1leqi<j<kleqN)(1 \\leq i < j < k \\leq N) that satisfy both of the following conditions:

  • LiL_i, LjL_j, and LkL_k are all different.
  • There exists a triangle whose sides have lengths LiL_i, LjL_j, and LkL_k.

Constraints

  • 1leqNleq1001 \\leq N \\leq 100
  • 1leqLileq1091 \\leq L_i \\leq 10^9
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

NN L1L_1 L2L_2 cdots\\cdots LNL_N

Output

Print the number of ways to choose three of the sticks with different lengths that can form a triangle.


Sample Input 1

5
4 4 9 7 5

Sample Output 1

5

The following five triples (i,j,k)(i, j, k) satisfy the conditions: (1,3,4)(1, 3, 4), (1,4,5)(1, 4, 5), (2,3,4)(2, 3, 4), (2,4,5)(2, 4, 5), and (3,4,5)(3, 4, 5).


Sample Input 2

6
4 5 4 3 3 5

Sample Output 2

8

We have two sticks for each of the lengths 33, 44, and 55. To satisfy the first condition, we have to choose one from each length.

There is a triangle whose sides have lengths 33, 44, and 55, so we have 23=82 ^ 3 = 8 triples (i,j,k)(i, j, k) that satisfy the conditions.


Sample Input 3

10
9 4 6 1 9 6 10 6 6 8

Sample Output 3

39

Sample Input 4

2
1 1

Sample Output 4

0

No triple (i,j,k)(i, j, k) satisfies 1leqi<j<kleqN1 \\leq i < j < k \\leq N, so we should print 00.