100 atcoder#ABC138C. [ABC138C] Alchemist
[ABC138C] Alchemist
Score : points
Problem Statement
You have a pot and ingredients. Each ingredient has a real number parameter called value, and the value of the -th ingredient is .
When you put two ingredients in the pot, they will vanish and result in the formation of a new ingredient. The value of the new ingredient will be where and are the values of the ingredients consumed, and you can put this ingredient again in the pot.
After you compose ingredients in this way times, you will end up with one ingredient. Find the maximum possible value of this ingredient.
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print a decimal number (or an integer) representing the maximum possible value of the last ingredient remaining.
Your output will be judged correct when its absolute or relative error from the judge's output is at most .
2
3 4
3.5
If you start with two ingredients, the only choice is to put both of them in the pot. The value of the ingredient resulting from the ingredients of values and is .
Printing 3.50001
, 3.49999
, and so on will also be accepted.
3
500 300 200
375
You start with three ingredients this time, and you can choose what to use in the first composition. There are three possible choices:
- Use the ingredients of values and to produce an ingredient of value . The next composition will use this ingredient and the ingredient of value , resulting in an ingredient of value .
- Use the ingredients of values and to produce an ingredient of value . The next composition will use this ingredient and the ingredient of value , resulting in an ingredient of value .
- Use the ingredients of values and to produce an ingredient of value . The next composition will use this ingredient and the ingredient of value , resulting in an ingredient of value .
Thus, the maximum possible value of the last ingredient remaining is .
Printing 375.0
and so on will also be accepted.
5
138 138 138 138 138
138