NOTATRI - Not a Triangle

You have N (3 ≤ N ≤ 2,000) wooden sticks, which are labeled from 1 to N. The i-th stick has a length of Li (1 ≤ Li ≤ 1,000,000). Your friend has challenged you to a simple game: you will pick three sticks at random, and if your friend can form a triangle with them (degenerate triangles included), he wins; otherwise, you win. You are not sure if your friend is trying to trick you, so you would like to determine your chances of winning by computing the number of ways you could choose three sticks (regardless of order) such that it is impossible to form a triangle with them.

Input

The input file consists of multiple test cases. Each test case starts with the single integer N, followed by a line with the integers L1, ..., LN. The input is terminated with N = 0, which should not be processed.

Output

For each test case, output a single line containing the number of triples.

Example

Input:
3
4 2 10
3
1 2 3
4
5 2 9 6
0

Output:
1
0
2

For the first test case, 4 + 2 < 10, so you will win with the one available triple. For the second case, 1 + 2 is equal to 3; since degenerate triangles are allowed, the answer is 0.


Added by:Neal Wu
Date:2008-08-03
Time limit:1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: ERL JS-RHINO

hide comments
2018-03-22 13:12:21
EZ
2018-02-26 10:29:05
sticks of equal length are considered different
2018-02-04 08:04:44
AC in one go...
simple sorting and binary search...
O(n^2*logn) Time-0.18s
2018-01-25 16:12:52
good for beginers
2017-12-02 14:33:13
two pointers..
2017-08-20 09:00:00
sticks of equal length is considered different because of labelling from 1 to N
2017-08-05 08:23:39
done with O(n^2*log(n)). good problems for beginners and there can be multiple sticks with same length
2017-05-23 14:27:45
@lalwr nice fake alca :)
2017-03-23 04:06:38
easy O(n^2*lg(n)) ..... AC in one go!!!!!
2017-03-22 12:43:14
There can be multiple stick of same length, got me a WA!
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.