#ABC057D. Maximum Average Sets

Maximum Average Sets

Problem Statement

You are given NN items.

The value of the ii-th item (1iN)(1≤i≤N) is viv_i​.

Your have to select at least AA and at most BB of these items.

Under this condition, find the maximum possible arithmetic mean of the values of selected items.

Additionally, find the number of ways to select items so that the mean of the values of selected items is maximized.

Constraints

  • 1N501≤N≤50
  • 1A,BN1≤A,B≤N
  • 1vi10151≤v_i​≤10^{15}
  • Each viv_i​ is an integer.

Input

The input is given from Standard Input in the following format:

N A B
v1​
v2​
...
vN​

Output

Print two lines.

The first line should contain the maximum possible arithmetic mean of the values of selected items. The output should be considered correct if the absolute or relative error is at most 10610^{-6}.

The second line should contain the number of ways to select items so that the mean of the values of selected items is maximized.

Samples

5 2 2
1 2 3 4 5
4.500000
1

The mean of the values of selected items will be maximized when selecting the fourth and fifth items. Hence, the first line of the output should contain 4.54.5.

There is no other way to select items so that the mean of the values will be 4.54.5, and thus the second line of the output should contain 11.

4 2 3
10 20 10 10
15.000000
3

There can be multiple ways to select items so that the mean of the values will be maximized.

5 1 5
1000000000000000 999999999999999 999999999999998 999999999999997 999999999999996
1000000000000000.000000
1