Statistics

Problem Statement for "CasinoGame"

Problem Statement

You are playing a game in a casino. The game is played with a sequence of positive real numbers. You are given a int[] S. For each valid i, element i of the initial sequence can be computed as S[i] / 1000.0.


During the game, some elements of the sequence will become erased. Once an element has been erased, it remains erased for the rest of the game. The game ends when all elements have been erased.


Your initial score is zero.


The game is played in turns. Each turn has three phases:

  1. An element of the sequence that hasn't been erased yet is chosen uniformly at random.
  2. That element is added to your score and then erased.
  3. A random effect is applied to each element that hasn't been erased yet.


For each element, the random effect that will be applied is randomly chosen as follows:

  • With probability 33% the element is erased (without being added to your score).
  • With probability 33% the element is divided by two. (If its current value is x, its new value will be x/2.)
  • With probability 33% the element is replaced by its square root. (If its current value is x, its new value will be sqrt(x).)
  • With probability 1% the element is restored to its initial value. (Regardless of its current value, its new value will be the value it had before the first turn of the game.)
The random effects for different elements are mutually independent.


Return the expected value of your score at the end of the game.

Definition

Class:
CasinoGame
Method:
expectedValue
Parameters:
int[]
Returns:
double
Method signature:
double expectedValue(int[] S)
(be sure your method is public)

Notes

  • The returned value must have an absolute or relative error less than 1e-9.

Constraints

  • S will contain between 1 and 1,000 elements, inclusive.
  • Each element of S will be between 1 and 1,000,000, inclusive.

Examples

  1. {100000, 100000}

    Returns: 120.80000000000001

    We start the game with the sequence {100, 100}. Regardless of which element is chosen in the first step, our score will increase by 100 and that element will be erased. Let's consider what will happen to the other element: With probability 33% the other element is also erased, the game ends, and our score is 100. With probability 33% the element becomes 50. In the second turn we add it to our score and we end the game with the score 150. With probability 33% the element becomes 10. In the second turn we add it to our score and we end the game with the score 110. With probability 1% the element is restored to its initial value, which means that it will remain 100. In this case our final score will be 200. Thus, our expected final score is 0.33*100 + 0.33*150 + 0.33*110 + 0.01*200.

  2. {68391}

    Returns: 68.391

  3. {9000, 25000, 100000}

    Returns: 59.47600366439891

    The initial sequence is {9, 25, 100}. One possible gameplay looks as follows: Element 1 is selected, added to your score, and erased. Element 0 is halved and element 2 is replaced by its square root. The new sequence is {4.5, erased, 10}. Element 0 is selected, added to your score, and erased. Element 1 is already erased, so nothing happens there. Element 2 is restored to its original value. The new sequence is {erased, erased, 100}. Element 2 is selected, added to your score, and erased. The game ends. In this game your final score was 25 + 4.5 + 100 = 129.5.

  4. {932452, 32431, 234511, 1, 999, 12341, 432134, 987654, 1000000}

    Returns: 569.7984079363877

  5. {655482,657692,166545,510808,406135,487463,572526,89578,844121,881092,843697,733297,998007,518962,879347,652488,193968,569275,486335,194222,498550,98979,729632,518857,959392,22656,728919,158737,793281,75238,760687,449635,732925,558907,592118,770734,47242,165516,491986,891358,678283,336555,257207,308841,487191,137426,961324,681154,338375,80210, 875371,468599,809986,237554,987452,770250,891008,348922,928983,685161,424155,690542,766471,788754,881123,359461,560360,928360,156651,684020,452270,466608,21447,341151,775444,140312,110251,369319,821461,448621,81203,329383,548895,891185,566933,168898,662307,458813,517815,223841,775648,573645,546058,174670,363271,428053,165805,555306,357286,322452, 240198,441230,420734,892443,414055,827853,33627,524301,828846,855084,604596,910045,816141,154363,802102,15625,323256,96960,106112,472746,320797,881756,47263,866850,688100,410529,295775,853901,597509,284735,808027,837703,357639,229633,362697,771689,58358,396319,927664,518879,883077,533133,429796,700091,687491,863572,715711,642422,592206,821819, 116040,912998,336126,794100,412399,25098,836303,339849,510673,434685,256258,319572,904062,613893,180880,267631,18133,239233,663945,945793,389786,179574,111477,819577,879660,430642,315700,227922,73936,907902,681415,820773,453451,649215,615745,865846,674309,452921,837369,816656,519280,94499,137101,424214,340066,317976,691840,988997,188883,386109}

    Returns: 817.8156226417173

  6. {1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000, 1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000, 1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000, 1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000, 1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000, 1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000, 1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000, 1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000, 1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000, 1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000, 1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000, 1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000, 1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000, 1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000, 1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000, 1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000, 1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000, 1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000, 1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000, 1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000}

    Returns: 1650.8120310299312

    Here S has 1,000 elements, all equal to 1,000,000.

  7. {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}

    Returns: 3.2126045329902637

  8. {1,3,1,1,3,2,1,1,1,3,2,2,3,2,2,2,3,2,1,1,3,1,3,3,2,3,1,3,3,2,1,1,1,1,1,3,3,1,3,1,2,2,2,1,3,3,3,3,3,3,1,2,2,3,3,1,1,3,3,3,2,2,3,2,2,1,2,2,3,2,3,1,1,2,2,1,2,1,1,1,1,1,1,3,2,3,1,3,2,1,2,1,2,2,3,1,2,1,3,2,3,3,3,3,2,1,1,1,2,2,2,3,3,2,2,2,2,2,1,1,1,3,1,2,2,3,3,1,1,3,3,3,3,2,3,1,1,2,2,2,3,1,2,2,3,1,1,1,3,2,1,1,2,1,3,3,1,3,2,1,3,1,1,3,3,1,2,3,2,3,2,2,1,1,3,3,1,2,1,2,1,1,2,3,2,2,3,2,3,1,3,2,1,3,2,1,3,3,1,2,3,3,3,3,1,3,3,1,2,3,3,3,1,3,3,2,2,2,1,1,3,1,3,1,1,2,2,2,1,3,1,1,2,3,1,2,3,1,1,3,3,1,2,1,3,2,3,3,3,2,3,3,2,3,1,3,2,3,1,2,3,1,3,2,1,1,1,1,1,2,1,3,3,3,1,3,1,1,2,1,3,2,1,1,2,2,1,3,2,2,2,1,3,2,3,1,3,1,2,3,2,2,3,2,2,1,2,3,2,3,1,1,2,2,2,1,3,3,3,1,2,2,3,2,1,2,2,3,3,1,3,2,1,2,1,3,3,2,2,2,3,3,2,2,1,2,3,1,1,2,2,3,1,2,1,1,3,3,1,1,1,3,2,1,2,3,3,2,2,2,1,1,2,3,2,2,1,2,2,2,1,1,2,2,2,2,1,3,2,1,3,3,2,2,1,1,1,1,2,3,3,2,1,1,3,1,3,3,2,2,3,3,3,1,2,2,3,3,2,3,1,2,3,2,3,3,2,2,1,2,1,3,1,3,1,3,3,3,1,1,2,3,1,2,1,3,1,1,2,3,1,2,1,3,2,2,1,1,1,1,2,2,2,3,1,2,2,3,2,2,2,1,1,3,2,2,2,2,3,1,1,3,3,3,1,1,2,1,3,2,2,1,3,3,3,1,2,2,1,1,1,2,1,2,1,2,1,3,3,1,1,2,1,1,2,2,2,3,2,1,1,1,2,1,1,2,1,3,3,3,3,1,1,3,3,3,2,1,3,2,2,1,3,2,2,2,1,3,2,3,2,2,3,1,1,3,2,2,3,3,1,2,1,3,1,3,3,2,3,2,1,2,2,1,3,1,1,1,2,2,3,3,2,3,1,2,3,2,3,3,1,2,2,2,2,1,1,1,3,2,2,1,3,2,2,1,2,3,1,3,1,2,3,3,1,3,1,1,3,2,3,1,1,3,3,2,3,1,2,2,3,1,3,3,3,2,1,3,1,2,2,2,3,3,2,1,3,3,2,2,2,2,1,2,1,3,3,3,3,2,3,1,3,2,1,2,1,1,1,1,3,1,3,1,1,1,1,3,2,2,3,3,2,3,2,3,2,2,3,2,1,3,2,3,1,2,2,1,3,3,2,3,1,2,3,1,1,1,3,2,1,2,1,2,2,3,1,3,2,1,3,3,1,2,2,1,1,3,2,1,3,1,1,1,3,1,1,1,2,2,2,2,1,3,1,3,1,2,2,3,1,2,2,1,1,1,3,2,1,2,2,1,1,1,1,1,1,3,1,3,1,2,2,1,2,3,3,2,2,3,2,3,1,3,1,2,3,3,3,1,3,3,2,3,1,3,1,1,2,1,1,3,3,3,1,2,3,1,2,1,1,3,1,2,3,1,1,3,2,2,1,2,2,2,2,2,2,2,2,1,2,3,1,2,3,2,3,2,2,1,3,3,1,3,2,1,1,2,3,3,1,2,1,2,3,2,3,2,3,3,1,2,2,1,3,2,2,3,1,1,1,1,3,1,1,2,2,2,2,3,1,2,1,2,1,1,1,1,3,1,3,3,2,3,1,3,2,3,2,3,3,2,3,1,1,1,2,2,3,3,1,1,3,2,3,1,3,1,1,2,2,1,2,3,1,3,3,2,2,1,2,2,1,3,2,2,3,2,1,3,2,3,3,1,1,1,1,3,1,3,2,2,1,1,2,1,1,2,3,2,3,2,2,1,1,3,3,1,1,1,3,3,1,3,1,1,3,2,2,1,2,1,2,2,3,2,2,3,1,2,3,1,3,1,3,1,1,2,1,2}

    Returns: 3.3218797114341125

  9. {612157,712445,991692,984502,697359,788064,960750,695756,565319,830744,536137,871131,891122,956493,845444,961936,549760,594549,788360,604670,837662,679196,706566,897686,999290,653942,809919,923141,811546,700369,798736,923704,912815,811074,908205,610173,619785,889601,826576,685104,720344,862713,576882,611466,819206,922326,594048,889613,537522,903055,994284,895831,582250,721496,814163,602186,896085,624081,525327,707630,824451,844710,651980,757912,655784,560185,868085,796216,970433,715307,501966,690777,598667,578848,822890,917873,521821,937585,828132,579990,840640,843062,996468,922890,564557,810630,545723,981289,955359,571050,688919,779809,936407,840899,558367,612837,921731,947099,909053,892164,662405,911020,603587,761072,510514,926477,699591,552982,864061,527723,632972,725347,870785,650086,648237,955990,960717,714607,937278,916075,785657,646843,716530,742710,508389,774897,855548,930120,721995,785247,842930,905047,696266,946517,666119,727428,893640,865710,780410,757701,914080,934030,983048,784865,584115,651931,761501,565478,866538,698778,981553,672841,866269,718729,936199,874658,993626,791746,804777,736267,597639,668354,641314,814553,635517,828080,541980,529157,714436,822390,786858,628516,777066,790552,934028,861182,963131,695528,926660,829668,914953,928860,523156,781221,668235,959355,655878,682508,771747,981303,918775,869386,670303,580735,683938,805820,908815,746565,834977,643898,568955,642481,772414,866668,953681,706441,748496,916811,922616,695803,767125,837568,624662,810928,639436,792897,770282,815961,975405,562675,817910,914827,952709,988213,995562,636646,814680,925024,883212,670303,568921,972814,812785,861982,860128,766465,589069,608624,703922,511684,804427,971047,869899,949736,781975,529981,742632,572903,845943,738684,656226,684499,674157,608934,693359,690365,745580,508038,636035,649438,678341,704956,642898,511772,587584,523673,798884,676653,632297,502805,688337,936724,994500,578883,886459,797121,608864,649737,890671,975454,909068,546896,659953,583224,655830,873959,773590,922058,881997,909625,592142,580984,635228,755688,613404,722812,779361,912288,920113,911658,935741,629096,869028,950887,707979,776133,748007,816844,946517,659324,812944,855585,706221,972897,959456,862051,867502,733045,804755,749498,663317,896898,851130,819192,652585,985181,562650,931946,897468,982763,864250,853855,611859,733277,804741,840485,509409,573394,677975,955926,732719,990920,832157,959587,984463,791613,842284,851965,545304,647039,622109,708621,543936,973239,527812,717168,979066,590463,649113,897181,593872,534009,751035,726378,767286,576423,566863,797342,670464,744838,773914,923830,735757,606071,883416,720220,897684,746347,592831,942988,893386,714940,672256,957969,708826,720715,695783,687891,831825,844896,585071,925698,878905,856754,652075,666837,953824,739585,964179,624287,984424,738092,548117,740827,864810,952180,981694,783140,719173,574524,746775,612558,789465,919031,591173,518937,639745,786956,706828,992218,652498,812547,917915,552049,669300,590636,718886,623123,830222,703711,768057,835292,962451,836821,576118,827260,809648,578459,610400,528820,652983,857175,662026,963095,796852,753199,982032,957244,560802,709507,949461,733947,522053,888022,785997,712000,978659,525529,855770,829527,749888,623826,685465,712338,960648,782230,560244,770295,860689,691291,819762,534319,569112,981788,997414,865964,755634,500092,843855,816436,730246,793315,571029,752299,701984,857026,984946,701289,903203,840715,530815,653090,964541,716280,886075,945835,519156,946319,716129,879846,637610,535891,914165,706722,538325,932225,593333,793959,952964,937188,631041,683209,751149,702071,935508,953133,579743,920453,654421,982946,781814,705883,656682,746355,942810,542756,712836,961967,989076,949613,841812,647332,506150,776623,854054,544475,708847,968034,838435,661811,905221,990123,845020,677017,712840,801175,630149,792584,742274,805218,796176,544735,511100,973506,791090,974558,516261,524572,936524,525983,974185,798982,673315,980335,596251,548016,524810,825745,516049,883892,508202,941918,894661,853223,618934,607501,675044,749083,920732,937965,574947,737554,982700,606695,711059,794436,581252,727321,819009,538422,773951,793193,858051,947267,773528,954302,515929,818985,780046,531978,702876,788249,973896,597536,662118,592829,725684,857809,862560,646415,795773,937507,883970,799120,544201,615675,614202,646100,842996,933211,684522,637594,747051,542572,584860,520578,517520,621436,860210,797567,653414,583732,606462,647957,681268,768580,761433,927600,647035,623992,574014,963455,582146,978631,762574,646994,594306,876777,813742,957949,830634,998264,595542,577684,561483,701049,618909,579003,822485,979119,897217,996547,562850,503678,644503,764766,792905,926583,692365,960587,571222,787026,924042,653368,786304,707262,821009,901257,584038,634750,859205,935320,653661,975395,513003,715144,697090,631913,814794,540222,631678,712011,536768,715176,736336,701918,500588,549888,628500,713600,510474,699722,521272,955163,873737,807576,662425,715393,708832,767110,850143,588684,702429,503803,564078,715433,739594,781815,867993,575035,822037,520317,787046,858805,756140,544028,581369,756728,614563,709870,970328,645685,930239,991601,600847,803976,799176,783919,519368,528655,551029,890158,617339,774105,914609,702064,510184,674849,983879,898824,749884,805916,919142,557576,685367,675281,601605,766737,932010,736815,997254,922984,882500,927492,914584,503994,731467,734407,808560,771482,763062,880236,661640,901048,654341,596895,603111,664525,771744,607636,563349,521628,913552,503137,579204,598919,678418,701456,886303,631074,938272,883556,554058,841418,811047,989289,866059,563161,744342,674619,834643,507403,554854,516929,929098,729842,613824,552855,894368,906216,660492,978364,927844,574043,981501,507047,693609,680565,729151,579911,811640,667422,963467,886345,529486,795161,896280,895546,858322,640622,590811,713611,668672,666312,730541,597770,896155,865012,650625,790522,771227,811117,768885,719717,885161,771032,726765,599416,951597,955916,679328,763236,643984,663441,670227,673470,958602,566507,589662,816923,727776,680473,530534,896448,846786,781722,994218,742940,667380,644843,554108,938608,976607,843640,658324,882414,614671,905736,981831,566267,882298,681805,850151,546928,845246,541024,741046,803848,628178,851355,620770,855954,531828,671951,752402,899261,953673,746619,662847,621053,912109,737602,580307,909363,581241,759278,791776,716559,685661,794253,803473,588605,976058,653623,656181,821304,715295,897227,625151,843473,748581,766568,699427,801056,959167,951829,700316,912839,719094,883810,554538,651850,621411,655492,561212,723299,935418,873635,939858,621078,667888,743331,730330,664592,917601,886511,985896,632895,783737,631693,976369,552965,918909,696442,854021,878075,668917,574984,811560,908658,979441,886746,560507,621499,542237,642366,844798,977655,536648,805303,619379,704536,569280,870357,869128,986881,756867,875671,640423,561251,507363,637438,614216,926272,854527,988884,824993,523443,584514,636553,932101,563955,523298,513255,685454,586182,655621,550898,584484,692269}

    Returns: 1248.7173792397211

  10. {57,59,21,51,57,71,7,1,58,32,97,24,2,77,25,67,61,35,31,66,65,48,39,22,2,31,57,89,83,94,2,92,52,75,42,61,45,48,61,54,79,57,77,32,85,53,98,97,88,28,62,4,28,52,26,29,82,82,17,65,75,71,56,78,97,49,38,93,97,98,46,27,6,74,59,42,27,56,39,14,36,52,69,63,4,94,43,37,75,60,1,49,82,8,27,78,9,16,70,5,14,67,31,71,40,41,13,18,97,3,83,84,54,52,98,9,45,40,46,20,51,98,20,84,58,46,61,66,62,82,70,27,48,52,49,40,93,13,57,41,15,40,76,21,91,73,81,87,64,26,6,67,76,78,50,33,75,63,50,36,44,71,14,44,74,15,83,18,27,91,58,94,82,85,66,72,57,46,11,73,24,68,39,99,45,88,83,20,50,32,7,46,54,73,89,27,87,23,45,65,65,54,58,47,39,23,70,47,21,80,19,44,48,9,42,92,97,24,63,98,7,70,43,12,42,83,38,28,57,34,44,22,88,2,68,78,76,37,24,96,69,95,91,16,3,32,59,51,7,22,49,65,43,91,76,84,26,66,63,82,99,6,3,38,59,22,67,87,11,91,34,79,37,25,46,91,8,4,42,15,77,90,31,19,32,7,2,9,24,16,91,74,22,45,12,32,19,78,70,29,20,4,7,8,80,52,99,87,7,92,1,84,81,32,2,64,90,56,73,65,71,15,38,44,11,1,76,29,31,45,57,2,100,63,10,79,66,60,66,73,51,18,56,83,1,9,98,90,64,70,6,35,36,44,30,47,44,5,75,74,2,32,28,53,46,37,32,12,48,49,36,50,66,91,32,67,51,81,8,15,51,14,1,38,9,30,84,52,87,59,78,40,42,5,92,39,93,23,2,92,71,37,41,89,79,24,55,30,4,62,44,6,27,44,44,35,25,79,39,11,89,16,50,30,72,42,21,16,16,22,59,39,11,99,27,89,74,81,18,29,94,13,35,73,8,30,7,33,8,97,95,97,64,97,78,87,38,98,2,5,72,60,43,82,10,21,70,83,53,40,12,99,4,98,71,64,27,29,48,86,26,42,34,41,38,12,28,27,61,29,84,84,41,78,65,2,99,87,37,51,78,48,49,81,97,71,44,75,100,91,60,77,85,46,17,74,57,44,53,69,25,36,53,17,13,69,18,63,55,54,66,32,53,66,65,49,37,60,75,88,3,87,64,87,32,32,12,40,28,64,60,52,51,12,68,64,81,37,78,87,91,43,71,43,9,35,44,97,94,18,84,96,56,99,34,87,30,46,78,57,9,38,60,60,49,79,75,81,16,4,20,6,47,90,100,7,24,95,3,17,65,86,65,20,36,98,7,65,43,84,74,4,21,33,63,22,12,89,54,79,92,73,36,90,62,35,96,85,30,50,54,46,87,70,65,22,67,23,87,62,59,12,65,31,44,27,52,7,67,58,85,58,30,20,48,44,7,95,80,88,45,85,33,31,54,49,53,21,72,91,82,30,54,98,60,49,76,64,56,42,21,92,51,2,64,98,97,70,45,77,9,89,13,41,71,67,89,23,39,12,65,72,41,18,69,53,67,44,68,74,85,40,17,87,41,80,85,90,1,81,18,9,69,30,1,39,96,42,14,34,53,30,5,46,100,25,50,18,68,17,91,4,56,7,91,48,39,27,37,39,7,54,100,27,36,52,65,31,93,30,17,98,60,73,95,59,98,44,76,17,12,18,21,67,76,63,66,14,41,55,5,47,60,56,25,95,7,89,26,52,71,94,1,30,66,47,40,63,90,67,32,53,84,4,71,11,66,36,77,6,90,81,4,50,36,28,96,94,68,21,45,38,66,97,19,32,43,58,46,84,76,77,36,11,80,6,22,97,94,98,54,35,30,57,36,17,36,32,10,56,4,7,93,70,3,64,1,46,73,98,29,49,75,17,59,6,74,32,3,67,81,8,2,62,65,37,78,52,68,40,7,24,98,52,93,52,15,45,49,87,42,30,87,68,46,98,74,19,81,28,86,62,35,39,75,51,75,53,3,95,44,61,18,93,64,62,44,30,6,93,69,47,22,55,15,67,4,40,37,85,67,22,98,53,12,72,4,39,76,58,85,19,70,54,11,34,15,7,63,20,99,31,18,72,38,84,38,41,75,26,25,41,100,74,46,11,46,49,49,21,58,33,92,27,38,54,60,52,60,23,23,58,5,93,81,42,28,70,83,3,96,59,95,95,33,40,5,30,88,6}

    Returns: 4.231740201136852

  11. {37,48,29,48,47,12,41,40,45,23,11,30,11,25,26,46,24,31,44,41,22,29,37,44,18,11,45,12,25,28,13,13,25,35,13,23,37,44,15,33,18,16,14,21,33,30,19,50,13,12,40,27,31,28,20,41,31,15,43,48,35,49,13,50,33,16,25,21,50,32,46,19,40,10,31,23,32,40,24,37,44,13,16,26,34,26,16,14,33,10,14,17,10,17,19,35,23,36,46,24,19,44,33,49,46,15,23,29,45,37,16,38,43,24,15,26,42,21,32,27,24,36,36,24,43,45,50,17,32,47,31,41,40,16,42,37,21,14,16,16,44,24,46,36,38,11,13,29,24,35,46,40,23,32,14,17,28,15,25,12,11,48,45,44,13,36,32,27,43,38,35,36,13,30,21,41,33,26,22,50,10,19,39,25,43,45,33,21,11,50,25,13,47,21,49,12,48,30,29,42,20,13,27,23,35,40,16,20,15,28,19,17,37,50,33,30,47,17,43,48,16,19,12,14,30,12,16,29,33,37,20,45,40,37,17,27,28,23,37,33,43,48,41,32,47,23,13,45,32,46,43,40,16,47,44,36,50,12,17,34,39,27,28,31,16,37,48,34,12,36,17,45,33,50,26,31,24,29,26,46,26,18,35,34,16,28,20,15,30,29,39,21,46,18,42,13,46,41,38,48,26,47,44,49,46,22,31,19,41,47,16,19,16,41,43,23,20,14,28,43,33,19,13,31,27,47,34,24,39,23,23,16,21,19,16,16,31,37,27,23,34,33,32,40,25,27,12,36,31,33,30,16,42,35,37,20,31,20,37,21,36,11,27,47,20,33,13,41,19,32,16,43,17,38,35,32,16,39,19,38,21,41,44,14,25,30,27,46,42,15,18,27,16,35,24,29,17,29,21,29,12,27,21,19,17,48,44,23,37,14,10,48,46,46,14,20,27,31,18,21,38,26,38,44,13,13,22,20,34,34,41,37,12,12,48,19,11,43,33,38,48,35,38,45,31,42,14,50,24,24,20,13,43,10,47,46,15,21,17,40,47,49,28,49,12,25,18,13,18,43,44,17,27,31,11,50,24,17,50,40,34,19,43,26,19,39,23,27,11,32,16,48,32,34,49,34,10,18,40,20,10,33,27,27,15,30,29,29,38,28,18,23,37,10,39,49,41,13,27,45,35,33,44,17,18,42,43,20,11,32,31,11,16,50,31,21,32,50,40,19,27,50,32,15,11,22,15,45,25,32,39,11,16,32,18,24,26,11,37,27,33,17,31,42,18,11,12,40,12,43,10,31,42,34,38,46,48,44,40,22,27,28,24,34,11,34,50,27,35,38,47,20,47,27,11,15,28,13,47,32,48,48,12,42,33,40,37,31,35,26,45,12,46,18,38,47,45,39,26,29,27,22,41,23,39,44,28,18,50,25,40,47,24,42,40,47,33,28,29,18,44,24,22,41,34,50,40,28,38,15,50,14,29,42,28,17,36,46,27,35,22,16,33,38,50,25,37,34,43,15,42,39,31,13,29,15,12,18,35,43,25,34,47,44,26,24,12,13,22,29,40,36,37,24,24,36,39,12,20,32,17,13,20,39,17,41,46,21,11,30,13,28,16,12,22,34,26,26,37,40,46,28,28,32,42,44,20,31,46,32,14,14,35,26,45,44,16,40,17,19,22,20,38,28,24,11,11,41,29,40,32,24,17,50,49,10,43,20,33,40,42,37,45,28,12,39,22,21,31,29,32,43,41,19,22,15,22,25,48,42,16,31,17,25,33,17,25,25,27,49,15,18,35,11,39,40,40,10,12,22,31,34,16,23,44,28,30,17,45,29,49,10,12,18,25,35,25,41,50,43,41,16,12,27,19,41,16,50,43,18,23,23,43,30,39,38,50,20,45,45,40,46,45,42,15,22,28,30,14,29,24,45,36,27,21,45,17,30,46,12,40,21,25,32,41,15,21,42,26,18,36,17,15,33,10,20,47,28,42,10,47,16,47,34,33,19,31,42,39,26,44,29,39,21,12,31,28,26,23,44,34,10,12,41,35,12,10,31,30,42,33,29,48,29,12,32,39,33,26,29,11,19,50,40,32,14,21,10,30,36,46,15,36,49,46,21,12,48,44,35,39,27,13,39,48,17,22,38,41,38,19,42,50,18,33,33,22,46,35,44,31,31,10,17,31,46,30,35,43,25,19,34,44,24,24,42,32,38,31,22,28,40,15,27,10,38,11,24,34,37,18,14,19,20,23,42,16,45,26,10}

    Returns: 4.0510704362234575

  12. {488805,161560,965084,738511,33771,263101,500382,509767,724029,277312,491227,852529,579453,483792,572440,56630,859076,564277,223263,256887,336063,337739,664723,523247,621080,898863,513807,600716,573279,951460,194109,578435,629371,675545,316945,663142,454997,333679,689260,179025,610990,180486}

    Returns: 757.3452945945535

  13. {190443,664277,603993,763424,523352,684621,503038,296591,537035,357128,961313,60282,978207,860176,90440,95275,949806,41899,289383,528240,671270,481279,361536,850763,936276,695214,540022,115300,306204,236859,663205,12998,901135,783550,292773,424486,468170,312162,237428,521557,669289,198741,581838,647496,575268,188629,259122,525073,230528,548504,53312,418149,29783,414847,785263,482410,110061,841636,114061,932616,78494,777266,461965,495980,560815,754737,920465,545336,66898,674245,583244,252538,872985,681433,900033,964604,870062,675506,489676,100589,224010,59339,35089,770144,474185,336703,252553,100597,694690,366613,33212,289535,660230,11528,785514,737396,282616,222330,799084,865865,896574,382327,118403,285910,63760,534787,250513,933821,210293,256540,550761,950654,315878,102201,720797,790063,955255,489701,407011,649944,372665,956575,455830,32895,968102,241343,286642,250718,980024,85725,116582,392950,468052,751336,678859,48163,286123,445724,981983,496415,702263,49095,963420,534493,151295,684216,324555,106549,690268,731565,272844,62932,688139,728673,612178,172593,486367,898820,423310,982742,984544,56243,375691,968947,807579,570902,533461,610053,16625,515443,106467,235239,80889,586238,769731,232183,270453,610637,855083,477072,858554,127926,540003,63044,372950,668533,235636,375668,567352,175297,358410,68247,231540,734100,553546,555470,305001,87006,165522,837977,118801,788340,73216,199689,374577,842946,948224,161381,969935,803306,638452,828488,447584,694806,891531,820533,363338,127167,196201,447041,302463,554610,31640,50354,805061,585185,605823,110062,188542,771344,948038,307342,76035,537605,23383,450611,896903,971606,611991,866837,774911,766794,695324,222494,461600,103206,559379,341289,746724,755579,788330,49187,826540,819969,615892,631600,921505,738067,258013,626398,25762,722403,450092,101797,776359,473474,552407,673261,445079,680750,56449,736341,447543,268124,475187,425494,371330,34565,766783,118053,306495,71464,683591,133034,407784,815835,280985,845640,553901,55350,472037,579662,294104,922128,681458,70462,395601,750217,743723,357031,947318,316523,609724,911212,584647,84910,336706,955976,119474,619840,590380,942320,691303,790323,75353,615438,606157,872689,461077,160057,444390,933113,739718,738493,855241,937528,808955,767193,204096,69029,640576,151413,385551,250299,578976,970197,851560,915681,442524,971033,51872,549256,913352,259526,339578,505056,874963,945734,894096,336039,622142,338486,269152,878211,76978,640744,332090,885932,924288,536185,954960,81215,203949,856863,331513,782925,343411,183072,214957,785935,670456,266829,851542,100159,526354,191119,121566,917669,653204,15662,253707,791697,870499,39210,669907,947476,679953,1997,349760,120593,54533,821071,201807,258482,677933,49672,41406,537696,749095,772714,323630,935903,39542,175171,36061,82248,882641,673979,999916,52196,205992,769974,843892,76490,809184,30150,540317,5488,548498,406428,126080,603031,227499,844239,377864,421783,893910,935621,959478,643004,708334,799459,578906,264228,490981,131319,862827,889973,321649,379094,942168,527640,149067,302411,604129,958250,332561,660797,480090,397410,67225,122521,516792,294723,966759,894655,232857,377020,346627,708687,536376,571313,508145,631633,835540,515478,279303,698366,405450,600951,77459,863970,128590,742877,166380,249070,701127,15292,909867,697568,412702,977091,820088,445845,788165,303199,856852,537373,196570,203478,246059,732945,774790,270556,364578,126681,302385,643880,341398,707834,761183,418856,88155,889772,678085,254535,655194,895563,786178,565060,593130,715231,58502,929569,161076,363018,232767,17927,416742,429337,737756,179153,678633,28898,966060,559562,155578,268444,719794,496976,492629,480976,432183,580784,370747,110267,835318,542292,5829,621495,107351,115310,336726,682204,44879,14153,561573,793997,548431,978315,223333,286186,673819,418318}

    Returns: 809.2423215454543

  14. {639878,977879,470661,908321,697672,483988,917301,178647,432522,498084,65746,542789,333401,608037,64969,471248,231740,180279,324325,430295,741509,854829,991868,535505,403259,486534,275190,689444,160352,693507,520879,316581,671385,507891,741253,369057,991878,658553,64055,424399,156637,129800,483539,6389,254189,64860,993988,485928,761490,834664,432574,502998,689492,424441,38502,92750,427326,313691,298546,104029,523549,819424,420609,194934,327314,678213,80342,835543,336766,144396,776293,493402,790548,776184,16142,44736,841043,10130,47015,602532,844793,479588,621881}

    Returns: 720.0973385896381

  15. {420381,660382,659738,364058,490425,958283,468087,13973,294058,405047,725258,137723,83260,321951,973265,936377,466347,265910,429778,773246,42093,445919,334333,883135,972400,381347,2018,333545,377286,623898,384181,314018,800631,43918,678076,807407,518553,662514,821380,812610,583912,62989,950333,183523,384940,439949,119899,367638,705858,66028,657235,264302,28299,991567,147436,698,889265,665805,334242,266550,289702,718422,96920,606685,278692,291347,414091,797244,470212,751822,609853,54123,814811,76537,753998,716102,516486,873896,600091,738695,456276,257325,2997,484574,765243,666784,1623,654507,332589,335865,437408,138642,570638,534327,261678,849329,342025,675769,162924,812236,427590,289129,382711,758752,365665,136708,991205,398502,526955,107647,653549,983230,364971,656545,467803,130213,839680,469426,301071,688620,321642,738479,343614,408631,272805,605291,774312,131182,797411,937235,943417,225001,226363,326127,500104,108380,979186,491309,506881,506141,115307,160429,5722,480278,333325,989877,126842,173005,975654,427913,377976,297295,166391,721589,222277,955547,843232,996588,86728,640642,450175,546497,381994,192889,388975,882098,301268,368161,889758,324501,874301,5064,484929,396374,1693,334606,386250,644887,23962,361903,72799,401937,175549,755541,639878,397826,227439,483109,394413,830519,640102,360939,377015,22096,553828,765989,420545,855095,650501,310302,179595,41153,831717,180876,437527,833410,515481,823776,994648,55794,185679,583798,974082,361227,339338,613959,275404,83128,613419,669817,429998,253521,547107,807012,791968,100934,89353,212512,956029,739853,522813,651975,781006,870881,832850,734884,220642,864682,558659,215289,920475,260689,799086,894557,138268,654775,24867,413671,737903,638286,599839,167900,408158,146946,491264,200125,247879,96968,412636,720259,353172,451800,372234,650529,322680,721435,385412,543322,586117,944071,758610,22943,721111,74048,917499,859378,728822,458718,273049,466724,97003,872887,150976,21512,536184,158591,221636,784063,255558,150623,504321,608729,602422,392906,259258,925101,114341,161021,984774,216809,621443,743384,239751,342554,333783,673602,718283,62604,132319,991331,45680,745673,380570,196655,767184,916753,871597,505171,217167,127154,655793,237840,252234,258214,630745,27843,699666,261437,705216,684440,478245,326658,944175,717996,185563,277957,907949,903846,340560,40267,895176,902591,302291,792097,99245,69474,225202,487193,90996,442368,130698,746788,680207,899284,5001,827304,927126,221018,88740,148693,905457,83337,475351,365983,317684,660913,643939,225632,564758,500851,782250,976286,403441,84540,284734,19038,670365,509935,506230,761360,468655,153280,508147,148861,52563,29499,492516,496040,250516,97608,644733,672325,180944,120083,38307,498627,297347,198598,724258,378457,215800,22859,354742,135592,107398,639475,154629,777762,665762,177211,55473,134416,330490,79971,799628,899404,109469,292144,395443,876336,389751,40175,65012,87046,676609,619671,585672,973956,334620,826281,352412,550419,849139,223505,686010,956536,379331,356991,250649,45092,50553,306121,695859,897394,902443,495487,796797,11911,303982,192239,404598,210084,748766,469610,297129,425374,89280,882800,915681,940251,709080,268092,490669,558218,7948,693030,31105,387279,566372,798105,948722,616924,620577,644581,30669,523019,140067,827465,51281,444048,536056,455878,170483,801173,441839,467611,226546,47470,350410,142227,987720,575841,926670,994740,650410,934618,687770,197866,838248,254141,995970,786969,387417,132898,431549,418085,655916,87967,761902,707196,532014,814309,679425,218848,615481,121264,686458,358378,685085,553219,16956,672805,129059,459978,667544,295820,394595,871665,493685,749194,642158,6006,536162,545926,138903,967711,480362,311170,55677,242263,534717,104043,572923,214142,322890,704755,851757,525700,63133,536841,78918,596440,725997,724329,56417,909893,20148,967363,297909,30185,716556,940066,552542,252718,2343,207797,736780,482705,518966,308808,241319,570035,929202,814242,784176,768444,518996,152284,294143,98480,205476,889412,694920,447825,613740,267688,357717,150240,235051,171977,696776,951606,112043,249317,720675,630737,973465,973806,113441,8783,798966,354760,578817,244519,169001,362992,12962,204348,31627,823456,819180,237102,229220,30451,684926,842959,298138,558994,509550,533188,730971,206325,1146,359365,971994,238172,990101,945458,211978,103542,954240,527295,974653,49408,771813,143653,412399}

    Returns: 771.5805018811948

  16. {864352,960377,640934,683531,197479,870153,230333,398756,229464,528471,957750,739013,61658,205072,461690,579155,80788,433683,817327,70888,895492,29304,690781,366084,72950,665433,415491,844762,325437,344242,145888,706141,304618,303174,906023,18448,173326,136356,417204,402789,664826,891305,658154,242835,612728,119843,821990,693515,69877,639316,764402,481720,184971,971535,364155,257920,636967,295998,619033,478756,640239,281273,184896,461208,584446,90918,996008,757771,743625,929563,676912,408450,337219,335065,651285,949946,971259,473274,643460,41135,628941,924213,39206,813911,895747,403361,588182,49066,699358,207214,44173,855948,488486,229068,833507,72931,836337,345866,347054,579962,275428,23965,504763,128998,875381,156047,78943,846639,145672,238754,404125,774612,162967,443330,104874,575065,363042,693055,140482,62399,416621,184654,434698,905106,930073,268205,978037}

    Returns: 748.6656258690447

  17. {130422,841442,862723,405850,865406,367485,51199,740786,39884,130142,587424,185555,885247,507900,476519,564565,951229,97744,139630,314271,790799,796463,893021,723771,497469,327719,628876,427541,112275,123264,710302,242696,964705,573024,164897,346462,456861,216096,87247,496744,862589,191022,198650,747835,698921,191520,312400,166502,289264,968381,997124,596414,281195,406496,320184,778663,250566,465411,206204,362840,588675,432857,121888,69731,522233,803136,416193,979093,535583,503439,992188,398171,210813,707189,662358,426085,898709,491109,108938,704324,975841,106061,300737,257035,512557,137272,552050,763122,602682,758253,642314,707708,707461,280553,777439,229693,600040,193631,208785,135623,213421,717324,50145,940585,424513,228854,366670,839573,236314,991959,543896,212154,98020,360984,985541,126928,14607,537590,406401,133640,812194,565066,841348,519654,361970,135138,749347,962010,328768,474483,613984,58540,708159,664128,515477,649023,892982,398498,488595,645647,390456,548842,857801,4827,909825,359693,648106,440783,897282,570859,574422,225827,135924,415769,745480,14246,550906,11178,976255,396025,2013,106590,970917,710171,770717,486393,359193,180050,884890,847787,825697,791697,912980,199849,796524,339156,559541,444629,779938,973174,15487,354359,199000,667763,286480,944479,682008,353737,472009,174614,749762,474021,281203,237030,184191,568271,723422,543383,264673,124663,907521,90369,916359,336852,806569,712882,676007,366109,673863,455944,339282,205701,810302,54633,873463,613133,999111,71822,966870,987471,762787,716631,461491,560341,470012,645681,644964,709785,705415,909636,834447,129287,516356,267157,466138,322924,496391,142144,205384,170253,114439,61017,892305,441093,115649,282120,54225,631111,870293,21094,618582,633080,254076,80072,709772,724087,242105,354735,433871,463871,780722,784669,593158,297077,568178,575647,136352,64568,234143,341735,751172,348581,402751,643476,789673,518399,925595,360250,149510,795888,381343,284443,945319,151771,364514,655090,392209,122970,526177,342432,586841,306898,127100,696350,120327,695277,788348,256678,276196,22490,598413,27367,887423,517515,187195,193447,552266,112789,553696,218127,425028,451391,502569,370346,119513,383434,541788,511721,506404,584316,854152,609596,891213,497604,305945,527891,709232,94292,784569,985428,633134,899333,529146,520556,933199,716340,230354,485464,829129,784050,703590,770508,751792,206158,140854,871304,589592,198993,383024,612347,783308,753528,221942,190872,251131,527886,718763,476714,138529,19683,462141,288014,919015,507639,324921,852213,223978,555275,854029,569458,855676,557618,339966,607467,280128,997171,478770,869719,196163,378145,998417,979470,131672,220358,170341,899154,264595,405455,375868,919475,425137,354360,207489,344151,861998,532409,712716,602328,87683,566744,171785,459710,124361,28102,67176,920840,25272,62297,790558,221434}

    Returns: 794.1770410286251

  18. {788974,717255,88465,525683,403948,987619,790277,809402,879838,709752,234539,234197,433592,95041,612547,966000,324108,214874,570035,890851,903010,29744,531564,931112,613272,452403,956383,675568,759313,694169,116009,64638,927775,720826,590321,848074,708444,896949,657476,588281,123052,408366,338829,556643,19758,951375,38995,343866,682600,609029,751068,585610,155124,282631,33073,284747,251386,989455,960315,527050,199975,592675,591687,644102,313500,698359,492175,538295,111660,666002,642927,234711,590719,981756,791354,610477,449482,830348,954342,132082,955728,221761,234043,627203,20744,267115,911950,272129,772921,388616,799178,489248,497642,907216,133349,327494,121927,625523,865788,233586,807877,508715,468296,398595,490470,776001,9071,456303,122700,479764,104736,594779,701525,338778,221982,238620,605892,650283,510748,895165,555250,826277,384412,52891,249844,517760,380384,371770,659634,762524,605355,983862,271238,590003,382457,278059,366003,907879,734361,488703,387643,839097,599833,605519,694226,338166,844138,816470,988448,871237,711634,60049,213865,96045,629292,980060,130156,9675,351830,306141,288550,473536,290003,559787,63538,672459,354197,945893,580337,88558,950947,484331,444006,550779,606201,138231,888945,966690,954700,393744,354278,182685,970145,84494,278729,599436,64554,925236,125462,416383,231377,414012,406270,521379,490150,986160,710189,844347,932052,806877,449256,399350,807560,409613,466480,930112,547843,355424,896802,18895,265520,767431,717931,235664,851925,513012,351451,916478,438247,476912,849212,669623,890923,255481,707353,381073,757992,933893,741771,206395,740770,191026,605744,64681,600638,72224,994792,664832,943999,407945,200078,725870,175376,918009,961533,543652,431020,312983,460129,385618,306247,825692,571593,713521,597524,278945,610945,355516,729190,352715,78262,986311,60092,684006,50991,660729,272581,562134,841913,732931,970079,41990,458801,661806,476350,936685,205457,423721,766020,181937,809339,588618,7628,380931,302138,121503,176227,913083,477018,905416,782149,71632,891726,842241,755637,459068,502969,544569,21202,344881,793851,507632,903223,252651,169437,895924,705688,374893,319645,471707,73181,128983,576676,597160,509913,878813,718662,686139,791895,712032,107907,574044,783663,999632,416284,55651,975052,435604,600219,996253,296837,394069,503884,716411,163072,189672,612334,868759,80916,931978,856817,154096,60960,949844,751255,87224,828656,469916,289715,136903,698299,397621,227298,481961,913604,643581,53963,405007,595536,654181,401259,408724,564602,421494,125134,244025,611165,737468,629135,692080,185797,2303,362527,246757,952146,113781,850332,780801,100049,656398,917703,314699,54018,145000,796660,483974,304932,850622,888980,416820,21155,806591,825543,102108,744436,467029,862484,355601,204496,491618,564032,390292,493920,926559,153400,962417,556691,520084,259569,173091,176481,693624,487790,746851,354975,800801,230824,659907,167774,636155,593078,705280,959097,934972,807387,703533,402000,669870,575485,606495,677839,655868,513139,688110,98778,182890,650526,655469,702973,910095,344911,879454}

    Returns: 854.6520388481117

  19. {832700,626304,958692,149852,373479,134950,317626,525985,244379,22905,1434,179351,346644,704966,581350,16513,796802,704197,210704,452669,217335,898813,551447,916576,549339,723267,619549,975785,68177,499002,95854,417229,641657,570897,567080,531487,222199,884705,57471,466577,423962,58904,162279,770605,280221,259981,303469,77022,964177,514172,529691,697863,412985,597489,614438,478675,320755,233986,970811,905283,249339,66664,838863,407347,153912,405943,938833,376110,806999,996304,359039,230960,571559,37669,517916,851780,297649,821385,445153,778177,335556,491195,476039,748540,88683,606829,743566,925789,357166,714376,347424,606505,781039,186286,13851,451303,592228,469036,827412,915579,465339,702802,662890,553249,256823,180806,405028,554471,2190,366533,332648,854097,857727,325038,602637,462762,931866,346202,388550,289032,60578,735973,411888,357968,438611,942090,809270,547190,411125,153034,462768,876463,372187,125658,946064,629009,822815,867443,699832,341356,233975,548831,195452,91702,873868,314440,554463,805734,176994,459364,611117,753923,195337,23004,111890,150299,965093,437512,697488,376218,106897,160256,769032,479083,802265,715095,624444,625079,582538,840627,482786,816512,389457,678237,424565,263324,992677,979027,585409,686022,438391,196525,439944,150079,735880,68185,300377,700973,22048,514216,593542,128944,674471,878925,124379,993087,594020,265174,134517,692909,105800,617302,25772,495256,295539,450337,758579,804567,945715,860340,490588,900457,56864,446883,50535,309096,515067,867263,10068,537115,381479,119961,182410,572301,998885,306788,565388,109256,571961,699904,802164,194112,833558,344288,689367,645448,794624,964298,450014,740338,824637,456953,640795,397852,420187,207681,706947,935253,591296,717014,988719,489126,353326,687481,61426,868563,510620,143165,977818,598933,359421,296334,793044,192978,640621,482411,838425,435244,446708,804790,691933,787696,778094,849079,185547,198280,573112,892494,649884,164407,125859,154955,169884,479185,842435,231309,347747,869406,890826,841916,468338,766598,138249,777734,475927,778869,776496,314351,730464,223203,635492,938749,527250,929937,787827,712796,128216,360938,605289,294451,41696,731148,449405,211579,726684,808191,959240,74430,193949,366417,432697,662286,133014,570946,956371,608940,866166,732866,439642,112982,472420,591485,51730,999669,521421,355908,712465,649636,233198,317753,460438,274893,565252,909843,486472,291935,234385,962063,882716,428333,328479,315413,606971,461492,402710,563341,586783,785227,812559,26424,898208,284978,617908,466289,284647,139328,822197,513463,305315,55394,831215,765752,330286,912819,191946,333109,204753,942683,295171,603821,887367,140001,435585,494337,601492,838294,574030,188274,623520,386588,731049,38080,671565,865308,504368,472563,520987,326564,986025,342653,381957,333592,108405,228595,246410,816702,78055,967514,275736,889578,571334,163103,29578,523270,173791,147422,361563,747820,852047,501435,134407,583096,539514,322324,964755,560233,794886,485742,886797,297263,828394,785105,630854,453150,530051,393615,786204,608106,361128,61939,497683,448814,225041,43612,972083,398832,191033,849998,663003,43080,867784,313762,142527,923649,636085,107281,483881,947322,593022,887029,760936,937768,672134,391789,390917,718536,785403,177120,326641,662883,239059,340675,111696,980451,384287,83778,895634,91671,450127,558637,134750,317910,388750,793628,241558,541186,900909,725439,4859,10282,612467,765795,948049,800952,157583,338966,519488,459338,32437,362480,122220,787847,219507,750267,284650,120145,350396,180283,211815,800523,255271,862917,634784,644020,172896,876342,185205,73804,118132,190064,600438,246950,955858,64838,47902,629792,920155,83741,605481,952592,962572,727700,740438,698430,994318,541439,818574,344714,721722,546741,145236,976992,926009,780019,137364,98904,172712,322568,689060,290843,512631,805849,54145,984840,870686,618398,130984,790841,218490,736464,743432,181061,464164,221,395843,974833,58012,730768,319546,779733,277508,981133,273076,719868,277504,410439,335124,450215,733007,540535,257410,761989,346383,311554,263181,217068,446303,394164,524260,664792,130627,784043,362204,111142,300616,758046,85975,358627,488814,405520,138359,282673,903005,927786,518893,180508,338225,854016,147074,587583,394550,920835,865923,257284,748740,129103,474351,195042,523266,998611,859833,170245,299005,222037,281386,599620,980082,883712,958246,985247,805584,96604,267920,708588,24390,786812,405447,878966,157179,552520,466548,551728,989707,848822,809011,738446,977925,799713,449840,17542,314675,309672,187786,613680,48060,985524,213299,544494,869235,687897,529740,674818,300852,314011,899757,325241,617174,305203,720558,774352,374075,703457,842431,363781,552279,167793,618578,46555,967506,68417,64096,798532,894441,768234,928563,942500,270109,658214,3345,139343,346110,533085,330513,646961,363447,746621,488554,980621,51824,209111,271324,942250,428920,113755,822382,981198,281547,440959,27752,765404,25728,608199,80288,920168,892784,8850,862667,162892}

    Returns: 834.835759535611

  20. {382364,818587,13172,915448,665451,176485,795246,412071,665038,775866,980246,390500,47190,438847,819419,677296,261228,800616,475194,218539,344719,756950,244266,469270,837237,164433,362053,846086,543451,41297,29501,925814,376235,559024,357613,558037,735508,152859,970107,916897,445076,466705,307397,8617,421903,126815,685912,683131,443783,677458,418021,788501,434407,662286,774122,271643,826718,652527,634080,370168,693823,179932,812334}

    Returns: 791.5801647107089

  21. {738956,169946,144445,990815,839156,630903,907712,284232,613959,215108,809200,35862,858274,11464,235344,302056,688921,653364,90557,123327,315649,381030,911321,658718,33556,545400,28885,243730,725332,357570,830138,980639,527516,974582,487805,883023,605485,395516,167254,219443,126975,492806,771656,985249,504269,6999,287304,193189,660362,894212,832867,492362,275242,744187,151079,825149,805938,696316,68879,531269,53885,899016,28259,97752,389950,516064,980775,995434,427931,664380,731228,71258,673537,502884,572858,177805,26234,860161,370993,202948,270725,720211,695309,62318,464397,362740,887466,270335,59055,956344,317955,629291,371712,862566,727043,761661,378629,224169,273446,322911,404900,4673,394168,78437,23908,483377,772593,566494,859890,659938,769441,130614,380148,981101,709283,844545,860192,596748,631231,919246,69444,949185,64889,441155,811750,791931,719167,706730,532451,992612,545993,453702,513636,456512,48490,53896,939889,821083,620389,799778,481020,906181,930391,861167,403633,156025,222063,263825,752772,853293,699422,338567,318830,764310,296073,130579,72592,15239,353661,121394,7850,899653,575096,37838,356164,623585,91733,296052,961019,228473,612181,442038,134653,542571,303205,54637,214947,41619,318461,967719,894912,17883,822637,213741,298544,118710,860671,371136,133948,214331,492529,658150,113983,583976,212339,986499,207561,820423,798902,168579,48895,411083,126969,699899,470005,946525,754535,684952,988143,589348,169022,883054,123582,991658,613146,422125,626719,473817,309612,277019,688147,802141,451520,318482,386116,663858,304980,110028,484280,620233,794959,533174,31315,438279,749424,17672,384803,503958,702623,372945,93305,387996,772351,733238,379653,385496,155363,6372,859312,464974,283390,63811,783466,251261,382292,685934,915118,203623,312313,399397,340207,623623,448922,371522,61901,198345,389193,446703,218654,608167,819648,828311,996162,591998,561548,892166,493845,233262,414889,353157,214588,214630,416967,514405,465890,315610,200338,381007,35584,29003,296755,375790,652625,262028,263663,714526,460372,652855,161228,195378,777373,497227,23688,289886,605576,101587,182052,99421,334849,596940,968929,549436,811570,385895,63840,277459,217856,780530,174818,253439,809532,471572,145580,462156,733600,409243,693033,710323,578449,854261,905700,355822,867839,445739,645707,473415,547326,344110,572835,882174,941050,58115,947961,268971,960361,528152,62781,178216,825033,237598,948006,634564,225522,93585,613072,959121,502827,306104,185795,81276,676716,607847,953449,544555,53585,599155,534321,117262,459617,623507,999435,400666,681621,463747,185988,641981,508251,248768,820196,333283,486366,284553,484199,711887,378137,97270,187359,880964,919725,373153,478591,112793,497351,432039,657347,550936,547545,708019,668197,7161,331525,183984,924178,13145,164082,110165,655125,672332,875285}

    Returns: 776.6734482756827

  22. {1000000, 999999, 999998, 999997, 999996, 999995, 999994, 999993, 999992, 999991, 999990, 999989, 999988, 999987, 999986, 999985, 999984, 999983, 999982, 999981, 999980, 999979, 999978, 999977, 999976, 999975, 999974, 999973, 999972, 999971, 999970, 999969, 999968, 999967, 999966, 999965, 999964, 999963, 999962, 999961, 999960, 999959, 999958, 999957, 999956, 999955, 999954, 999953, 999952, 999951, 999950, 999949, 999948, 999947, 999946, 999945, 999944, 999943, 999942, 999941, 999940, 999939, 999938, 999937, 999936, 999935, 999934, 999933, 999932, 999931, 999930, 999929, 999928, 999927, 999926, 999925, 999924, 999923, 999922, 999921, 999920, 999919, 999918, 999917, 999916, 999915, 999914, 999913, 999912, 999911, 999910, 999909, 999908, 999907, 999906, 999905, 999904, 999903, 999902, 999901, 999900, 999899, 999898, 999897, 999896, 999895, 999894, 999893, 999892, 999891, 999890, 999889, 999888, 999887, 999886, 999885, 999884, 999883, 999882, 999881, 999880, 999879, 999878, 999877, 999876, 999875, 999874, 999873, 999872, 999871, 999870, 999869, 999868, 999867, 999866, 999865, 999864, 999863, 999862, 999861, 999860, 999859, 999858, 999857, 999856, 999855, 999854, 999853, 999852, 999851, 999850, 999849, 999848, 999847, 999846, 999845, 999844, 999843, 999842, 999841, 999840, 999839, 999838, 999837, 999836, 999835, 999834, 999833, 999832, 999831, 999830, 999829, 999828, 999827, 999826, 999825, 999824, 999823, 999822, 999821, 999820, 999819, 999818, 999817, 999816, 999815, 999814, 999813, 999812, 999811, 999810, 999809, 999808, 999807, 999806, 999805, 999804, 999803, 999802, 999801, 999800, 999799, 999798, 999797, 999796, 999795, 999794, 999793, 999792, 999791, 999790, 999789, 999788, 999787, 999786, 999785, 999784, 999783, 999782, 999781, 999780, 999779, 999778, 999777, 999776, 999775, 999774, 999773, 999772, 999771, 999770, 999769, 999768, 999767, 999766, 999765, 999764, 999763, 999762, 999761, 999760, 999759, 999758, 999757, 999756, 999755, 999754, 999753, 999752, 999751, 999750, 999749, 999748, 999747, 999746, 999745, 999744, 999743, 999742, 999741, 999740, 999739, 999738, 999737, 999736, 999735, 999734, 999733, 999732, 999731, 999730, 999729, 999728, 999727, 999726, 999725, 999724, 999723, 999722, 999721, 999720, 999719, 999718, 999717, 999716, 999715, 999714, 999713, 999712, 999711, 999710, 999709, 999708, 999707, 999706, 999705, 999704, 999703, 999702, 999701, 999700, 999699, 999698, 999697, 999696, 999695, 999694, 999693, 999692, 999691, 999690, 999689, 999688, 999687, 999686, 999685, 999684, 999683, 999682, 999681, 999680, 999679, 999678, 999677, 999676, 999675, 999674, 999673, 999672, 999671, 999670, 999669, 999668, 999667, 999666, 999665, 999664, 999663, 999662, 999661, 999660, 999659, 999658, 999657, 999656, 999655, 999654, 999653, 999652, 999651, 999650, 999649, 999648, 999647, 999646, 999645, 999644, 999643, 999642, 999641, 999640, 999639, 999638, 999637, 999636, 999635, 999634, 999633, 999632, 999631, 999630, 999629, 999628, 999627, 999626, 999625, 999624, 999623, 999622, 999621, 999620, 999619, 999618, 999617, 999616, 999615, 999614, 999613, 999612, 999611, 999610, 999609, 999608, 999607, 999606, 999605, 999604, 999603, 999602, 999601, 999600, 999599, 999598, 999597, 999596, 999595, 999594, 999593, 999592, 999591, 999590, 999589, 999588, 999587, 999586, 999585, 999584, 999583, 999582, 999581, 999580, 999579, 999578, 999577, 999576, 999575, 999574, 999573, 999572, 999571, 999570, 999569, 999568, 999567, 999566, 999565, 999564, 999563, 999562, 999561, 999560, 999559, 999558, 999557, 999556, 999555, 999554, 999553, 999552, 999551, 999550, 999549, 999548, 999547, 999546, 999545, 999544, 999543, 999542, 999541, 999540, 999539, 999538, 999537, 999536, 999535, 999534, 999533, 999532, 999531, 999530, 999529, 999528, 999527, 999526, 999525, 999524, 999523, 999522, 999521, 999520, 999519, 999518, 999517, 999516, 999515, 999514, 999513, 999512, 999511, 999510, 999509, 999508, 999507, 999506, 999505, 999504, 999503, 999502, 999501, 999500, 999499, 999498, 999497, 999496, 999495, 999494, 999493, 999492, 999491, 999490, 999489, 999488, 999487, 999486, 999485, 999484, 999483, 999482, 999481, 999480, 999479, 999478, 999477, 999476, 999475, 999474, 999473, 999472, 999471, 999470, 999469, 999468, 999467, 999466, 999465, 999464, 999463, 999462, 999461, 999460, 999459, 999458, 999457, 999456, 999455, 999454, 999453, 999452, 999451, 999450, 999449, 999448, 999447, 999446, 999445, 999444, 999443, 999442, 999441, 999440, 999439, 999438, 999437, 999436, 999435, 999434, 999433, 999432, 999431, 999430, 999429, 999428, 999427, 999426, 999425, 999424, 999423, 999422, 999421, 999420, 999419, 999418, 999417, 999416, 999415, 999414, 999413, 999412, 999411, 999410, 999409, 999408, 999407, 999406, 999405, 999404, 999403, 999402, 999401, 999400, 999399, 999398, 999397, 999396, 999395, 999394, 999393, 999392, 999391, 999390, 999389, 999388, 999387, 999386, 999385, 999384, 999383, 999382, 999381, 999380, 999379, 999378, 999377, 999376, 999375, 999374, 999373, 999372, 999371, 999370, 999369, 999368, 999367, 999366, 999365, 999364, 999363, 999362, 999361, 999360, 999359, 999358, 999357, 999356, 999355, 999354, 999353, 999352, 999351, 999350, 999349, 999348, 999347, 999346, 999345, 999344, 999343, 999342, 999341, 999340, 999339, 999338, 999337, 999336, 999335, 999334, 999333, 999332, 999331, 999330, 999329, 999328, 999327, 999326, 999325, 999324, 999323, 999322, 999321, 999320, 999319, 999318, 999317, 999316, 999315, 999314, 999313, 999312, 999311, 999310, 999309, 999308, 999307, 999306, 999305, 999304, 999303, 999302, 999301, 999300, 999299, 999298, 999297, 999296, 999295, 999294, 999293, 999292, 999291, 999290, 999289, 999288, 999287, 999286, 999285, 999284, 999283, 999282, 999281, 999280, 999279, 999278, 999277, 999276, 999275, 999274, 999273, 999272, 999271, 999270, 999269, 999268, 999267, 999266, 999265, 999264, 999263, 999262, 999261, 999260, 999259, 999258, 999257, 999256, 999255, 999254, 999253, 999252, 999251, 999250, 999249, 999248, 999247, 999246, 999245, 999244, 999243, 999242, 999241, 999240, 999239, 999238, 999237, 999236, 999235, 999234, 999233, 999232, 999231, 999230, 999229, 999228, 999227, 999226, 999225, 999224, 999223, 999222, 999221, 999220, 999219, 999218, 999217, 999216, 999215, 999214, 999213, 999212, 999211, 999210, 999209, 999208, 999207, 999206, 999205, 999204, 999203, 999202, 999201, 999200, 999199, 999198, 999197, 999196, 999195, 999194, 999193, 999192, 999191, 999190, 999189, 999188, 999187, 999186, 999185, 999184, 999183, 999182, 999181, 999180, 999179, 999178, 999177, 999176, 999175, 999174, 999173, 999172, 999171, 999170, 999169, 999168, 999167, 999166, 999165, 999164, 999163, 999162, 999161, 999160, 999159, 999158, 999157, 999156, 999155, 999154, 999153, 999152, 999151, 999150, 999149, 999148, 999147, 999146, 999145, 999144, 999143, 999142, 999141, 999140, 999139, 999138, 999137, 999136, 999135, 999134, 999133, 999132, 999131, 999130, 999129, 999128, 999127, 999126, 999125, 999124, 999123, 999122, 999121, 999120, 999119, 999118, 999117, 999116, 999115, 999114, 999113, 999112, 999111, 999110, 999109, 999108, 999107, 999106, 999105, 999104, 999103, 999102, 999101, 999100, 999099, 999098, 999097, 999096, 999095, 999094, 999093, 999092, 999091, 999090, 999089, 999088, 999087, 999086, 999085, 999084, 999083, 999082, 999081, 999080, 999079, 999078, 999077, 999076, 999075, 999074, 999073, 999072, 999071, 999070, 999069, 999068, 999067, 999066, 999065, 999064, 999063, 999062, 999061, 999060, 999059, 999058, 999057, 999056, 999055, 999054, 999053, 999052, 999051, 999050, 999049, 999048, 999047, 999046, 999045, 999044, 999043, 999042, 999041, 999040, 999039, 999038, 999037, 999036, 999035, 999034, 999033, 999032, 999031, 999030, 999029, 999028, 999027, 999026, 999025, 999024, 999023, 999022, 999021, 999020, 999019, 999018, 999017, 999016, 999015, 999014, 999013, 999012, 999011, 999010, 999009, 999008, 999007, 999006, 999005, 999004, 999003, 999002, 999001 }

    Returns: 1650.001627229141


This problem statement is the exclusive and proprietary property of TopCoder, Inc. Any unauthorized use or reproduction of this information without the prior written consent of TopCoder, Inc. is strictly prohibited. (c)2024, TopCoder, Inc. All rights reserved.
This problem was used for: