

Time Limit: 2 sec / Memory Limit: 1024 MB
問題文
以上 未満の 個の実数 があります。
これら 個のうち、値が 以上 未満であるようなものが 個あることがわかっています 。
あなたは、 の中央値と平均値の差の絶対値がどのくらい小さくなるか気になりました。
「 の中央値と平均値の差の絶対値は 未満にならない」と言えるような最大の を求めてください。
制約
- 入力は全て整数である
入力
入力は以下の形式で標準入力から与えられる。
出力
答えを出力せよ。
なお、真の解との絶対誤差または相対誤差が 以下であれば正解として扱われる。
入力例 1Copy
3 3 0 1 2
出力例 1Copy
0.0
例えば のとき、これらの中央値と平均値はともに になり、差の絶対値は となります。
絶対値が 未満になることはないので、「中央値と平均値の差の絶対値は 未満にならない」と言えるような最大の は となります。
入力例 2Copy
4 5 2 1 0 0 1
出力例 2Copy
0.25
例えば のとき、これらの中央値は 、平均値は となり、差の絶対値は となります。
このように中央値と平均値の差の絶対値として よりわずかに大きな値はありえますが、 未満にはならないことが証明できます。よって答えは となります。
入力例 3Copy
10 10 1 0 0 0 0 0 0 0 0 9
出力例 3Copy
0.4
真の解との絶対誤差または相対誤差が 以下であれば正解となります。
Problem Statement
There are real numbers between (inclusive) and (exclusive).
Among these numbers, it is known that there are numbers between (inclusive) and (exclusive) for .
You are curious about how small the absolute difference between the median and the mean of can be.
Find the largest such that the absolute difference between the median and the mean of cannot be smaller than .
Constraints
- All input values are integers.
Input
The input is given from Standard Input in the following format:
Output
Print the answer.
Your output will be considered correct if the absolute or relative error from the true answer is at most .
Sample Input 1Copy
3 3 0 1 2
Sample Output 1Copy
0.0
For example, when , the median and the mean of these numbers are both , and the absolute difference is .
Since the absolute difference cannot be smaller than , the largest such that the absolute difference between the median and the mean cannot be smaller than is .
Sample Input 2Copy
4 5 2 1 0 0 1
Sample Output 2Copy
0.25
For example, when , the median is , the mean is , and the absolute difference is .
As seen here, the absolute difference between the median and the mean can be slightly larger than , but we can prove that it cannot be smaller than . Therefore, the answer is .
Sample Input 3Copy
10 10 1 0 0 0 0 0 0 0 0 9
Sample Output 3Copy
0.4
Your output will be considered correct if the absolute or relative error from the true answer is at most .