题库练习 Jerry's Protest
← 上一题 下一题 →

A10207 | Jerry's Protest

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

Andrew and Jerry are playing a game with Harry as the scorekeeper. The game consists of three rounds. In each round, Andrew and Jerry draw randomly without replacement from a jar containing $n$ balls, each labeled with a distinct positive integer. Without looking, they hand their balls to Harry, who awards the point to the player with the larger number and returns the balls to the jar. The winner of the game is the one who wins at least two of the three rounds.

Andrew wins rounds 1 and 2 while Jerry wins round 3, so Andrew wins the game. However, Jerry is unhappy with this system, claiming that he will often lose the match despite having the higher overall total. What is the probability that the sum of the three balls Jerry drew is strictly higher than the sum of the three balls Andrew drew?

输入格式

The first line of input contains a single integer $n$ ( $2<=n<=2000$ ) — the number of balls in the jar.

The second line contains $n$ integers $a_{i}$ ( $1<=a_{i}<=5000$ ) — the number written on the $i$ th ball. It is guaranteed that no two balls have the same number.

输出格式

Print a single real value — the probability that Jerry has a higher total, given that Andrew wins the first two rounds and Jerry wins the third. Your answer will be considered correct if its absolute or relative error does not exceed $10^{-6}$ .

Namely: let's assume that your answer is $a$ , and the answer of the jury is $b$ . The checker program will consider your answer correct, if ![](/uploads/acgo/image/786b939901e3a23a_743402d0ed0b.jpeg).

输入输出样例

输入 #1
2
1 2
输出 #1
0.0000000000
输入 #2
3
1 2 10
输出 #2
0.0740740741
C++ 编辑器
输入
输出