Limits 1s, 512 MB

This year Hablu wants to participate in ICPC. He studies in “Habagoba University” along with $n$ other students. Everyone in the University has a “Problem solving skill level”. Hablu needs 2 other members to make a team.

But Hablu is really dumb! He will select two students if and only if the summation of their “Problem solving skill level”s is less than his own (What?)!

Now your task is to calculate how many ways Hablu can make his team. Two teams are considered different if a student $x$ is on the first team but not on the second one.

Input

In the first line you will be given two integers $n$ and $k$ ($1 \leq n, k \leq 10^5$) representing the number of students other than Hablu and Hablu's “Problem solving skill level” respectively. Next line will contain $n$ integers $a_i$ ($1 \leq a_i \leq 10^5$) — the “Problem solving skill level”s of other students.

Output

Output a single integer — the number of ways Hablu can make his team.

Samples

InputOutput
4 10
1 1 2 7
6
InputOutput
5 1
1 2 3 4 5
0

Output may not fit into 32 bit integer. Use 64 bit integer.

Submit

Login to submit.

Statistics

68% Solution Ratio
nuipqiunEarliest, Apr '20
Paul72Fastest, 0.0s
Lazy_ProgrammerLightest, 131 kB
mdvirusShortest, 169B
Toph uses cookies. By continuing you agree to our Cookie Policy.