Problem Statement
Allen is playing a very difficult game. The game has N levels, numbered 0 through N-1 in the order in which they have to be completed. Each level can be described by two parameters: prob[i] and value[i]. The meaning of these parameters is as follows:
- Whenever Allen plays level i, he either completes it or dies. The probability that he completes the level is always prob[i]/1000. (He always tries his best to complete each level.)
- At the end of level i there is a treasure chest that contains value[i] units of gold. When Allen completes the level, he picks up the gold from the chest.
At the beginning of a new game Allen starts in level 0 with no gold. For each valid i, whenever Allen completes level i, he moves on to play level i+1. The game ends as soon as he completes level N-1.
Whenever Allen dies, several things happen in order:
- All the gold that is currently neither in a treasure chest nor carried by Allen is removed from the game.
- All the gold Allen is currently carrying is dropped at the beginning of the level where he died. As soon as Allen reaches this level again, he will be able to pick it all up again, even before attempting to complete the level. (Note that if he dies again before collecting it, this gold will be lost forever.)
- New gold is added to all chests to refill them to the amounts they originally contained.
- Allen is returned to the beginning of level 0. He is carrying no gold.
Hence, after Allen's death there is always at most one pile of gold that is not in a treasure chest. That pile is at the beginning of the level where Allen most recently died.
You are given the
Definition
- Class:
- AToughGame
- Method:
- expectedGain
- Parameters:
- int[], int[]
- Returns:
- double
- Method signature:
- double expectedGain(int[] prob, int[] value)
- (be sure your method is public)
Notes
- Your return value must have an absolute or relative error smaller than 1e-6
Constraints
- prob,value will contain between 2 and 1,000 elements, inclusive.
- prob,value will have the same length.
- Each element of prob,value will be between 1 and 1,000, inclusive.
- The probability of beating all levels without dying is at least 10^-6.
Examples
{1000,500}
{3,4}
Returns: 10.0
This game has 2 levels. Allen will beat level 0 with probability 1, and he will beat level 1 with probability 1/2. Allen will gain 3 units of gold for beating level 0, and 4 units of gold for beating level 1. Here is an example how Allen could have played the game: He completes level 0 and collects 3 gold. He dies in level 1. He drops the 3 gold at the beginning of level 1. Treasure chest in level 0 is refilled to 3 gold. He completes level 0 again and collects the new 3 gold. As he reaches level 1, he collects the 3 gold he dropped when he first died. Again, he dies in level 1. This time he drops 6 gold at the beginning of level 1. Treasure chest in level 0 is refilled again. He completes level 0 for the third time and collects the new 3 gold. As he reaches level 1, he collects the 6 gold he dropped when he last died. He now has 9 gold. This time he completes level 1 and collects the 4 gold from its chest. As Allen completes level 1, the game ends. He is currently carrying 13 gold. Allen will win level 1 exactly once. It can be shown that on average Allen will play (and win) level 0 twice. Thus, the expected amount of gold he will have at the end is 2*3 + 4 = 10.
{1000,1}
{3,4}
Returns: 3003.9999999999977
{500,500,500,500,500}
{1,2,3,4,5}
Returns: 16.626830517153095
In this game there are 5 levels, and Allen can complete each of them with probability 1/2. Here is an example how Allen could have played this game: He completes levels 0, 1, and 2, collecting 1+2+3 = 6 gold. He then dies in level 3 and drops the 6 gold at the beginning of level 3. Starting again, he completes levels 0, 1, 2, and 3. He will collect 1+2+3 gold for completing the first three levels, then 6 gold for reaching level 3, and finally 4 gold for completing level 3. Allen now has a total of 16 gold. He then dies in level 4 and drops the 16 gold at the beginning of level 4. Allen starts the game for the third time, completes level 0 and gains 1 gold. This time, he dies in level 1. The 16 gold that was waiting in level 4 is now lost forever. Instead, Allen just drops the 1 gold he is currently carrying at the beginning of level 1. In his fourth attempt Allen completes all five levels in a row. He ends the game with 1+2+3+4+5 gold collected when completing the levels, and the 1 extra gold that he collected at the beginning of level 1. The probability of this particular playthrough is 1/(2^(16)).
{250,750}
{1000,1}
Returns: 1067.6666666666667
{916,932,927,988,958,996,944,968,917,939,960,965,960,998,920,990,915,972,995,916,902, 968,970,962,922,959,994,915,996,996,994,986,945,947,912,946,972,951,973,965,921,910, 938,975,942,950,900,983,960,998,982,980,902,974,952,938,900,962,920,931,964,974,953, 995,946,946,903,921,923,985,919,996,930,915,991,967,996,911,999,936,1000,962,970,929, 966,960,930,920,958,926,983}
{583,428,396,17,163,815,31,536,175,165,532,781,29,963,331,987,599,497,380,180,780,25, 931,607,784,613,468,140,488,604,401,912,204,785,697,173,451,849,714,914,650,652,338, 336,177,147,22,652,901,548,370,9,118,487,779,567,818,440,10,868,316,666,690,714,623, 269,501,649,324,773,173,54,391,745,504,578,81,627,319,301,16,899,658,586,604,83,520, 81,181,943,157}
Returns: 54204.93356505282
{1,1,1000,1000,1000}
{2,3,1,5,4}
Returns: 15.001999997998
{994,998,991,991,991,991,999,1000,990,995,990,997,998,991,991,990,998,990,996,998,998,990,1000,991,992,992,998,995,993,996,998,990,991,995,1000,996,992,999,994,992,995,990,995,997,1000,995,990,997,998,998,995,991,993,995,996,999,997,997,994,995,992,991,993,992,994,990,990,1000,997,994,1000,990,997,995,990,995,995,997,992,997,990,999,991,994,999,990,999,999,994,990,993,998,995,992,997,991,1000,996,997,998,999,998,994,1000,990,1000,994,992,994,991,1000,994,990,990,995,998,994,992,995,994,999,995,998,1000,990,994,997,998,993,992,993,993,998,993,1000,996,990,996,991,994,997,999,997,990,995,997,999,990,991,1000,998,998,992,998,996,995,992,994,999,992,993,996,993,999,997,998,992,991,993,995,998,994,991,992,996,999,991,996,997,991,993,992,995,998,990,997,993,990,998,992,992,994,995,997,999,992,1000,998,1000,996,990,990,995,997,993,995,992,992,1000,995,990,996,991,995,990,1000,998,993,1000,995,992,995,998,992,995,997,991,990,990,993,993,994,990,998,991,992,992,993,997,998,990,996,994,995,990,998,1000,1000,998,1000,994,997,993,991,993,1000,994,996,992,996,1000,993,990,999,998,996,996,993,998,992,993,996,995,1000,998,997,999,992,997,995,996,995,994,1000,998,994,998,997,998,996,994,993,997,990,994,994,994,990,994,1000,997,992,999,996,992,1000,994,1000,991,995,995,995,993,992,999,993,992,998,998,992,997,990,994,990,993,993,999,991,999,999,992,999,998,994,998,998,999,996,999,991,992,1000,993,990,1000,998,992,1000,997,997,1000,995,1000,990,998,990,997,998,996,1000,993,993,998,990,991,991,992,1000,1000,992,995,993,995,999,990,992,993,991,1000,993,991,997,991,994,999,995,998,995,990,990,994,998,992,997,998,990,990,991,993,1000,1000,994,1000,995,999,992,993,999,992,1000,1000,992,998,991,997,999,992,990,991,994,997,996,998,996,997,990,990,993,995,992,999,998,996,994,992,999,990,995,998,994,993,999,994,998,996,993,992,995,1000,993,990,998,994,990,996,996,995,998,990,993,998,990,996,998,1000,991,998,993,994,996,999,994,998,993,992,997,997,1000,993,996,997,995,992,995,999,997,993,999,991,993,1000,993,994,998,996,999,992,993,995,994,991,992,994,991,997,998,999,997,990,999,999,997,996,992,997,990,990,996,997,994,993,995,1000,1000,993,992,993,991,996,1000,990,995,997,1000,996,1000,992,996,992,997,991,997,999,991,999,995,993,992,996,1000,998,998,997,1000,999,999,991,991,990,992,995,1000,992,991,996,993,994,1000,990,997,999,991,997,992,998,999,999,992,990,993,995,992,995,998,993,994,990,1000,990,992,995,990,998,993,992,998,990,994,991,997,996,994,993,990,995,997,997,994,999,996,997,990,997,993,995,991,996,997,993,993,993,993,993,999,994,998,1000,996,999,999,991,990,990,994,1000,991,998,997,1000,997,1000,998,991,994,1000,990,996,991,1000,992,993,998,998,990,995,1000,997,999,1000,993,990,990,997,990,994,1000,999,994,992,997,1000,991,993,994,995,992,997,996,992,993,997,998,990,990,991,991,998,994,996,993,998,994,992,992,998,998,998,990,990,997,993,994,994,997,997,994,996,992,996,990,990,999,993,996,997,992,996,997,994,1000,1000,998,997,998,990,999,990,995,992,990,997,998,996,990,996,1000,997,999,995,993,990,991,991,1000,992,999,1000,991,996,992,998,993,990,993,995,993,990,993,999,999,990,996,992,994,991,995,998,997,992,998,1000,990,990,997,991,996,999,994,999,1000,993,992,997,995,996,998,997,998,992,1000,995,998,990,998,1000,1000,993,993,995,992,994,990,993,994,990,998,996,991,995,992,997,990,997,995,992,998,990,995,998,991,997,992,991,992,991,999,993,999,990,997,992,993,1000,997,992,990,997,991,990,999,998,990,998,993,994,1000,990,993,995,990,990,995,998,997,996,990,993,999,996,998,996,994,1000,992,1000,998,993,1000,991,1000,990,991,996,993,994,998,993,997,991,991,997,996,994,996,1000,995,999,1000,994,996,999,998,994,998,997,993,998,997,993,996,999,998,995,993,998,990,994,993,993,990,990,996,991,994,994,991,997,998,997,998,991,999,990,998,990,992,994,994,993,998,998,995,1000,997,995,994,999,999,993,999,1000,997,993,999,994,992,995,993,999,994,990,990,1000,992,992,1000,998,998,1000,999,991,992,994,1000,992,998,993,994,997,994,995,998,995,995,994,995,995,996,992,990,998,997,994,998,997,991,991,992,991,990,997,993,995,998,993,996,999,999,991,995}
{618,754,193,987,956,651,412,120,777,679,324,294,300,822,140,453,503,697,530,996,390,502,867,429,251,503,97,97,406,818,96,267,348,975,792,654,814,958,367,262,80,977,597,58,682,230,733,557,864,304,381,893,246,670,496,311,648,917,972,311,488,18,288,863,927,907,329,207,756,93,821,771,33,868,768,640,689,887,902,821,573,589,465,282,968,908,527,387,182,259,675,838,660,591,151,744,971,593,382,716,179,821,465,203,315,574,338,403,135,867,249,171,889,716,697,311,582,274,145,522,75,43,701,60,440,528,432,860,154,196,122,455,114,533,130,571,917,351,422,626,573,194,16,747,591,872,832,86,409,685,382,373,230,872,819,690,657,164,629,362,955,112,629,729,370,22,10,328,701,915,881,646,252,939,122,193,350,11,413,126,844,320,963,997,415,499,825,535,34,888,654,522,640,352,453,944,928,515,136,598,196,134,701,242,330,556,451,202,339,852,958,61,368,272,407,706,686,137,551,508,23,117,745,903,504,157,443,940,588,950,101,658,657,956,621,278,322,474,384,309,99,127,407,582,822,455,373,172,67,18,116,891,885,504,624,774,361,873,802,560,865,501,29,666,357,599,16,584,817,940,590,936,651,77,810,641,931,752,259,787,475,204,432,848,25,410,914,785,284,73,415,478,133,364,806,648,149,982,24,99,434,107,57,689,863,200,275,901,67,423,53,268,894,644,960,189,575,616,794,879,589,927,407,273,20,775,546,725,259,413,929,254,27,375,383,893,63,244,155,439,277,754,430,511,808,485,712,379,227,289,912,468,80,827,970,755,57,298,322,596,345,519,788,614,144,984,309,397,904,463,491,694,549,966,101,700,872,633,510,805,314,202,548,845,538,258,421,540,570,347,132,270,792,434,313,766,738,853,506,611,478,103,708,664,333,363,409,665,842,558,487,285,146,195,23,858,456,918,526,875,827,967,128,48,270,234,997,452,122,672,612,799,677,159,555,363,313,737,183,484,750,361,846,832,593,890,363,829,32,95,65,714,432,862,89,750,532,617,501,960,178,241,515,629,813,364,297,517,426,23,832,344,332,75,861,669,912,664,205,717,406,283,649,42,973,672,142,204,465,845,278,761,815,62,893,961,479,442,159,513,134,200,696,642,706,232,132,489,840,856,964,545,152,59,789,450,916,505,740,970,397,920,452,397,677,182,1000,896,663,603,15,603,944,447,644,348,293,667,93,968,919,240,240,65,14,200,210,961,751,709,879,327,642,27,956,620,99,280,699,65,113,289,335,351,178,541,921,607,2,583,766,527,81,736,480,674,898,63,424,108,387,907,579,500,305,211,900,776,320,8,750,177,952,172,375,336,992,519,251,596,650,853,762,349,484,378,892,588,108,198,540,251,797,272,604,144,337,316,212,446,937,585,345,810,540,400,617,99,651,572,180,632,642,588,543,634,590,531,602,261,841,226,340,162,915,54,433,77,829,172,511,332,612,637,898,456,591,97,468,346,44,204,680,527,898,942,918,121,503,351,66,48,918,959,587,845,780,362,490,258,572,20,240,397,34,286,75,817,536,107,195,396,460,635,992,195,27,170,807,843,548,511,734,130,782,774,602,609,935,190,612,20,853,209,43,248,125,489,85,345,136,993,122,883,604,452,731,508,758,942,240,143,108,155,958,681,731,230,73,399,65,693,776,551,509,119,399,779,497,637,215,40,348,283,71,705,870,514,229,403,611,901,612,936,702,125,156,287,409,948,128,368,902,723,70,626,228,355,498,57,161,385,614,490,441,966,53,225,861,105,137,240,831,469,191,223,321,417,219,613,547,725,649,701,363,597,920,589,102,176,374,456,485,752,333,168,353,242,214,720,158,337,273,405,559,911,871,853,14,904,175,325,949,911,842,693,950,133,559,583,429,179,283,51,403,456,607,975,315,518,24,84,343,804,718,167,259,644,177,533,714,299,103,257,737,31,51,71,391,928,757,32,762,239,331,251,872,508,394,34,709,653,720,774,267,483,170,788,400,795,519,95,327,370,286,831,831,653,831,574,541,881,787,374,212,689,359,687,578,50,158,732,183,458,1000,13,574,892,538,876,375,12,700,7,61,407,631,726,698,517,259,773,525,975,655,39,3,755,69,353,898,449,912,18,17,440,965,241,469,489,792,993,686,520,666,134,12,939,323,795,335,898,505,150,131,307,571,684,269,241,406,991,104,637,494,944,735,801,308,811,736,326,62,510,364,436,516,754,995,696,741,236,510,238,649,419,460,363,673,671}
Returns: 616420.7693908726
{413,906,533,385,459,726,754,291,422,690}
{528,843,731,105,177,982,35,178,3,875}
Returns: 5369.094992108521
{633,370,721,772,977,479,621,273,661,847}
{491,595,416,992,106,854,141,109,173,984}
Returns: 5838.500590172363
{583,536,651,968,951,278,881,978,668,337}
{262,641,766,194,123,570,823,620,318,936}
Returns: 6050.596071859011
{414,802,929,830,942,885,605,576,314,583}
{685,563,851,288,931,550,93,435,172,109}
Returns: 6042.26372706318
{501,483,874,269,659,379,335,730,395,317}
{196,851,805,728,549,731,191,722,92,913}
Returns: 6451.713818551294
{988,1000,937,1000,899,950,996,908,880,988,927,908,956,985,934,977,875,937,954,880,927,892,983,952,922,983,962,901,1000,979,884,932,989,897,911,991,966,878,966,947,875,949,914,881,990,988,927,878,924,976,965,897,995,968,924,897,901,898,993,889,902,991,880,948,991,964,962,873,997,954,887,876,931,967,895,911,942,930,897,978,923,978,871,981,945,989,945,969,916,935,937,906,931,887,945,886,914,922,928,887}
{258,480,890,439,654,750,762,682,72,515,663,493,801,726,278,110,360,904,163,353,701,342,475,749,910,43,550,100,409,834,480,389,123,483,802,506,859,712,244,907,189,470,988,999,449,922,286,725,86,163,383,555,484,825,600,855,542,351,131,388,773,922,570,520,390,731,433,574,896,513,988,624,960,66,487,986,961,745,533,556,440,793,649,164,842,727,297,99,335,882,539,8,227,666,213,438,464,38,63,412}
Returns: 65786.05546353516
{997,896,932,937,888,940,945,900,946,920,910,905,927,907,955,895,977,872,959,928,965,985,896,956,968,901,976,878,986,976,985,914,970,949,940,964,974,872,875,911,915,880,997,911,883,932,960,884,944,951,992,981,922,940,889,941,972,910,881,922,891,887,926,946,973,901,983,927,895,897,943,942,931,943,939,882,924,974,900,912,978,922,989,871,899,971,952,920,966,946,966,985,972,887,911,989,991,921,960,983}
{895,264,450,156,18,725,372,445,462,713,752,894,627,418,976,387,540,292,30,741,793,635,378,922,536,550,140,458,321,524,792,309,136,972,664,666,784,586,344,334,895,444,770,563,233,448,133,480,639,810,958,545,903,971,666,776,101,586,686,854,440,896,723,584,448,147,78,622,451,464,36,812,598,957,208,954,387,705,353,336,506,644,669,920,76,332,749,597,812,16,395,589,409,435,279,659,520,293,982,481}
Returns: 63151.22219519137
{999,924,911,898,951,891,993,879,968,982,894,911,976,931,958,897,988,904,990,970,965,937,875,950,948,983,900,941,911,936,980,974,908,991,886,952,917,924,953,873,951,906,951,885,892,915,956,906,912,991,937,935,992,906,960,897,933,880,909,927,929,954,910,953,884,982,937,946,1000,894,975,875,988,941,892,875,947,871,942,878,957,892,886,951,885,977,984,881,960,971,921,884,976,963,932,904,890,951,991,870}
{154,84,114,663,303,186,250,482,287,423,983,382,894,838,947,706,347,116,61,753,374,326,70,554,395,540,402,43,546,616,760,416,855,25,1000,261,797,692,741,742,601,506,867,955,163,314,500,368,131,921,344,124,767,892,265,864,466,677,834,635,410,935,125,420,688,746,452,761,351,754,886,10,294,221,307,725,574,371,519,849,744,374,384,381,52,821,288,390,902,557,256,404,821,291,914,367,244,503,100,627}
Returns: 58005.64360367406
{985,971,917,954,872,978,964,922,896,897,885,981,970,979,949,880,925,904,874,886,977,988,886,882,991,896,880,912,973,875,939,883,928,950,955,958,879,925,901,901,919,972,898,951,986,999,954,937,928,874,930,915,927,919,921,968,919,928,891,908,897,976,981,959,968,948,951,948,920,964,912,886,897,916,896,904,997,894,877,913,950,970,912,935,897,937,903,989,990,963,885,954,893,931,940,983,975,968,923,917}
{754,93,647,834,335,303,826,331,361,41,239,384,208,281,152,369,165,826,152,986,354,608,310,809,589,537,478,141,927,321,500,658,354,829,244,606,987,211,395,651,426,257,644,830,385,178,473,418,545,271,53,981,655,763,829,277,236,434,295,196,939,511,75,408,469,694,886,929,236,154,174,408,374,752,222,520,498,761,290,480,676,870,942,386,374,330,28,765,755,662,937,434,630,491,639,564,490,697,715,592}
Returns: 58432.84495685526
{939,905,876,931,910,998,885,947,961,887,976,952,879,952,947,917,908,955,910,959,973,906,933,960,931,954,981,883,890,886,886,998,929,948,929,995,938,941,950,912,969,946,925,910,978,959,942,891,911,895,892,978,927,952,899,899,943,879,954,910,876,979,989,952,971,880,936,883,879,872,914,905,893,897,993,970,895,966,928,974,953,967,932,918,989,910,997,994,985,915,942,904,913,970,951,872,961,994,932,907}
{583,60,690,591,512,800,34,631,500,676,425,976,108,855,32,6,488,370,645,945,693,490,346,655,750,742,231,619,410,250,383,400,270,754,548,677,936,947,14,868,217,503,982,252,923,507,336,454,676,817,76,137,314,263,858,743,870,486,985,181,823,645,969,415,290,198,223,16,120,438,774,880,371,494,925,472,493,75,645,145,655,309,95,336,35,638,99,668,572,919,567,306,631,507,833,208,268,353,643,293}
Returns: 58290.954392939195
{997,999,994,995,999,1000,996,998,997,999,994,1000,998,994,996,998,1000,994,997,997,994,999,998,1000,1000,997,998,996,995,997,998,995,998,1000,996,999,999,1000,996,996,996,994,1000,995,996,999,1000,999,1000,1000,998,994,996,994,994,1000,996,999,1000,998,999,999,995,1000,994,994,998,999,997,999,997,995,997,998,998,996,996,997,998,997,994,996,999,999,1000,998,999,998,995,996,1000,997,997,997,996,998,999,995,1000,995,1000,998,994,999,998,994,998,996,996,996,995,996,995,999,994,1000,999,1000,998,996,998,994,999,1000,995,997,998,994,994,997,998,999,994,997,995,997,999,996,1000,998,995,1000,994,1,997,995,994,1000,1000,996,997,995,994,998,999,996,997,1000,1000,1000,994,995,999,998,996,994,996,998,995,995,1000,994,998,1000,996,1000,999,995,997,998,1000,995,1000,998,995,995,995,999,997,995,995,995,999,998,1000,997,998,998,996,1000,996,1000,999,997,1000,997,995,995,999,994,998,995,998,995,997,1000,997,997,994,994,1000,999,994,995,996,998,997,994,997,997,996,994,995,1000,998,999,996,996,998,996,1000,1000,996,995,998,998,998,995,995,994,998,1000,1000,999,998,994,996,997,995,998,995,995,995,996,996,994,994,999,998,1000,995,998,995,1000,1000,994,998,997,999,995,995,999,994,999,996,1000,1000,998,996,994,996,996,996,994,998,998,999,997,997,995,995,995,995,1000,996,1000,999,995,999,995,999,1000,995,997,996,1000,994,999,997,997,999,995,999,1000,998,999,999,995,996,995,994,994,999,999,996,1000,1000,997,998,994,998,1000,997,1000,999,995,1000,995,1000,999,1000,997,998,996,1000,998,994,1000,998,996,997,996,996,996,998,994,996,1000,997,998,999,998,1000,1000,994,995,1000,1000,999,1000,996,997,1000,996,994,998,1000,1000,997,1000,996,994,997,1000,996,1000,999,996,995,1000,995,997,994,998,998,1000,997,998,998,998,994,994,999,999,998,998,999,996,996,994,994,998,997,997,994,999,994,996,998,1000,994,999,1000,998,1000,995,995,995,999,1000,999,1000,998,996,996,997,998,997,998,997,997,996,999,1000,1000,998,996,1000,995,996,994,994,1000,1000,1000,998,997,1000,996,998,994,995,999,997,996,996,1000,995,1000,999,995,996,996,998,999,996,994,996,994,996,999,995,997,998,994,998,994,999,996,997,997,1000,995,994,998,995,997,997,998,996,995,995,998,997,994,996,996,999,995,995,1000,999,995,995,994,995,996,996,994,1000,995,997,996,994,995,998,998,994,1000,998,996,1000,998,995,994,1000,998,997,999,996,997,999,995,999,998,1000,995,997,1000,998,1000,994,998,995,995,998,1000,998,999,1000,996,997,999,999,995,995,998,996,995,995,997,996,999,1000,994,994,998,1000,1000,994,996,998,996,999,998,994,994,996,998,995,997,998,997,996,999,1000,997,994,999,999,994,994,995,997,997,1000,995,999,995,999,998,1000,997,997,997,999,998,1000,999,999,995,999,995,997,998,997,997,995,998,1000,999,1000,999,999,999,995,998,998,996,1000,997,998,998,999,996,998,994,994,996,994,998,1000,999,1000,996,995,994,996,998,1000,996,995,1000,995,1000,994,999,999,998,1000,1000,994,998,998,995,997,996,997,1000,996,999,999,996,999,997,999,1000,995,994,998,1000,999,994,995,995,998,994,994,1000,1000,996,996,1000,999,996,1000,998,997,998,997,998,996,1000,998,998,996,999,999,995,997,999,1000,995,995,998,995,1000,995,995,999,1000,1000,996,995,996,995,996,998,994,999,995,994,997,996,997,995,994,1000,999,998,996,994,998,997,995,999,998,998,997,997,999,996,994,997,999,1000,994,996,1000,996,995,994,994,995,999,995,998,995,996,994,995,998,997,1000,998,1000,999,999,995,1000,997,997,999,995,997,996,997,998,996,998,995,998,999,1000,996,998,994,1000,994,998,995,994,994,999,995,999,996,1000,995,994,1000,1000,995,994,994,998,994,999,996,998,1000,998,998,994,997,996,1000,996,998,1000,1000,999,995,994,999,995,998,994,996,996,997,1000,995,999,997,998,998,996,997,996,996,1000,996,997,994,1000,996,997,999,1000,997,998,995,999,1000,996,998,999,998,997,997,1000,995,996,997,1000,995,994,998,997,996,997,996,996,996,994,1000,996,1000,995,998,998,995,995,996,1000,1000,999,994,996,1000,1000,998,997,999,994,996,999,999,999,994,995,997,996,995,997,994,996,994,994,1000,999,995,999,997,994,994,998,997,999,998,999,996,998,994,997,997,999,997,994,1000,1000,996,995,998,999,996,998,999,995,995,998,995,995,997,996,997,994,998,995,999,997,996,996,999,995,997,997,1000,998,998,996,1000,999,994,1000,996,994,999,999}
{83,366,131,957,133,199,704,588,887,217,105,170,903,765,72,438,712,721,74,216,747,390,966,211,943,530,199,552,719,865,252,316,494,286,81,880,826,490,286,659,541,977,631,688,930,180,309,537,212,977,42,258,981,22,711,418,274,104,715,777,241,235,653,859,127,284,268,454,432,740,793,112,650,643,975,791,978,792,98,150,699,108,256,386,778,396,978,166,319,869,79,933,174,444,235,795,949,255,395,299,43,799,570,582,198,878,958,830,192,768,622,471,967,119,146,273,480,679,789,328,990,287,654,969,346,523,317,774,70,37,163,204,656,852,396,840,595,870,355,865,64,408,242,220,94,817,882,791,298,183,418,138,921,610,154,475,53,860,873,101,340,949,64,995,415,856,437,56,582,681,2,340,993,410,766,715,660,979,791,499,184,436,972,84,998,855,377,980,247,86,419,445,186,576,426,647,110,240,442,325,384,838,154,10,92,370,956,214,210,758,26,379,953,500,207,60,135,27,185,509,968,201,153,796,702,805,710,648,925,840,198,436,111,192,87,118,249,536,292,494,975,345,488,830,656,536,615,757,303,592,734,380,30,954,343,676,995,111,47,616,433,95,227,895,413,8,959,820,437,816,987,684,833,883,991,903,201,622,738,310,809,205,960,258,955,474,962,593,769,94,39,160,844,492,740,189,387,320,915,864,275,30,248,349,528,625,682,793,225,822,751,192,823,677,306,455,160,149,578,752,172,263,797,995,503,250,831,314,722,525,443,518,833,418,789,821,132,346,713,579,217,502,282,362,158,204,705,486,385,759,492,10,882,75,241,309,638,272,931,541,111,234,979,741,696,391,592,788,765,7,156,209,891,897,492,658,297,836,813,865,385,849,122,88,452,220,638,373,351,331,511,437,897,370,768,618,272,540,923,117,558,660,172,745,803,929,397,446,673,206,487,162,862,366,646,25,896,156,400,408,873,516,27,138,983,517,964,27,350,887,592,946,872,615,435,846,231,275,442,509,194,500,520,301,646,537,884,890,535,896,127,700,57,920,121,865,980,519,992,575,914,393,467,13,759,849,794,514,289,683,332,202,25,680,621,114,137,994,443,737,83,44,900,962,125,589,74,700,613,327,154,771,197,711,237,240,683,665,198,76,306,542,98,837,615,962,646,140,980,162,97,812,994,84,825,948,665,707,505,603,373,98,479,449,994,191,422,565,480,608,860,431,443,695,433,338,974,533,79,682,10,882,429,16,44,909,829,320,879,45,321,681,421,547,840,451,222,137,640,26,581,620,679,532,567,511,258,129,202,531,764,102,427,295,718,608,181,615,700,761,82,647,915,713,744,539,300,552,725,310,117,93,471,458,909,131,375,198,553,285,271,266,890,378,237,970,77,165,609,533,386,336,444,780,621,918,552,946,726,632,342,680,447,253,410,348,76,764,763,375,428,923,45,691,214,903,936,283,839,791,132,514,535,112,991,118,408,975,936,738,641,111,208,439,613,841,394,901,148,993,447,886,453,853,568,133,553,540,439,51,198,573,746,469,290,20,851,191,838,296,771,336,334,617,317,247,240,122,377,275,955,894,841,869,228,468,585,256,505,919,272,407,91,290,476,153,334,966,752,74,259,542,870,208,213,922,333,743,116,629,729,580,857,797,174,72,211,891,324,296,439,991,2,932,344,372,469,201,183,200,767,331,258,398,382,722,412,108,648,296,947,740,960,546,660,274,861,421,796,373,522,525,722,833,923,36,51,105,336,413,729,927,312,206,362,591,453,239,650,6,692,14,376,515,679,430,793,381,132,840,630,936,708,982,200,693,990,587,217,92,741,293,37,174,394,65,987,163,124,466,336,861,492,993,244,778,814,179,716,143,897,312,197,270,724,440,933,298,5,788,646,961,242,833,385,901,108,92,640,988,485,52,925,267,481,828,100,449,77,839,599,297,870,204,639,877,509,637,173,402,48,312,74,320,383,551,561,369,381,227,365,544,81,438,524,339,560,365,966,127,678,219,235,280,942,828,830,467,127,742,596,590,167,679,563,969,32,774,407,749,974,360,450,936,563,954,750,145,405,705,350,926,294,800,210,466,805,264,704,605,41,85,786,327,307,887,133,355,977,177,608,994,726,774,368,161,590,172,835,375,29,460,508,553,281,898,325,661,819,422,830,604,647,126,963,265,500,288,653,280,761,569,744,945,51,838,988,636,987,499,982,275,589,259,957,646,142,73,259,836,139,363,234,673,48,682,967,787,294,725,979,862,777,926,578,700,686,947,15,961}
Returns: 686175.7290040253
{994,1000,999,997,997,995,996,995,999,997,994,994,1000,997,996,994,996,997,999,997,1000,996,999,998,998,998,995,998,999,998,1000,998,998,994,994,997,996,1000,995,999,996,997,994,999,995,1000,1000,998,997,997,1000,999,994,1000,997,998,995,999,995,998,996,999,1000,996,996,1000,995,998,994,1000,994,1000,1000,994,1000,1000,996,998,1000,994,998,995,996,998,998,994,997,999,1000,999,995,996,998,998,994,994,1000,995,999,999,996,999,998,998,996,994,994,995,995,997,995,994,996,998,994,1000,1000,998,999,999,997,994,994,995,997,1000,997,998,998,995,996,998,994,994,1000,998,995,997,999,994,1000,994,999,999,996,995,994,994,999,997,1000,996,996,996,996,997,995,994,994,1000,997,997,995,995,1000,995,994,995,994,996,999,995,995,996,995,999,995,995,1000,999,999,994,995,994,994,999,995,998,994,995,997,996,997,999,995,997,997,995,999,994,1000,994,1000,999,994,999,999,995,997,994,997,997,999,995,998,997,999,998,999,998,996,997,998,998,997,994,997,999,999,994,999,996,1000,998,1000,997,995,1000,996,997,994,994,999,997,994,997,997,995,996,998,997,997,995,998,994,1000,996,997,996,995,997,994,998,996,998,1000,994,997,997,1000,999,998,995,994,995,1000,994,995,994,999,1000,1000,995,1000,996,997,1000,996,1000,999,995,994,995,995,996,997,999,995,996,998,994,995,997,998,996,1000,997,996,998,996,995,999,995,1000,999,999,1000,999,995,994,1000,998,996,994,998,997,996,995,994,997,995,995,1000,998,996,994,999,998,995,994,994,997,996,997,994,998,996,996,997,999,1000,999,996,1000,999,994,1000,997,996,995,995,996,994,997,999,994,1000,996,1000,994,997,1000,994,994,1000,999,995,999,1000,997,996,996,1000,996,999,997,994,997,998,997,995,999,994,997,994,999,995,996,999,997,995,994,997,997,997,999,994,999,1000,995,997,998,997,999,994,998,994,998,997,999,997,997,996,998,1000,994,996,994,1000,998,994,994,994,996,997,995,998,1000,994,997,995,1000,995,999,1000,1000,997,997,996,1000,1000,996,994,997,997,996,994,996,1000,995,1000,1000,1000,996,997,999,996,996,995,998,998,994,994,999,997,994,997,994,995,995,997,999,996,998,1000,999,995,994,994,995,994,998,995,998,998,997,995,996,995,995,997,996,994,997,1000,998,996,999,994,998,996,995,995,996,998,998,996,995,996,995,999,998,994,998,1000,995,995,994,999,994,998,998,998,999,999,1000,998,997,994,994,994,999,994,995,996,998,995,995,998,997,995,999,998,999,994,1000,996,995,998,1000,997,998,997,1000,999,996,996,997,995,998,997,1000,996,995,1000,1000,995,995,998,1000,995,994,998,1000,995,998,997,994,1000,996,996,995,994,999,997,998,999,994,996,997,996,1000,998,998,998,999,1000,998,994,1000,999,998,994,996,1000,1000,996,1000,998,1000,998,997,995,997,995,998,999,999,999,997,996,997,994,995,1000,998,997,996,995,999,998,995,995,996,996,997,999,1000,998,994,998,995,997,996,995,995,999,998,995,994,997,1000,995,995,998,994,999,996,998,995,995,996,995,1000,994,996,1000,996,999,995,999,998,994,996,996,1000,996,995,999,997,1000,996,996,997,995,999,996,997,995,1000,995,996,996,998,1000,1000,999,996,995,995,997,996,999,1000,994,996,995,999,997,997,995,995,997,1000,995,999,995,994,999,999,999,997,997,995,996,1000,998,1000,995,995,997,996,994,995,995,998,994,995,1000,995,994,1000,996,999,998,997,998,998,994,996,999,996,999,999,994,997,995,997,998,996,998,999,995,1000,997,997,997,994,994,999,999,996,994,995,999,1000,998,998,994,998,998,999,999,994,996,999,1000,999,994,995,995,999,994,995,998,994,999,994,995,998,998,997,994,999,1000,995,995,1000,998,996,998,998,995,998,998,1000,996,997,997,996,998,998,994,1000,998,995,994,998,999,1000,995,995,995,999,997,995,999,1000,994,999,999,998,1000,997,994,995,994,996,999,997,1000,997,997,997,995,1000,994,998,999,998,997,999,999,998,999,997,994,999,1000,995,999,996,996,995,994,998,995,997,998,996,1000,999,999,995,995,999,997,1000,998,999,994,1000,1000,1000,996,994,997,998,994,997,996,995,997,1000,997,995,996,995,995,998,997,1000,996,995,995,994,999,997,999,995,996,997,999,995,998,999,994,998,1000,999,997,999,994,1000,1000,996,997,994,997,997,994,1000,997,1000,1,998,996,996,997,997,995,999,1000,994,998,997,994,997,999,1000,1000,997,998,995,1000,998,998,996,995,1000,994,997,1000,1000,994,998,998,996,994,995,1000,1000,996,995,1000,999,994,994,997,995}
{984,412,321,422,829,219,723,31,968,4,664,291,15,63,684,78,388,895,725,772,122,848,622,106,207,847,806,963,14,254,263,725,359,123,497,820,442,229,81,521,158,226,422,910,286,217,523,125,662,826,824,685,732,600,750,727,798,195,146,438,880,305,657,845,358,805,996,388,455,838,193,381,182,921,148,546,601,224,262,291,105,319,464,312,956,594,707,391,522,488,884,959,462,403,156,132,630,927,890,438,624,522,758,358,688,404,69,184,176,693,55,382,884,288,685,841,348,80,535,908,629,317,400,84,211,906,618,612,368,420,532,967,784,420,106,424,234,442,510,471,886,675,356,821,136,913,399,173,914,856,701,671,103,186,665,221,25,154,898,441,974,599,545,35,412,414,596,810,757,487,697,405,652,50,129,992,253,184,2,928,306,968,119,316,763,362,673,939,252,480,684,876,965,330,61,379,445,452,262,281,296,152,808,263,66,169,309,825,421,698,235,684,264,661,415,619,614,988,112,523,949,473,582,485,141,449,212,294,348,125,705,663,970,947,276,791,272,738,504,644,404,699,303,478,306,577,453,654,443,435,296,787,381,490,446,616,989,431,867,748,432,490,244,627,198,258,338,636,99,956,960,253,579,372,237,555,677,206,105,193,669,913,337,133,782,419,961,115,350,311,623,758,420,145,307,711,171,579,839,32,434,904,762,277,227,391,510,360,534,590,268,360,439,321,575,859,355,693,479,286,325,849,42,11,263,559,79,602,582,995,283,733,859,181,297,755,62,710,896,788,391,264,138,537,981,362,255,720,529,551,99,111,442,951,143,735,214,641,397,662,594,912,135,197,529,795,960,980,24,607,593,681,814,468,728,514,200,890,449,739,465,552,2,717,60,341,140,822,136,568,894,711,64,37,372,24,298,296,113,588,310,977,580,576,359,587,640,893,527,524,239,263,807,337,32,87,36,475,430,202,77,861,395,49,21,613,287,638,104,168,291,903,665,879,232,698,769,858,86,743,16,501,141,275,693,639,530,30,635,711,836,461,83,708,566,737,384,897,537,221,594,464,663,523,913,327,188,214,411,315,158,502,696,782,781,953,3,554,418,396,689,730,91,715,268,542,805,129,941,895,449,898,11,694,736,164,746,337,463,723,974,993,346,130,168,411,823,479,870,42,531,538,9,205,582,736,130,863,389,643,567,339,568,175,315,964,318,750,761,217,813,6,406,379,312,514,453,118,144,102,430,700,201,35,47,718,335,315,118,317,869,795,702,923,460,618,570,363,723,752,743,114,346,25,113,107,911,119,90,178,264,441,830,770,86,651,807,928,260,894,451,16,719,477,74,780,767,792,569,601,228,782,203,807,392,166,393,913,456,892,488,519,19,51,481,400,261,555,5,994,633,430,182,118,226,481,672,218,504,441,719,895,782,433,167,751,612,742,135,833,246,418,521,73,490,227,566,161,541,785,481,241,843,524,522,651,638,284,967,699,611,930,165,109,968,368,205,370,366,731,761,654,329,319,378,387,181,70,790,807,73,965,862,79,374,787,400,587,563,67,390,68,760,921,174,140,203,662,724,602,325,784,413,615,530,911,662,479,443,790,388,289,163,269,467,173,48,465,284,167,608,5,54,40,400,313,766,557,203,392,501,695,335,463,402,354,715,105,738,941,149,271,382,15,363,639,477,862,516,313,248,477,279,786,726,928,65,426,587,488,688,480,470,245,534,741,895,111,316,561,333,301,629,876,80,367,801,248,337,826,994,712,291,274,125,392,55,623,920,433,47,758,340,783,756,496,713,753,862,179,98,92,383,626,837,511,836,460,764,220,426,8,251,46,901,62,135,128,38,830,567,47,695,277,13,430,964,883,933,787,265,601,183,316,131,376,784,930,52,157,536,592,960,780,855,320,873,411,380,903,752,546,95,455,851,675,187,420,716,820,387,535,501,123,317,560,479,516,213,297,435,330,473,531,159,364,655,37,381,542,912,752,322,792,381,503,484,193,679,456,431,753,516,588,97,393,394,15,583,870,524,999,501,373,343,800,654,500,522,314,288,143,909,620,149,594,645,128,345,822,603,40,369,447,371,185,647,410,225,136,704,725,954,697,327,967,905,475,152,366,343,260,721,450,68,386,377,216,246,47,343,684,573,812,910,532,231,208,11,227,556,297,305,692,2,644,563,90,744,908,345,744,254,593,880,570,255,146,626,642,741,688,177,678,164,142,98,300,463,430,752,900,344,696,400,810,105,240,679,279,352,946,70,442,132,515,116,56,395,736}
Returns: 676864.9664403663
{996,995,996,995,996,998,1000,996,999,998,994,999,998,995,997,995,1000,997,999,997,995,997,996,999,1000,996,999,995,999,998,997,994,994,998,999,998,994,999,1000,999,999,1000,995,997,997,997,995,999,995,999,999,999,994,998,999,1000,996,998,996,994,999,998,996,1000,997,994,997,999,996,997,997,994,995,998,998,999,998,999,998,996,994,996,1000,999,997,994,994,996,999,999,996,996,994,997,994,995,994,997,995,999,998,997,994,995,997,994,999,995,997,998,1000,999,997,998,998,997,999,999,997,995,1000,995,1000,998,998,996,999,996,998,998,999,997,1000,994,994,996,995,999,998,997,997,998,994,999,1000,995,996,995,1000,999,994,994,994,999,995,999,998,997,997,995,997,998,996,998,995,1000,999,999,994,1000,996,997,995,1000,999,994,994,999,994,999,996,998,996,994,1000,994,1000,996,996,994,999,1000,1000,998,998,994,998,996,995,995,996,998,999,996,999,997,998,994,994,1000,999,996,999,998,998,998,994,998,1000,998,999,998,997,1000,996,998,996,996,994,1000,999,994,995,994,1000,1000,995,997,1000,999,996,995,997,997,999,997,996,997,998,996,998,998,997,998,996,998,999,997,998,994,998,1000,996,1000,999,998,999,997,997,996,999,996,998,995,994,997,994,1000,1000,996,1000,997,994,995,996,995,1000,998,995,999,996,996,999,999,1000,999,997,994,999,1000,996,999,999,995,994,999,996,995,995,994,1000,996,999,998,996,1000,1000,995,998,997,997,1000,994,998,998,994,997,999,994,995,995,995,998,998,1000,995,994,994,999,997,999,995,997,995,998,997,994,998,995,999,998,996,1000,999,998,996,1000,999,996,1000,996,994,999,1000,1000,996,1000,1000,995,997,994,998,996,996,1000,1000,995,1000,995,998,1000,997,994,995,997,994,997,997,998,996,998,994,996,998,994,999,996,999,997,995,995,994,996,998,997,995,995,998,997,999,995,994,998,996,994,997,998,996,996,999,995,1000,995,1000,1000,994,996,999,999,997,996,995,997,996,999,995,996,997,998,995,998,999,1000,997,996,1000,998,997,1000,996,995,998,999,997,994,999,998,999,996,1000,996,999,995,995,996,994,994,994,995,996,996,994,995,996,995,996,997,999,1000,994,996,999,994,1000,996,996,999,995,994,996,998,996,996,999,997,997,1000,999,996,995,996,995,996,995,995,994,998,998,994,998,997,997,1000,998,998,995,998,997,998,998,998,1000,996,997,998,999,999,1000,995,999,994,997,995,999,995,1000,996,995,995,997,1,998,994,999,994,1000,995,997,999,995,995,998,995,997,997,996,998,997,997,994,995,1000,995,998,996,995,998,995,997,1000,995,998,994,1000,994,997,996,995,998,996,998,1000,996,995,994,999,995,996,998,1000,998,995,999,998,998,1000,998,997,996,999,994,997,995,996,997,995,996,998,994,998,999,998,1000,998,996,994,994,995,1000,995,994,999,996,997,999,996,997,999,998,999,995,996,995,996,1000,995,997,999,997,997,997,998,1000,1000,997,997,1000,1000,1000,999,1000,1000,998,999,999,1000,998,994,1000,997,995,997,995,998,1000,999,994,998,1000,998,1000,995,994,995,996,998,998,994,994,999,994,996,995,999,997,999,998,999,999,997,997,994,999,994,998,998,997,998,994,996,998,996,995,1000,994,998,999,997,994,998,1000,999,994,1000,995,997,995,995,997,994,996,994,995,997,995,999,996,1000,994,1000,994,998,994,997,996,999,997,998,996,994,998,1000,999,1000,995,995,994,997,1000,995,994,997,999,1000,994,996,995,1000,997,994,997,994,997,998,994,996,995,996,999,998,995,1000,1000,1000,995,999,998,1000,998,998,1000,995,1000,997,997,995,995,998,995,1000,999,997,1000,999,994,995,998,996,997,998,997,997,995,994,1000,999,994,995,997,996,996,996,998,995,1000,999,995,996,996,1000,995,994,999,995,997,1000,999,997,1000,998,997,994,999,994,999,997,999,999,995,999,996,996,1000,1000,994,999,995,998,1000,995,999,999,994,994,998,996,1000,999,995,996,995,998,997,994,994,996,999,997,994,994,997,994,997,998,998,995,1000,996,1000,999,995,998,996,1000,995,998,998,996,997,997,999,999,995,998,998,997,996,998,998,997,994,996,1000,1000,995,994,994,996,998,997,999,1000,997,995,1000,998,999,997,997,994,994,995,995,996,996,998,998,998,994,998,998,999,998,999,998,997,1000,997,999,1000,994,994,997,998,994,995,997,997,995,1000,996,1000,998,997,997,994,995,1000,997,998,995,998,999,1000,998,1000,999,996,994,998,999,999,998,998,994,999,994,1000,998,1000,999,999,995,1000,1000,999,996,995,995,996,994,995,994,996,1000,997,999,994,998,998}
{333,171,507,467,335,803,791,344,536,182,840,291,522,551,930,680,453,14,913,357,91,776,979,701,606,408,382,950,132,458,686,210,328,559,231,324,437,177,86,233,470,260,694,522,166,365,781,644,336,275,898,642,28,716,103,327,727,591,890,530,455,998,485,446,190,436,972,100,526,809,567,674,852,209,531,733,614,42,846,444,444,724,781,466,995,58,928,566,374,399,93,929,921,875,677,785,972,303,847,237,877,850,804,119,266,187,968,293,21,656,710,54,895,902,584,204,49,562,631,924,41,850,477,780,960,277,373,76,467,364,255,308,470,892,210,622,54,151,410,69,61,682,723,894,419,204,709,301,899,787,649,904,508,824,573,562,118,47,24,415,255,641,381,708,200,498,193,438,676,789,869,934,438,322,462,244,17,621,60,590,732,239,460,224,817,610,386,730,197,641,512,180,993,336,937,601,318,966,560,870,315,693,15,519,649,91,447,902,889,723,409,859,292,764,613,298,506,712,80,93,643,343,490,318,962,450,164,105,138,352,168,371,732,789,491,220,997,650,112,98,598,903,26,670,200,196,2,954,88,896,916,446,181,711,974,880,860,643,76,741,983,741,831,889,377,11,471,450,853,889,15,652,487,867,543,426,531,250,398,410,784,497,434,448,707,298,182,809,848,348,957,122,388,764,471,469,739,231,470,148,169,258,307,388,355,370,83,685,641,668,224,499,506,965,887,755,420,600,626,975,838,140,112,896,547,374,521,98,959,430,402,529,242,352,445,793,369,206,630,733,240,617,588,140,85,673,928,394,215,270,452,461,46,344,857,939,18,863,582,808,679,133,890,93,724,746,164,930,236,450,648,396,718,332,556,61,755,963,543,401,318,572,33,99,776,905,773,795,667,133,318,19,157,78,829,879,886,72,684,598,623,943,957,112,720,12,684,777,885,452,235,693,175,92,807,257,472,497,199,374,875,215,621,144,618,147,190,967,133,358,184,743,823,37,853,244,973,964,795,810,956,582,460,203,588,694,369,875,8,893,982,888,981,43,3,434,860,542,84,237,761,607,511,118,676,575,481,653,356,3,7,163,799,421,311,258,104,730,813,750,233,573,470,45,988,474,257,74,113,210,70,371,977,634,151,200,739,143,456,508,231,94,13,44,70,717,451,210,652,497,321,73,764,592,763,496,511,553,358,539,144,525,713,109,155,144,443,341,701,546,736,360,18,246,608,841,987,196,302,314,432,943,4,216,31,697,208,521,978,42,615,186,617,206,397,753,354,69,45,190,55,557,744,455,13,663,465,343,308,119,474,858,50,629,994,765,571,683,147,974,77,183,74,105,692,503,382,926,76,150,647,345,18,902,740,306,473,134,170,217,562,80,453,546,910,934,784,812,571,16,913,479,461,725,177,219,887,617,114,569,284,769,942,271,696,500,443,505,935,680,492,728,533,57,534,125,846,513,819,483,662,691,79,865,695,187,656,630,187,381,784,202,658,32,837,457,507,953,902,793,791,453,918,715,991,717,9,264,16,7,337,732,965,350,951,864,456,386,695,220,391,183,139,429,114,103,924,828,847,284,620,378,117,877,427,813,672,967,597,688,33,1000,459,373,382,644,322,52,987,204,327,496,727,147,543,689,564,789,190,407,10,925,925,503,745,45,522,930,510,753,129,554,360,228,531,365,141,849,461,41,792,607,92,695,708,557,281,263,928,367,986,226,359,962,593,259,590,365,505,967,118,114,488,81,941,32,715,351,592,730,366,921,589,919,938,126,231,532,124,532,397,673,244,486,739,617,717,657,225,456,7,791,520,485,785,433,94,75,827,446,248,653,260,954,511,339,374,773,942,959,138,474,948,432,940,970,155,991,834,946,704,293,765,464,135,246,802,847,643,290,431,264,80,951,334,513,554,715,873,142,838,664,739,428,104,843,810,703,681,54,293,174,639,599,654,710,3,525,670,11,313,98,180,217,62,541,751,280,279,563,527,357,125,838,8,91,947,408,320,860,638,884,879,12,528,499,960,644,271,250,809,698,360,857,404,40,963,783,886,681,760,334,952,515,323,722,248,780,382,20,875,936,6,153,683,820,323,405,913,741,921,451,107,642,464,576,952,584,392,597,828,587,787,942,435,280,623,523,793,930,648,292,292,147,96,869,229,962,263,172,461,66,756,809,361,670,867,869,285,848,93,827,126,248,314,528,343,731,494,598,70,855,83,145,509,96,470,367,840,373,943,483,302,740,626,464,954,83,755,168,814,269,488,855,785,490,161,483,775,464}
Returns: 698660.886522313
{999,997,996,998,999,997,997,998,999,997,999,997,1000,998,998,998,999,996,996,996,1000,1000,996,999,996,999,998,1000,997,997,1000,997,999,997,999,999,1000,997,998,996,998,1000,997,999,1000,998,999,998,1000,997,998,998,998,1000,1000,996,997,997,999,998,998,998,997,1000,998,999,998,997,996,996,997,996,999,997,996,999,1000,1000,998,997,997,1000,997,996,1000,1000,1000,1000,996,997,996,1000,999,998,997,996,996,998,998,996,997,999,999,1000,999,996,997,998,999,1000,999,999,996,999,996,996,999,997,1000,1000,998,997,1000,1000,997,996,996,1000,998,998,999,1000,998,997,998,999,996,1000,999,998,996,997,1000,997,999,1000,996,1000,1000,1000,999,1000,1000,997,998,1000,1000,1000,998,999,998,1000,997,997,1000,999,998,999,999,997,1000,1000,997,999,999,997,998,997,997,996,1000,1000,997,999,996,998,998,998,1000,1000,997,999,996,999,996,997,999,996,999,997,1000,996,1000,997,996,999,999,1000,998,998,998,996,996,999,996,998,998,999,997,998,999,996,998,999,1000,1000,998,997,1000,998,997,996,996,1000,996,1000,1000,999,996,996,996,997,999,997,999,997,996,1000,999,996,996,996,998,998,996,996,1000,997,1000,1000,1000,997,998,996,996,999,996,998,999,998,997,996,997,997,998,999,998,998,999,997,996,999,996,996,997,997,997,1000,999,998,999,1000,999,998,997,997,996,996,997,997,997,1000,1000,996,999,996,998,998,998,998,998,999,997,996,998,997,998,997,999,996,996,999,998,996,998,996,997,996,1000,996,998,1000,996,998,998,999,998,998,1000,999,997,996,996,1000,997,997,996,997,999,1000,996,997,996,998,999,997,999,999,997,999,996,1000,1000,996,999,1000,998,997,1000,997,999,1000,996,998,1000,998,1000,999,999,998,997,998,1000,999,997,996,996,1000,996,996,996,999,997,999,1000,998,1000,998,997,998,998,996,998,1000,999,996,999,999,997,1000,999,999,998,998,999,1000,997,996,998,999,999,1000,997,996,1000,998,1000,999,996,999,997,998,1000,999,998,998,998,998,996,998,1000,996,1000,999,998,1000,998,1000,1000,998,998,998,999,999,999,999,998,996,999,1000,1000,997,998,996,1000,999,997,997,998,998,999,1000,997,999,999,1000,998,999,996,999,1000,996,998,997,999,996,998,996,999,999,996,996,1000,999,1000,999,997,998,998,997,1000,999,999,999,996,1000,999,998,999,999,996,4,996,996,1000,996,999,999,998,999,996,998,999,1000,997,1000,1000,998,999,997,997,996,1000,996,996,1000,999,998,998,1000,997,996,998,1000,996,999,996,999,1000,997,999,999,998,997,996,999,1000,997,997,998,996,998,996,996,1000,1000,1000,999,996,996,997,10,1000,1000,1000,996,998,999,1000,998,996,1000,998,996,996,998,999,997,998,999,1000,999,999,999,996,997,996,999,999,999,996,996,998,999,999,996,1000,997,996,999,999,998,996,997,999,997,997,996,996,998,1000,997,998,1000,999,996,1000,998,996,997,998,998,996,996,1000,997,999,1000,1000,998,1000,1000,996,997,1000,999,997,999,1000,997,999,998,997,999,1000,999,999,999,997,1000,998,996,997,996,997,996,1000,997,999,998,998,1000,999,998,1000,998,997,998,999,1000,999,997,997,999,997,996,999,1000,998,997,1000,1000,997,996,996,1000,1000,997,998,998,998,1000,998,1000,998,997,997,996,1000,998,999,1000,1000,997,1000,999,1000,1000,999,999,1000,1000,1000,999,998,999,998,996,1000,999,1000,998,999,998,998,999,1000,998,1000,998,998,997,999,998,996,999,1000,998,996,998,1000,999,998,998,998,996,998,999,999,997,999,996,996,997,999,1000,1000,996,998,1000,998,998,996,997,997,998,998,996,997,996,999,996,1000,1000,997,998,996,996,998,997,997,997,997,1000,996,999,999,997,997,998,996,1000,997,996,999,998,998,996,1000,999,997,999,1000,999,996,996,999,996,999,998,1000,996,997,999,996,998,996,998,1000,999,996,997,999,1000,999,996,996,997,1000,997,1000,996,1000,996,1000,1000,998,998,997,996,998,996,998,1000,997,999,998,1000,998,996,999,998,998,998,999,1000,998,997,999,996,999,997,999,999,998,998,997,996,997,1000,999,999,998,999,1000,997,997,997,999,999,996,997,996,996,1000,997,999,1000,997,996,998,1000,999,998,999,999,998,1000,999,999,999,1000,998,996,998,997,999,997,1000,998,999,1000,996,1000,998,1000,1000,1000,997,999,1000,1000,996,997,999,996,997,999,997,999,998,998,998,998,1000,996,1000,999,1000,1000,999,997,997,998,998,998,998,1000,997,996,998,999,1000,1000,998,999,998,997,1000,998,1000,998,998,998,999,998,996,1000,996,998,996,999,1000,999,1000,996,1000,999,999,999,996,998,997,996,999,998,996,998,999,999}
{163,117,149,295,972,206,874,105,395,547,889,768,400,136,775,369,159,546,185,571,205,724,192,499,170,196,683,328,276,771,844,832,77,835,842,37,915,217,936,318,157,461,596,941,586,28,694,111,229,605,449,27,512,215,623,331,866,291,398,579,830,193,495,78,230,933,316,468,258,1,360,973,119,296,703,88,474,90,73,796,52,874,946,135,685,696,128,1000,487,307,479,637,70,17,810,180,485,690,486,924,63,684,929,774,417,897,57,447,692,276,668,552,540,281,914,646,414,856,302,709,523,356,127,271,167,773,817,587,264,333,459,839,585,205,694,350,561,623,216,161,600,210,378,154,493,661,774,98,863,234,203,602,574,678,158,992,714,352,787,558,22,269,329,429,648,707,179,600,718,887,59,268,478,884,260,670,702,611,558,118,672,231,188,729,260,809,235,680,543,337,882,451,969,562,233,624,274,169,842,280,251,954,654,952,974,611,802,375,290,597,585,987,218,380,993,262,381,4,357,447,788,569,46,242,45,671,653,257,568,300,784,845,502,985,371,40,791,221,441,893,320,314,385,447,114,849,70,962,332,902,605,769,209,981,154,308,144,426,964,495,843,672,702,541,831,327,245,747,634,515,339,609,635,286,881,760,967,211,167,893,759,447,125,850,754,667,407,454,586,261,240,524,1,110,102,742,902,62,594,673,399,963,398,320,963,728,810,21,384,453,162,391,477,54,369,251,377,209,976,192,842,697,304,485,164,330,756,546,216,797,878,54,618,656,531,135,261,649,405,715,223,241,145,275,623,34,586,755,110,257,899,269,506,71,27,659,555,825,407,614,902,709,817,255,149,503,188,633,317,210,317,524,101,429,755,318,73,255,558,495,375,344,226,445,522,521,887,898,624,2,731,257,748,841,755,518,121,685,119,262,597,331,796,394,147,826,756,957,101,70,593,322,553,972,416,522,653,212,763,315,431,575,542,783,492,644,272,960,122,353,399,996,344,547,116,837,10,208,876,266,290,476,761,430,804,929,977,622,208,823,990,212,275,195,253,82,354,770,50,819,648,579,698,238,927,112,250,493,109,576,888,166,696,542,385,227,129,871,370,714,16,275,662,272,574,345,580,473,823,119,989,952,790,555,801,969,438,360,799,944,143,675,943,891,253,72,780,455,695,139,148,394,646,715,182,987,994,471,503,789,698,129,567,583,177,44,379,158,544,306,168,765,841,754,153,710,439,526,242,567,393,844,353,915,884,743,65,346,830,377,475,720,365,325,457,295,170,83,7,408,580,509,994,842,972,577,423,885,189,189,288,343,664,183,163,460,455,900,987,769,637,854,875,406,343,108,391,285,306,926,439,865,906,172,820,925,595,688,537,890,49,590,143,767,562,20,786,675,1000,393,91,291,107,577,722,274,62,801,274,855,984,252,125,371,496,502,26,444,567,923,486,880,593,170,483,146,71,711,607,446,292,80,535,999,199,235,628,132,905,944,548,160,416,610,982,863,795,318,999,563,298,173,56,402,83,204,420,485,674,175,582,927,718,702,296,712,524,923,12,509,489,836,807,208,812,123,416,31,811,901,567,490,752,397,661,361,378,964,746,105,172,223,883,818,999,362,221,919,967,778,549,243,206,331,661,105,827,435,592,218,469,109,673,40,708,883,419,241,98,145,417,520,746,132,797,895,162,258,329,963,573,868,888,326,6,879,850,550,250,911,952,576,206,726,300,444,260,762,495,566,33,528,297,553,279,472,868,786,766,663,362,476,674,329,603,993,435,823,607,586,949,92,990,466,822,73,649,405,574,770,675,615,804,903,144,715,922,176,292,1000,375,159,588,61,272,750,403,63,919,943,275,595,64,389,270,116,577,862,567,411,891,262,207,393,778,237,851,821,913,871,566,207,283,117,851,231,664,817,592,528,303,245,170,546,446,36,693,520,539,305,222,294,786,474,876,842,223,89,934,868,641,451,381,764,484,427,874,587,324,195,774,397,633,11,693,490,351,293,27,593,186,468,31,37,668,36,345,311,724,286,274,149,965,901,769,496,900,482,813,261,37,668,812,785,196,92,700,310,384,891,666,574,252,877,836,837,537,732,732,265,842,837,101,634,783,374,496,720,850,407,53,593,271,525,38,253,806,446,108,715,689,735,661,682,824,377,330,414,991,517,444,260,25,102,238,585,847,515,711,529,780,545,264,71,813,202,707,403,337,942,767,490,394,854,982,13,695,239,737,569,476,778,263,151,771,214,590,433,831,37,838,316,228,181,704,512,649,164,710,711}
Returns: 767868.8646531303
{997,999,996,999,1000,998,999,1000,999,1000,999,998,996,999,1000,1000,999,998,999,998,996,998,999,998,996,996,998,999,1000,1000,1000,1000,1000,996,998,997,1000,999,999,997,1000,999,998,999,1000,999,999,997,996,999,996,1000,1000,1000,999,996,996,996,998,1000,997,996,1000,996,996,1000,996,998,1000,997,999,998,999,997,998,1000,998,997,998,998,997,996,1000,996,1000,998,996,999,996,998,1000,997,997,999,1000,998,1000,997,997,1000,996,998,997,996,999,996,1000,998,996,997,998,996,998,999,999,997,1000,998,997,996,999,996,999,1000,1000,999,996,997,997,998,999,998,1000,1000,996,999,997,998,997,1000,998,997,996,997,999,996,999,1000,996,999,1000,999,1000,996,1000,997,997,996,996,996,1000,998,996,997,998,1000,998,997,996,996,999,997,996,997,999,999,998,996,998,996,996,998,1000,999,1000,997,997,1000,1000,996,997,996,1000,1000,999,996,998,997,998,999,999,997,997,998,996,997,1000,998,1000,996,999,998,998,997,996,1000,997,1000,1000,998,999,998,997,998,996,998,998,999,1000,999,996,1000,1000,1000,997,1000,997,999,999,1000,998,997,997,1000,998,996,998,1000,1000,999,997,997,997,997,998,997,996,996,998,999,998,997,999,998,996,999,999,999,996,999,1000,996,998,996,997,996,998,996,997,998,997,998,996,998,998,997,997,998,999,999,997,1000,998,999,996,996,997,997,998,1000,997,997,997,997,997,996,998,1000,1000,996,997,998,997,996,997,999,996,1000,999,998,999,1000,999,996,1000,1000,999,999,1000,998,998,998,1000,996,997,1000,1000,1000,996,996,999,999,998,998,996,998,997,996,996,1000,999,997,998,999,1000,997,997,999,999,999,997,997,999,997,1000,997,1000,997,997,997,997,996,999,999,1000,997,1000,998,999,997,997,996,996,1000,996,999,1000,998,999,998,998,1000,1000,997,1000,996,999,999,998,996,1000,997,999,996,996,998,998,1000,996,998,999,997,996,996,996,996,999,998,997,998,1000,999,999,999,1000,999,999,997,997,998,997,999,998,999,998,1000,996,996,997,1000,1000,1000,998,997,996,999,997,998,997,996,997,996,999,997,1000,998,996,1000,999,996,997,998,998,999,999,999,998,996,997,996,999,996,998,996,998,1000,1000,998,996,998,1000,998,997,998,998,997,1000,998,996,999,999,999,1000,997,998,999,1000,1000,1000,999,997,1000,997,996,996,999,1000,1000,999,996,998,996,998,999,999,996,996,999,997,998,997,997,999,998,998,997,999,1000,997,998,998,996,999,1000,1000,998,999,999,1000,999,996,999,996,996,996,996,997,997,996,996,1000,999,999,996,999,998,999,996,997,998,998,996,996,999,1000,998,999,998,997,996,996,997,999,998,1000,1000,998,999,998,997,998,996,1000,997,996,999,999,999,997,1000,1000,999,1000,1000,997,998,1000,997,1000,997,997,1000,996,996,996,998,1000,999,1000,1000,998,997,999,999,996,996,998,998,997,999,998,996,996,996,996,997,998,999,1000,997,996,998,997,1000,998,1000,1000,997,1000,998,998,996,996,997,997,996,997,998,999,997,997,1000,1000,997,996,1000,997,1000,996,1000,999,996,996,999,999,1000,997,998,997,996,1000,998,998,996,999,998,999,997,997,996,997,998,997,998,999,1000,998,1000,997,997,1000,1000,999,996,998,997,996,999,996,997,998,997,998,997,996,997,997,997,996,997,997,999,1000,999,1000,996,996,998,999,996,996,998,1000,998,997,997,996,1000,997,998,996,997,998,999,998,998,998,998,996,996,996,999,996,1000,999,1000,998,998,996,1000,1000,997,996,998,1000,997,996,1000,996,998,998,999,997,996,997,997,999,998,998,1000,998,1000,997,996,999,999,998,999,998,996,1000,997,1000,996,999,996,997,999,997,1000,998,998,996,998,998,999,999,996,999,998,996,998,996,1000,997,996,996,999,997,999,999,1000,1000,996,998,997,1000,997,997,999,997,1000,999,996,1000,999,999,999,997,996,998,997,998,997,1000,998,996,998,999,999,998,1000,999,999,997,999,996,1000,997,999,999,9,2,1000,998,996,998,999,996,999,997,998,996,997,996,997,997,998,1000,998,1000,1000,999,998,997,998,997,996,999,996,1000,998,996,999,998,997,999,999,997,996,998,1000,998,996,1000,997,998,998,997,997,996,998,998,999,1000,997,996,998,1000,999,996,996,996,996,998,1000,996,996,996,997,1000,998,996,1000,1000,998,998,998,997,998,999,997,1000,996,997,999,997,1000,1000,1000,1000,999,996,996,998,996,1000,997,998,1000,997,998,996,999,1000,997,996,1000,998,997,997,996,1000,996,999,999,998,998,996,997,999,997,996,996,1000,996,1000,997,998,1000,998,997,1000,999,997,999,999,997,996,997,997,999,998,998,998,999,1000,997,999,997}
{821,488,408,830,698,459,44,436,114,442,476,505,433,750,887,873,749,673,289,191,852,754,41,378,328,666,891,650,384,33,265,552,92,590,858,795,452,968,996,459,138,308,870,311,789,599,491,565,476,333,140,397,304,629,167,930,166,453,210,197,339,925,305,818,959,27,900,706,388,163,486,172,180,185,407,216,618,452,431,602,788,416,843,594,774,74,113,837,826,290,722,944,294,686,311,803,722,293,169,459,719,601,976,754,149,27,863,502,737,20,77,140,390,249,999,232,430,317,800,121,429,493,772,315,565,749,262,922,212,268,161,522,11,194,123,444,801,61,33,273,610,798,748,812,361,644,834,413,85,619,804,770,195,408,387,786,820,660,454,129,288,734,566,400,589,874,516,665,58,617,868,230,573,36,262,156,282,44,148,974,242,565,725,484,390,865,45,292,931,684,679,973,597,139,853,350,200,515,666,394,574,196,879,704,306,977,741,308,616,902,535,835,371,609,798,676,512,872,697,877,68,664,652,908,577,606,99,349,923,101,249,789,554,803,775,928,559,338,662,931,339,328,829,584,452,870,757,713,738,570,37,600,51,120,685,853,712,196,76,309,334,144,588,54,821,517,365,574,121,37,156,400,820,966,820,322,755,172,952,420,616,433,24,686,949,616,620,998,37,426,583,544,910,355,399,568,132,315,699,523,50,180,565,240,950,140,212,754,883,341,711,821,6,714,648,930,925,356,996,872,893,24,26,481,698,563,776,252,747,155,464,898,142,287,238,806,520,241,825,525,52,748,955,139,272,152,955,354,339,49,486,642,932,947,256,633,219,879,433,193,246,293,632,342,656,780,587,221,856,358,58,816,632,105,63,46,726,916,316,102,92,11,567,682,372,645,649,810,637,122,193,518,597,861,354,543,288,708,387,559,694,173,596,183,929,503,985,152,320,807,948,603,231,521,449,376,500,566,437,585,160,485,722,512,471,692,104,17,393,733,327,280,312,98,367,646,223,714,605,760,587,711,684,966,789,429,251,180,430,927,296,12,711,450,528,993,811,399,78,133,462,358,814,915,911,656,753,33,55,727,359,858,835,295,991,640,893,13,429,933,105,723,175,590,834,965,192,933,650,692,837,393,841,411,22,999,241,127,43,569,763,549,98,372,589,961,248,312,105,85,454,414,555,988,383,479,856,855,860,330,178,963,201,960,710,776,196,258,485,432,144,716,265,243,199,653,283,43,256,64,26,344,733,153,398,313,917,968,297,497,983,332,59,102,400,434,302,373,205,41,387,269,540,268,100,228,933,236,202,258,18,774,140,990,793,490,599,603,48,188,534,734,306,606,998,579,464,886,379,391,338,7,632,504,498,684,710,816,78,827,676,409,754,771,917,573,702,885,471,92,153,78,709,49,106,962,559,766,869,128,954,770,362,57,477,806,527,687,978,13,783,557,520,331,173,738,159,102,749,478,932,608,799,603,894,979,682,223,233,512,438,251,268,928,821,522,628,537,86,102,15,556,684,476,729,94,994,864,599,404,372,898,11,81,78,218,497,788,96,352,753,969,479,395,8,750,587,592,374,888,541,943,193,214,264,298,418,451,716,248,751,726,329,320,601,309,182,585,926,382,160,819,664,669,187,780,787,812,664,7,963,268,375,761,436,325,472,404,16,543,638,554,4,595,130,781,463,971,247,538,503,483,674,223,141,845,284,989,864,867,238,989,234,941,642,226,751,596,585,84,709,841,131,911,979,924,714,733,484,888,428,299,619,43,920,169,52,11,918,489,117,576,979,424,497,912,682,977,17,143,323,35,128,355,158,70,120,365,370,856,179,536,234,943,150,915,397,386,280,782,808,412,268,486,594,300,661,69,72,707,21,787,211,110,298,78,42,804,546,920,922,117,448,808,113,116,115,772,811,98,287,955,640,587,358,267,626,391,618,565,837,505,744,596,198,313,826,689,491,565,149,795,149,79,578,30,282,998,589,279,316,650,935,829,709,813,467,189,511,189,866,462,908,447,896,682,515,48,343,501,864,381,942,508,463,462,502,219,813,521,865,504,3,379,550,783,820,390,693,854,871,92,396,613,830,438,704,241,794,612,199,666,696,19,660,242,840,950,301,601,965,836,863,595,637,734,241,100,429,897,368,180,77,837,819,804,720,300,945,850,433,949,404,618,463,378,606,456,993,253,959,367,764,23,790,695,647,648,466,44,40,220,540,630,41,185,743,139,475,116,237,10,204,641,821,781,610,151,750,738,797,416,368,693,841,64,57,111,369,164}
Returns: 797254.5472138032
{999,999,997,1000,998,999,997,1000,998,1000,996,996,999,998,1000,999,996,1000,1000,7,998,1000,998,996,998,999,998,997,997,1000,999,997,999,999,996,999,998,997,996,996,996,999,998,997,1000,997,998,997,996,997,1000,999,997,998,996,999,998,999,1000,996,996,998,1000,996,996,998,999,996,999,1000,1000,996,996,996,999,997,999,997,999,998,996,1000,997,996,999,999,998,1000,996,997,999,998,1000,1000,998,999,998,1000,999,1000,1000,1000,996,999,999,1000,999,1000,998,999,999,998,999,1000,999,999,998,996,997,1000,999,997,996,999,996,1000,998,999,998,1000,1000,1000,998,997,1000,996,997,997,998,999,999,997,996,998,996,997,996,999,999,999,996,998,996,996,997,999,997,998,997,997,996,998,996,998,996,997,998,999,1000,998,1000,997,998,1000,998,1000,998,998,996,999,999,998,999,997,1000,997,996,996,997,1000,998,997,1000,999,998,998,1000,997,996,998,999,1000,998,997,996,1000,998,1000,998,996,996,999,997,997,998,999,999,997,999,996,998,999,999,997,998,999,997,1000,996,999,997,998,999,1000,997,999,1000,997,996,997,1000,997,996,999,998,997,999,997,996,1000,999,996,998,999,998,997,1000,998,999,997,1000,997,999,1000,1000,996,997,999,999,997,999,997,997,1000,998,999,1000,998,996,997,998,998,996,997,998,997,999,1000,997,999,996,999,997,999,996,996,996,996,1000,997,997,1000,997,999,999,999,999,998,999,998,997,999,999,998,1000,996,1000,999,996,999,998,998,1000,999,1000,998,998,996,998,999,1000,996,996,1000,1000,997,998,1000,999,997,1000,999,1000,998,999,999,996,996,996,1000,998,998,1000,997,1000,998,1000,1000,998,998,996,998,1000,998,997,997,997,997,997,997,996,999,997,1000,1000,999,997,998,996,997,996,999,999,997,999,996,1000,999,996,997,998,999,998,999,999,999,1000,998,1000,1000,999,996,999,999,1000,996,997,1000,998,998,997,998,997,999,999,998,999,997,999,999,996,1000,996,996,998,997,997,1000,996,999,999,998,996,998,997,1000,1000,997,997,1000,996,1000,999,998,1000,1000,1000,996,997,998,998,997,996,1000,997,998,997,998,999,996,999,999,998,999,998,999,1000,996,997,997,996,1000,998,1000,996,998,996,999,997,998,999,998,1000,997,996,999,998,999,997,1000,997,999,996,997,998,996,999,1000,999,996,998,997,999,1000,998,998,999,996,996,998,997,997,997,997,996,996,998,1000,999,998,998,996,998,999,998,1000,996,1000,1000,997,996,996,998,999,996,996,999,999,1000,998,999,997,999,996,996,996,996,1000,998,996,1000,1000,1000,997,1000,996,996,997,999,999,997,997,999,996,997,997,1000,1000,999,999,999,996,999,998,999,997,998,996,999,998,998,996,998,997,998,996,999,997,999,997,997,999,997,996,996,1000,1000,999,996,996,997,999,996,998,997,1000,999,1000,1000,997,996,1000,996,997,999,997,1000,996,997,996,1000,996,996,999,999,999,997,997,996,999,997,998,997,999,1000,998,997,998,997,999,998,999,1000,996,996,998,998,1000,996,997,1000,999,999,997,997,1000,996,996,1000,998,999,999,996,996,999,996,998,996,997,996,996,997,1000,998,998,999,997,996,1000,998,999,997,996,996,996,997,998,997,996,998,997,997,1000,998,1000,1000,998,1000,999,996,999,997,996,998,997,998,1000,996,997,997,1000,1000,999,996,1000,998,1000,996,997,996,997,999,1000,1000,1000,998,997,1000,998,998,999,997,996,997,998,1000,999,1000,997,999,998,998,998,1000,996,997,997,996,1000,997,997,997,996,998,998,996,1000,997,996,999,996,1000,996,997,1000,999,999,1000,998,1000,998,999,997,999,1000,1000,997,999,999,996,997,998,1000,998,998,997,997,997,996,999,996,999,996,999,1000,997,997,998,997,996,996,999,998,999,998,998,998,997,1000,999,996,996,999,998,1000,998,999,998,996,1000,1000,996,1000,997,1000,996,1000,996,999,998,997,1000,998,998,1000,998,1000,999,997,999,1000,1000,996,1000,1000,999,997,1000,997,999,1000,999,996,998,1000,997,996,999,1000,999,997,999,1000,997,996,999,997,998,998,999,998,999,998,998,998,998,996,997,997,997,1000,999,999,997,1000,998,999,996,1000,997,998,997,998,997,1000,996,997,998,999,998,999,997,999,1000,999,996,997,999,1000,999,998,999,999,997,997,997,998,996,999,997,997,997,998,1000,1000,996,996,998,998,1000,997,997,999,997,1000,999,998,999,999,999,999,998,999,996,997,996,996,998,996,1000,998,998,999,997,996,998,997,1000,999,997,996,996,999,996,999,997,999,998,998,999,5,999,999,1000,996,999,999,998,999,996,998,999,996,1000,998,999,998,998,996,996,999,1000,999,999,997,999,1000,1000,997,997}
{967,5,282,28,946,714,321,487,863,716,586,58,156,866,74,829,510,67,369,506,768,562,163,449,137,748,433,76,72,755,592,373,120,123,520,154,537,868,86,997,647,118,693,505,796,269,390,643,203,335,314,435,208,732,583,229,192,250,255,57,937,399,661,378,287,605,233,618,780,958,916,495,335,373,427,39,175,28,876,633,909,888,751,110,117,9,839,184,818,16,454,8,926,857,245,704,185,478,911,61,77,540,436,417,902,691,778,948,556,167,550,203,550,733,887,736,435,8,576,121,133,300,531,464,641,915,847,767,174,772,37,158,110,869,475,11,39,741,767,497,788,649,518,926,554,622,944,519,194,855,874,953,243,217,942,62,491,775,197,601,786,320,946,864,278,838,334,236,509,763,116,494,558,637,59,759,6,477,651,539,586,765,137,225,212,470,407,729,568,942,961,702,515,797,946,914,397,186,307,918,736,922,179,91,897,8,961,508,68,52,985,873,283,862,242,894,290,336,461,110,781,356,693,116,853,16,678,570,635,947,456,154,661,913,118,850,937,117,103,547,634,854,156,964,1,261,938,358,383,894,251,261,234,787,51,783,577,471,732,614,711,145,625,960,838,822,333,51,911,805,283,778,245,313,849,248,319,389,485,732,778,511,592,576,854,468,250,125,280,133,511,601,332,752,714,183,780,227,130,249,412,669,308,855,247,202,711,22,747,559,552,378,117,568,270,974,275,984,769,890,165,492,342,351,887,882,200,646,563,557,657,88,896,569,322,640,205,303,95,567,41,800,365,684,620,443,587,336,966,410,314,238,73,853,848,699,394,245,906,556,670,701,77,356,438,391,394,928,561,327,43,520,773,927,100,89,558,747,172,188,608,699,22,88,776,877,552,491,683,844,20,158,93,859,993,299,736,63,344,408,548,85,530,497,148,870,527,368,980,799,24,633,729,319,921,703,509,377,752,832,849,929,371,634,678,652,129,176,366,814,832,878,351,903,951,966,69,247,911,150,682,361,820,540,580,139,635,533,758,361,627,580,934,192,944,259,728,479,251,72,286,691,690,715,515,294,861,365,457,190,151,708,432,619,463,976,266,572,347,309,294,327,604,98,879,224,653,807,847,121,351,958,595,317,501,586,610,877,964,479,817,420,180,977,448,414,887,891,128,956,2,379,463,807,973,247,708,209,360,198,43,599,67,997,532,905,438,418,141,545,352,58,57,574,609,840,114,724,106,52,369,196,769,300,717,158,752,636,979,877,147,406,74,280,363,106,734,525,341,610,706,882,996,692,552,775,621,652,960,394,515,228,936,651,746,682,405,610,799,115,466,705,838,613,46,234,457,765,741,611,57,504,411,837,482,931,467,465,120,19,882,119,448,625,652,273,920,274,807,559,175,528,112,365,765,607,264,838,994,78,752,725,15,93,532,637,4,659,318,472,124,828,619,675,971,572,591,989,373,308,419,108,766,704,214,425,792,443,330,639,477,80,626,572,64,996,420,961,599,714,793,342,411,523,473,402,939,451,711,346,743,92,491,865,136,709,868,301,585,338,490,450,940,298,140,261,558,666,668,356,642,761,820,909,414,636,283,931,298,887,735,393,928,842,811,983,650,338,661,453,132,830,234,716,876,562,494,819,681,861,522,906,578,416,882,125,367,563,652,169,634,178,278,825,49,785,745,457,835,868,615,841,512,181,145,117,417,61,63,951,39,356,538,153,918,615,585,131,702,593,419,533,979,983,229,362,653,489,519,668,994,50,376,620,919,28,997,423,754,656,407,55,487,913,495,264,474,236,478,584,692,187,378,423,856,253,378,395,175,460,757,174,72,360,659,93,930,287,103,600,821,438,519,485,215,493,559,450,852,974,117,232,348,504,261,962,588,422,301,868,643,981,268,757,767,492,942,910,25,306,915,172,217,537,337,61,80,723,691,637,185,462,382,740,563,184,953,973,846,832,484,420,637,205,79,716,898,108,402,518,361,272,871,820,384,183,493,836,188,613,307,381,129,641,49,765,510,371,970,213,449,427,708,768,500,489,726,408,17,836,115,864,788,858,495,244,35,14,322,103,730,522,194,43,99,384,604,278,285,996,182,850,422,681,675,350,789,995,784,49,274,513,494,341,123,132,745,268,827,638,114,664,61,371,666,201,759,369,308,144,805,300,784,200,290,786,891,208,991,522,660,749,531,685,980,991,668,706,613,192,295,440,623,338,36,110,978,325,760,198,521,946,951,618,525,706,636,86,793,129,476,602,623,815,726,355,990,955,982,144}
Returns: 757252.1328896367
{1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,599,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,149,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,934,969,986,937,978,991,904,999,991,999,963,941,943,973,954,986,937,946,919,908,965,953,972,986,903,923,971,906,983,998,944,997,932,982,979,926,991,903,939,952,942,901,958,930,935,983,927,904,932,906,938,974,902,923,921,971,907,983,936,988,983,908,985,900,965,939,929,960,969,940,914,953,970,935,922,933,932,914,904,997,935,939,957,938,993,923,960,957,946,927,902,997,955,989,991,981,931,917,924,992}
{942,635,265,927,461,912,246,723,120,438,253,698,275,691,24,401,903,747,579,469,448,253,687,511,133,554,140,306,363,625,174,94,433,689,331,988,273,857,484,494,616,915,785,961,553,418,772,287,158,595,971,612,528,151,878,798,322,980,355,453,637,953,101,911,857,389,55,60,929,595,287,168,362,824,190,875,151,336,545,354,716,811,355,206,924,232,160,67,197,481,927,34,773,328,517,970,169,204,127,463,8,108,109,716,465,291,40,926,700,894,930,770,846,553,39,478,280,81,839,574,166,758,284,785,490,385,697,818,117,271,266,652,707,503,351,757,691,401,556,189,884,848,773,808,730,253,235,966,619,279,936,908,197,115,659,743,97,965,224,336,49,667,538,636,923,816,457,996,832,539,484,814,81,123,840,362,390,16,502,67,543,334,407,568,306,917,93,848,263,108,772,368,955,937,920,642,578,73,260,931,311,977,223,745,254,935,720,700,861,268,437,817,690,863,609,784,288,301,686,798,32,297,139,607,769,863,108,32,203,590,576,789,43,709,197,705,95,156,989,472,611,658,606,941,437,22,25,583,707,140,96,146,90,949,525,730,912,496,589,462,760,532,47,730,548,541,488,420,413,935,610,976,215,204,738,136,857,185,233,117,127,255,293,659,281,162,72,777,95,423,945,306,730,716,237,290,308,423,704,96,779,566,594,658,281,695,164,614,917,878,121,230,603,876,557,914,376,704,638,793,364,297,425,312,433,672,979,76,381,41,110,148,417,604,907,877,616,339,503,891,937,958,361,281,410,351,732,159,86,259,836,702,397,607,752,523,616,941,965,716,257,651,3,177,343,235,626,910,658,665,598,827,295,41,129,214,31,116,723,406,332,920,310,449,54,707,190,442,273,636,595,52,973,167,336,198,760,894,348,213,140,668,712,919,375,188,71,881,396,898,252,790,757,930,272,379,175,84,858,441,732,247,69,588,470,497,597,115,698,130,847,929,18,212,960,837,779,833,528,611,360,182,855,170,500,678,283,872,626,891,289,434,980,696,733,185,204,131,933,455,903,732,977,648,644,678,1000,213,774,960,1,35,445,922,133,980,205,939,285,230,597,714,250,787,242,640,673,10,7,976,527,336,985,87,836,414,183,864,970,689,1,541,873,154,821,502,255,334,291,371,881,803,153,598,799,485,813,33,562,727,198,448,223,704,804,806,170,983,296,134,678,197,426,211,377,659,545,950,711,375,471,254,872,382,26,326,604,545,133,926,751,950,941,800,401,804,114,590,27,335,53,818,42,506,548,201,819,509,43,397,306,884,512,487,34,826,669,938,503,685,118,524,616,935,858,719,108,911,453,345,671,432,113,859,774,10,847,518,46,743,847,790,417,124,259,829,155,949,550,507,318,234,743,494,152,526,888,155,428,304,286,555,734,223,140,718,322,766,494,376,162,560,580,855,493,948,896,391,314,653,702,164,919,302,863,517,820,353,397,411,109,500,398,897,623,908,482,516,57,787,303,878,506,634,191,308,804,153,467,384,413,312,518,373,539,189,299,98,638,280,539,483,443,723,533,110,184,443,93,438,713,582,933,941,863,689,442,318,443,77,639,104,962,405,803,454,333,57,164,617,528,95,868,640,389,639,284,114,598,303,702,384,72,943,344,485,940,319,642,217,577,455,721,186,109,401,67,358,197,842,443,638,910,465,192,267,949,329,241,376,550,483,239,863,908,987,504,859,82,59,631,463,950,522,927,87,924,892,79,693,829,415,821,463,547,124,694,948,792,519,375,532,627,767,507,148,169,448,337,519,244,705,19,851,629,363,898,834,928,976,656,994,39,4,765,940,641,325,281,806,136,56,687,249,982,229,105,670,423,213,932,965,209,890,667,978,10,520,465,18,880,894,722,253,320,855,848,514,175,533,203,88,868,636,93,351,235,994,601,673,538,114,993,918,60,899,426,951,66,839,666,35,803,908,596,689,654,148,333,538,509,373,908,3,922,783,570,180,635,249,954,109,627,971,549,751,897,747,121,350,850,575,15,580,273,443,545,775,581,160,1,825,227,827,156,806,906,72,545,218,467,498,188,790,235,875,902,168,808,492,786,443,244,747,13,389,946,462,580,510,508,686,227,456,226,678,376,141,979,615,538,956,706,74,315,785,774,735,834,140,90,816,148,643,962,736,922,235,344,106,506,948,278,696,314,833,68,207,280,619,970,777,54,8,926,897,505,72,217,64,62,78,715,838,367,223,798,141,775,168,885,576,217,967,977,255,68,988,570,141}
Returns: 1526913.0929473492
{1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,606,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,882,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,976,981,966,956,915,920,917,965,932,918,996,972,907,942,910,971,951,921,979,971,991,922,986,985,932,913,964,914,955,918,908,998,921,981,924,906,945,907,925,951,911,993,918,926,970,952,918,978,901,993,949,983,902,902,918,952,903,914,978,913,970,916,994,921,958,995,906,960,996,973,970,914,901,994,911,978,973,904,982,943,993,953,925,960,966,988,933,965,991,930,979,902,956,953,931,941,941,913,945,919}
{34,178,193,387,206,891,683,922,725,355,119,432,304,236,577,243,496,300,320,810,588,826,702,135,564,593,778,766,407,878,292,787,218,99,822,891,820,41,441,989,823,352,430,5,370,892,271,509,137,795,306,537,502,586,264,535,177,531,67,627,16,435,183,547,160,499,85,413,166,468,293,205,244,233,818,233,311,249,816,108,103,620,679,717,217,478,801,517,567,302,779,978,415,186,870,396,842,656,94,395,224,529,518,357,67,487,878,694,332,487,905,369,196,862,394,301,56,997,350,324,477,738,269,206,663,304,947,800,26,295,49,788,374,566,7,639,239,132,765,339,949,994,264,160,65,742,575,254,956,75,36,127,378,920,807,112,122,648,788,815,960,20,957,119,386,873,773,757,849,214,468,632,540,387,713,44,45,167,356,748,577,171,696,255,854,793,989,168,134,910,737,370,333,995,603,814,652,905,695,279,637,546,352,928,141,788,480,705,230,538,977,607,665,602,752,667,245,37,391,22,942,21,548,815,475,871,768,773,674,743,524,240,766,704,932,112,495,345,766,603,801,806,128,8,661,137,345,685,540,184,477,264,864,793,71,703,817,974,700,183,797,800,132,992,839,268,910,479,350,11,557,896,612,777,544,421,561,830,703,969,520,986,756,429,714,825,193,836,588,728,834,599,196,792,10,310,159,317,455,869,5,566,687,602,10,665,851,811,27,106,771,744,145,34,191,257,476,646,24,553,777,342,759,256,111,939,26,740,254,171,737,51,110,890,152,14,923,903,659,80,747,100,87,280,198,625,853,205,228,120,337,268,332,734,441,648,330,438,418,205,638,384,707,356,713,493,674,368,183,194,907,767,47,245,906,618,179,882,833,201,313,93,258,264,613,720,691,345,929,166,53,858,830,987,130,563,558,281,515,752,106,819,458,992,747,105,577,545,442,118,392,655,762,292,199,731,100,435,887,65,253,646,920,181,618,984,870,30,631,589,539,279,324,193,944,651,276,466,169,826,591,461,376,720,967,474,55,53,347,23,938,995,155,260,886,339,581,91,418,78,962,449,526,494,862,668,861,866,31,669,349,681,118,715,869,796,605,829,632,355,181,561,512,365,478,707,698,787,848,731,676,628,670,117,736,44,465,592,912,678,986,200,503,508,297,483,100,294,812,624,345,286,163,243,498,265,791,719,229,114,122,279,991,82,259,848,721,594,184,612,604,995,553,527,118,866,324,535,602,640,600,106,152,65,287,809,730,719,379,21,982,154,942,552,433,456,170,919,391,987,195,232,92,788,694,184,402,700,710,421,617,536,536,651,742,766,935,226,958,8,469,541,842,332,200,554,333,767,577,905,324,664,889,616,272,538,279,112,166,817,923,346,758,472,663,164,976,861,83,621,61,235,726,877,75,270,911,468,59,663,433,201,334,325,191,647,128,930,697,240,945,618,275,284,909,477,671,726,571,9,756,458,526,154,980,3,580,640,226,901,52,310,773,800,281,849,147,228,325,801,717,330,375,70,72,347,389,136,323,495,44,96,726,970,159,236,216,235,388,265,697,376,110,525,255,313,135,452,748,844,57,337,599,56,822,940,997,405,355,844,124,855,899,527,474,842,63,991,808,443,418,471,801,75,914,158,964,247,289,110,13,360,137,517,452,346,256,264,757,950,459,315,249,817,61,762,387,138,848,542,3,509,471,690,699,832,815,727,454,528,126,218,315,84,344,811,845,966,375,85,973,219,761,342,710,666,570,110,219,483,112,444,660,43,487,316,255,377,868,304,54,276,827,507,960,69,20,128,671,361,983,420,321,558,877,807,783,861,517,768,788,495,150,755,231,344,43,801,306,829,107,644,405,827,440,212,20,668,909,6,253,736,617,496,925,44,396,937,681,187,234,108,937,466,931,360,998,610,103,12,173,437,85,573,269,12,190,480,408,340,258,65,704,397,422,223,996,350,529,815,472,150,729,222,732,288,315,537,561,402,22,835,431,579,651,620,568,678,41,42,208,709,159,703,541,338,275,922,727,864,21,137,258,630,379,709,921,640,523,786,569,355,796,22,927,997,984,901,688,461,515,125,255,866,141,35,544,76,164,304,433,60,307,221,594,779,864,714,633,414,857,891,709,139,560,298,41,297,876,253,22,816,751,618,966,924,21,98,865,739,812,696,943,111,919,269,163,170,359,222,338,398,669,251,938,675,346,713,209,689,264,617,772,286,820,484,412,828,992,292,388,402,554,520,238,760,142,871,697,198,973,594,48,205,582,443,971,589,73,242}
Returns: 857682.5567181836
{1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,161,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,954,912,963,920,943,968,935,967,973,964,942,968,925,928,908,913,952,971,974,900,906,929,938,981,923,996,901,917,913,958,990,912,915,994,935,932,985,961,954,985,994,908,951,997,949,998,939,931,940,934,973,962,959,970,959,922,961,968,915,925,966,958,917,984,915,994,906,979,964,914,993,973,997,955,908,964,919,994,985,936,911,921,435,998,968,929,980,913,936,952,989,930,957,972,934,973,947,901,911,932}
{424,576,928,878,525,422,587,424,947,739,912,848,775,778,771,121,567,313,28,310,728,781,760,269,545,700,329,385,540,703,590,977,695,516,742,991,917,529,144,471,103,183,690,825,50,245,176,354,467,203,485,591,341,422,290,8,953,407,411,311,911,518,938,90,672,722,706,825,150,553,744,368,182,231,878,815,819,63,735,344,626,566,48,971,450,503,276,408,392,916,255,121,46,502,801,486,423,197,928,448,348,625,629,402,559,142,951,124,153,572,457,434,529,381,23,962,459,946,319,782,490,771,251,946,421,29,109,922,223,517,164,717,388,205,956,68,378,875,602,374,512,944,31,217,390,471,147,194,689,522,608,495,952,509,67,102,844,864,429,779,161,423,943,999,791,190,701,824,730,740,429,301,199,363,296,354,892,205,833,269,398,100,950,851,861,435,466,1000,40,465,552,15,4,656,941,155,864,291,824,103,75,295,875,786,66,451,961,645,163,468,679,861,40,134,53,228,222,648,368,317,477,540,346,356,307,46,609,761,92,644,666,573,913,496,417,153,469,953,575,354,22,868,210,70,791,412,61,459,759,311,165,405,447,855,845,745,770,846,52,591,779,683,615,642,707,95,1000,701,466,669,744,778,456,198,887,24,306,45,330,467,969,180,281,962,391,285,599,37,851,319,147,342,940,258,8,218,59,294,732,502,279,630,607,67,359,153,351,733,745,710,468,149,414,375,989,941,485,126,261,946,628,578,926,611,442,999,291,719,128,640,817,435,993,529,548,297,518,285,931,190,31,147,610,509,271,407,474,721,463,643,441,241,905,670,201,125,396,939,424,333,309,174,748,480,511,408,172,792,846,220,390,722,374,898,956,43,128,450,144,516,699,881,794,193,576,914,436,214,801,379,540,523,148,836,741,254,759,581,521,693,869,117,925,598,31,303,548,372,36,868,197,47,534,721,365,269,233,488,877,545,429,9,851,788,522,107,427,807,140,818,545,782,461,383,425,875,329,742,308,126,804,986,431,450,858,182,189,82,28,267,926,95,975,271,806,671,59,913,788,656,238,778,821,549,830,630,964,505,926,128,315,78,546,120,309,446,938,978,130,583,783,906,769,377,442,984,498,21,810,776,348,77,772,684,525,520,752,893,555,687,331,650,340,525,480,845,275,753,495,328,979,511,349,182,249,924,785,208,323,495,172,207,609,648,799,259,650,822,57,86,153,465,670,768,628,929,977,523,313,753,37,3,797,88,218,576,995,10,804,361,882,326,63,362,742,34,170,904,474,6,363,718,904,589,701,453,929,791,858,77,762,407,434,641,512,964,384,115,793,631,284,592,144,322,343,938,522,32,233,129,284,120,65,854,646,608,82,683,781,793,939,15,383,419,750,295,759,415,450,455,221,733,386,393,851,132,488,322,520,857,787,234,340,31,567,326,660,232,889,184,43,179,835,705,667,651,321,244,982,789,992,220,514,685,290,474,174,751,509,993,539,684,288,239,102,991,768,196,671,926,379,427,677,386,1,898,401,789,84,45,772,201,167,587,699,14,87,874,623,282,133,169,305,439,298,67,693,465,799,466,99,768,11,864,779,932,35,503,483,256,156,842,464,481,574,124,966,375,917,337,201,942,216,708,402,835,197,970,622,198,5,42,561,550,707,431,862,547,225,615,982,382,665,919,983,369,365,878,296,782,366,921,813,320,423,256,465,669,130,215,754,536,185,946,622,130,375,280,387,560,343,783,455,812,825,506,939,962,605,711,335,89,103,874,925,889,150,648,613,354,214,11,528,1,73,776,791,33,670,783,549,527,699,538,509,176,271,837,969,411,883,885,524,710,776,750,465,764,692,557,142,715,993,691,428,108,75,420,782,310,15,766,304,121,431,168,613,4,630,452,333,864,170,904,470,602,148,774,990,708,671,390,463,26,140,142,703,440,257,15,4,633,863,9,656,264,63,742,165,888,361,756,760,668,931,594,574,492,494,464,84,395,707,445,286,302,413,488,334,967,574,163,319,649,220,986,187,506,293,382,800,898,822,823,542,809,486,445,909,351,238,498,20,915,341,302,64,837,858,17,259,618,362,390,41,589,404,857,836,667,46,790,959,251,608,450,877,613,620,198,343,128,850,831,666,534,209,479,681,996,263,363,838,100,71,858,187,110,69,714,940,714,773,23,702,221,128,468,465,691,442,678,917,719,981,64,643,706,460,326,385,253,862,941,572,975,247,328,979,409,464,73,506,898,995,515,765,304,432,292,356,132,497,884,470,203,861,63,731,326}
Returns: 1904378.8537354323
{979,993,903,1000,905,902,958,966,973,957,901,984,984,915,978,974,968,912,982,915,927,933,904,904,905,936,922,925,900,956,963,958,971,918,911,969,949,976,904,994,980,901,919,911,994,963,919,940,910,913,938,989,989,938,991,961,911,931,959,969,953,958,993,932,900,917,972,978,932,900,900,987,926,914,906,971,957,915,969,932,978,986,962,950,904,963,924,957,945}
{338,708,636,657,778,365,661,695,547,171,491,937,246,993,161,432,853,8,894,783,212,218,509,418,613,14,998,626,571,26,472,21,25,37,721,146,350,555,203,763,777,765,331,49,27,954,569,251,248,209,3,615,611,94,698,330,258,291,410,982,634,689,935,570,636,190,652,414,413,607,648,417,95,369,110,992,225,394,579,620,165,428,26,482,264,316,668,771,212}
Returns: 53321.5717968805
{988,933,952,944,956,906,977,982,988,903,994,954,924,964,970,939,914,930,952,987,944,901,994,998,936,981,924,907,981,964,982,963,901,949,982,985,906,946,924,969,951,950,992,991,947,997,921,996,973,953,915,967,940,933,940,996,985,992,906,955}
{926,387,897,788,472,771,896,690,622,622,244,129,448,244,780,745,988,556,385,329,861,342,864,828,231,6,191,770,68,134,259,884,321,175,612,896,823,240,960,36,516,616,708,557,818,858,99,664,807,436,43,601,195,796,179,290,955,331,215,854}
Returns: 44470.701818602276
{922,914,952,908,930,951,992,963,911,946,958,901,914,998,941,962,965,947,929,975,908,930,962,928,995,987,939,986,909,946,967,909,997,990,967,968,986,989,962,979,949,966,923,948,928,967,923,962,938,971,989,910,918,900,916,902,966,968,958,973,942,998,994,973,910,984,913,973,965,933,992,914,926,956,995,977,948,985,906,953,925,926,928,961,970,946,939,941,967,934,935,939,987}
{165,167,86,393,959,303,117,350,573,364,308,343,918,828,825,740,391,48,402,227,907,993,613,137,346,503,459,913,784,477,398,780,301,352,369,73,772,421,262,938,562,29,780,94,693,449,600,140,640,292,295,460,630,637,507,94,959,666,473,109,624,484,99,889,273,997,454,446,311,137,707,338,796,501,271,28,609,443,136,545,293,1000,167,114,837,581,432,55,643,220,481,557,908}
Returns: 52673.518678879926
{995,997,990,991,999,992,999,992,997,990,991,990,998,997,995,995,994,999,991,998,992,999,995,1000,995,998,993,994,998,996,999,995,999,998,990,991,995,998,998,994,992,993,990,997,999,994,995,997,996,1000,998,997,998,993,993,993,990,992,1000,999,995,996,993,997,999,997,997,998,997,999,996,991,999,998,997,998,996,992,994,995,999,1000,996,1000,994,993,990,994,998,1000,992,998,990,994,991,990,990,1000,992,998,997,994,997,1000,997,992,1000,993,997,991,1000,993,1000,999,990,991,1000,991,994,1000,997,995,998,992,993,993,997,990,995,994,991,994,1000,997,993,990,999,998,995,997,993,992,993,990,994,996,996,996,993,995,990,994,990,999,997,998,992,996,991,997,996,995,999,1000,994,1000,1000,998,997,999,992,993,994,996,999,995,993,993,998,996,991,997,999,1000,999,993,995,996,998,991,993,994,999,990,993,999,993,990,994,993,994,991,995,991,995,997,993,993,991,999,993,998,998,1000,996,996,994,996,994,999,992,995,990,999,994,998,997,997,992,994,993,993,990,990,995,999,996,993,995,992,995,992,999,990,999,990,995,999,990,998,997,992,1000,995,994,995,991,999,991,994,1000,992,992,992,990,993,991,996,993,990,992,997,1000,998,999,996,994,990,990,994,1000,996,990,997,998,998,991,992,999,991,996,994,994,1000,996,997,990,998,995,1000,997,993,991,998,994,991,995,996,996,996,997,1000,999,998,997,995,996,995,997,997,995,997,1000,999,994,1000,1000,998,991,998,994,993,992,993,990,994,991,999,998,999,994,1000,997,998,990,990,994,999,994,990,998,990,997,996,996,991,1000,994,1000,994,998,990,999,990,994,999,1000,994,995,1000,997,992,999,998,995,990,993,996,1000,1000,1000,997,995,998,993,998,999,994,991,999,997,991,997,997,994,992,997,997,990,992,997,999,994,998,996,1000,990,994,990,990,998,994,996,999,994,991,999,990,994,997,997,991,990,993,993,990,990,997,1000,999,995,990,991,998,997,991,997,996,994,993,995,992,996,996,990,996,995,994,1000,993,1000,993,997,996,1000,995,992,996,990,993,992,1000,997,994,996,997,1000,999,994,993,992,991,1000,994,997,998,993,990,993,999,997,994,1000,995,998,996,993,994,992,994,993,991,996,991,994,999,999,994,991,991,990,991,993,993,990,992,994,999,997,994,998,996,997,993,991,995,1000,1000,991,995,998,999,998,994,994,992,997,996,995,995,994,1000,995,999,995,999,991,996,997,990,990,993,996,998,996,1000,997,992,993,998,994,993,1000,994,993,991,1000,995,995,990,993,991,1000,994,991,996,993,997,1000,996,999,990,996,999,997,990,996,998,990,991,999,991,1000,993,998,997,996,999,997,997,993,994,1000,1000,996,997,999,997,998,998,991,999,997,990,991,994,990,993,999,991,998,996,992,992,991,990,996,999,995,994,996,997,991,993,997,992,992,998,992,997,997,995,998,1000,990,990,990,996,997,999,995,991,1000,997,999,998,996,999,998,995,992,991,992,993,993,993,999,994,997,994,998,998,993,995,994,993,991,997,998,991,991,992,1000,993,991,995,992,998,997,994,995,999,996,995,992,998,991,998,993,996,999,991,994,993,998,991,995,998,990,990,1000,998,995,990,999,1000,996,998,990,990,995,996,998,996,996,995,999,992,997,999,997,998,998,993,996,996,992,994,999,993,998,997,999,994,998,996,991,992,1000,998,999,995,995,990,996,1000,998,990,991,993,994,992,1000,997,992,993,994,992,990,990,991,993,999,992,998,992,995,997,999,994,993,999,995,990,994,992,996,991,1000,996,991,996,995,1000,993,993,1000,1000,996,999,990,994,991,995,1000,991,991,999,993,1000,991,997,999,993,992,992,994,1000,990,993,994,992,999,994,991,993,992,998,990,992,992,997,997,992,990,991,993,991,992,996,992,997,997,994,995,1000,992,997,991,994,994,991,998,995,999,995,993,998,1000,999,998,998,990,992,995,995,996,998,996,997,998,992,996,998,998,992,999,993,990,995,998,999,991,993,991,993,992,999,995,995,1000,999,991,993,998,992,998,999,994,990,996,997,995,990,1000,995,994,998,992,990,998,991,995,992,1000,1000,997,995,996,999,991,990,1000,991,992,999,990,997,996,997,996,998,993,993,998,996,995,991,990,999,991,996,991,1000,997,994,996,1000,995,995,1000,993,997,997,997,995,998,992,1000,993,990,1000,997,1000,996,997,999,992,995,998,1000,991,993,990,996,997,993,990,1000,993,993,998,999,990,995,992,998,997,991,999,995,996,997,992,990,1000,993,998,991,992,991,991,997,998,990,992,991,990,994,990}
{602,570,152,421,970,650,679,845,971,946,112,485,54,659,989,389,974,839,663,471,704,787,443,11,751,311,852,39,413,216,129,61,790,249,238,401,609,705,201,812,52,8,533,162,801,915,921,685,460,413,61,753,375,994,725,127,609,760,751,405,506,718,600,732,825,714,545,874,940,679,338,438,915,239,438,375,628,311,456,872,239,970,545,431,449,765,836,192,963,654,895,592,515,896,394,987,598,574,849,235,793,898,309,88,200,78,356,900,30,341,640,356,836,631,430,864,230,635,353,787,182,16,563,925,152,199,87,517,371,585,972,580,590,832,181,551,441,709,866,83,405,87,791,309,14,819,166,56,558,638,123,308,53,675,337,645,627,928,104,579,826,767,274,398,546,611,25,637,421,992,408,345,562,558,963,82,445,993,462,969,636,445,41,188,758,816,529,41,790,196,809,35,357,770,404,514,120,801,318,23,780,639,341,934,487,273,664,867,631,642,656,88,104,766,79,377,106,782,871,825,516,132,844,633,613,480,296,280,712,416,597,358,868,636,251,935,354,87,819,606,69,520,338,244,361,993,564,59,18,126,447,766,344,342,720,548,294,893,414,22,618,198,361,606,855,928,516,521,788,282,987,153,671,140,222,678,146,95,708,627,252,913,878,567,364,617,662,166,193,222,251,725,225,130,227,647,88,338,111,457,379,898,827,684,435,509,269,358,359,762,382,910,391,270,759,997,355,889,692,122,491,266,79,983,465,209,329,126,692,749,669,861,442,311,815,363,362,121,55,549,140,806,149,643,72,191,338,269,172,440,979,581,302,23,938,185,514,471,978,549,433,527,790,201,33,74,207,244,625,191,401,628,188,799,538,193,464,585,458,673,387,361,423,781,465,550,892,963,742,253,557,636,820,202,602,556,209,992,257,441,990,152,237,152,342,977,579,529,5,583,733,452,170,258,497,815,587,86,520,879,913,721,681,915,464,390,568,117,541,463,682,536,482,385,727,176,405,378,572,453,380,82,992,935,435,213,341,665,341,407,665,371,635,635,596,574,682,973,551,944,878,54,378,238,306,217,643,820,217,240,124,63,754,554,956,914,219,988,100,497,6,447,432,946,63,374,838,559,357,526,114,970,361,338,387,296,14,154,986,84,981,648,421,488,253,94,174,276,329,488,514,185,264,158,435,618,843,204,128,920,40,989,91,258,679,976,110,661,927,374,855,922,840,430,761,852,693,724,213,884,222,462,764,107,241,627,292,605,320,798,533,414,311,601,387,500,592,49,776,896,801,463,573,551,702,299,329,504,568,942,84,704,144,470,555,178,803,439,374,268,982,8,864,349,380,72,43,780,684,643,155,837,748,409,59,26,311,251,228,489,272,526,934,185,524,83,463,133,100,292,800,307,162,887,333,688,950,10,544,574,381,681,526,505,404,835,447,50,577,209,753,272,590,585,977,891,602,345,525,66,358,859,688,199,992,954,455,391,319,600,379,3,215,5,892,265,347,494,960,49,151,923,926,710,422,859,678,381,324,480,75,220,925,906,647,895,597,721,199,21,737,528,849,343,330,710,444,240,767,6,33,483,246,108,268,281,770,276,191,336,478,851,842,13,564,653,530,758,547,459,396,585,13,160,129,778,252,730,282,971,387,845,682,417,717,846,830,551,966,746,37,942,80,167,286,334,998,391,425,758,562,221,389,640,372,968,575,402,897,663,374,327,627,582,130,337,382,228,472,900,153,221,48,517,13,941,190,75,700,342,906,915,455,111,937,636,560,205,287,478,836,863,778,669,28,372,677,218,602,250,390,500,20,991,544,395,914,198,500,916,945,778,528,989,338,804,366,517,202,836,914,941,808,766,103,257,917,694,820,842,101,962,897,530,780,236,769,49,311,434,419,364,94,385,575,423,68,320,980,570,408,710,718,152,480,480,227,914,329,342,630,363,46,857,444,657,402,832,579,480,15,823,743,36,147,871,59,538,951,40,704,523,628,991,880,906,463,610,264,937,175,659,369,127,367,523,909,758,96,398,371,840,753,674,456,200,529,838,962,972,688,979,995,893,762,830,62,681,570,347,779,258,658,32,367,737,338,533,117,892,39,602,275,312,55,142,568,553,141,893,740,373,580,308,992,586,511,296,217,150,336,799,250,854,948,628,138,374,398,594,621,522,359,708,580,245,397,185,209,267,650,11,62,344,973,120,920,744,989,551,646,931,774,573,791,409,94,386,759,359,227,943,731,995,369,383,425,529,584,768,965,267,31,153,814,631,962,454,743,847}
Returns: 637597.076806494
{996,993,993,996,994,996,991,992,992,992,995,1000,990,1000,998,992,990,998,998,992,994,993,995,998,994,991,993,996,993,996,990,990,990,993,994,1000,994,992,998,994,999,997,996,995,993,992,997,999,998,997,994,994,994,995,992,990,999,997,1000,998,998,994,993,998,999,998,990,994,995,997,995,991,997,993,997,997,993,993,998,990,992,993,997,995,994,1000,999,996,993,1000,997,991,994,996,990,997,998,999,997,1000,990,992,991,997,996,991,997,990,995,996,995,995,999,1000,1000,992,991,999,990,991,991,1000,991,998,991,990,998,995,1000,996,999,990,998,995,994,998,995,995,998,998,996,996,992,999,991,991,997,998,999,990,996,995,990,995,991,1000,992,996,996,997,996,995,993,998,995,994,993,993,990,997,993,991,993,990,994,996,991,996,994,990,994,1000,990,990,991,994,997,992,1000,994,998,997,996,993,995,996,990,994,994,995,992,997,996,993,991,1000,994,995,991,994,994,996,998,995,997,990,998,997,991,998,991,997,997,992,994,992,995,999,997,990,997,993,992,994,997,990,994,991,997,990,991,992,992,992,993,991,990,999,991,993,1000,994,991,998,997,999,992,995,998,999,993,1000,992,1000,996,993,996,1000,997,994,998,1000,999,996,997,991,995,995,994,993,996,999,990,992,995,994,991,1000,996,1000,995,992,998,997,990,995,998,995,995,998,1000,992,991,996,1000,994,990,994,999,991,998,995,992,990,994,999,993,992,992,996,998,999,990,994,991,995,999,994,997,992,997,995,992,991,999,996,998,990,995,995,1000,994,997,992,999,997,994,999,997,995,998,991,990,995,998,991,997,994,992,996,997,997,999,994,1000,996,994,1000,997,996,998,996,996,996,1000,998,995,994,994,999,992,991,994,996,999,999,995,998,998,992,993,998,996,998,992,1000,994,995,993,991,993,995,1000,998,990,995,997,996,995,996,995,996,992,992,991,997,997,990,998,995,993,1000,993,1000,993,1000,995,992,997,1000,995,997,997,994,1000,995,995,1000,999,993,993,995,993,991,998,990,997,999,995,998,992,998,990,995,996,998,995,995,1000,996,1000,997,1000,999,998,990,999,993,991,992,998,995,998,996,995,996,992,993,996,995,996,999,1000,1000,993,999,1000,990,991,991,991,1000,991,990,999,996,991,996,995,996,999,997,997,991,999,990,990,1000,999,990,995,999,991,993,994,995,993,996,998,1000,993,996,999,990,998,991,992,1000,1000,994,993,998,996,994,994,990,993,997,993,993,999,997,990,995,991,991,995,991,991,1000,991,990,1000,999,999,999,996,992,996,1000,994,995,999,994,994,992,990,997,998,994,995,1000,996,999,994,997,994,993,1000,995,993,993,996,994,990,998,990,997,998,993,995,992,997,1000,999,994,996,994,992,991,999,1000,995,993,997,999,991,996,995,990,995,995,997,998,992,997,992,997,999,999,997,992,996,991,994,999,991,994,1000,997,992,996,1000,999,999,996,995,1000,991,992,990,991,994,999,991,999,996,990,991,997,999,996,1000,995,990,998,1000,991,997,1000,996,990,998,998,991,996,991,996,991,995,996,994,997,993,996,1000,994,997,997,999,998,992,994,998,999,1000,992,997,990,991,994,992,995,993,998,995,997,990,990,991,993,996,990,991,992,999,1000,996,999,991,999,996,990,998,992,997,993,992,995,1000,993,990,999,993,993,991,994,991,1000,993,997,993,997,996,998,998,996,990,1000,996,990,999,990,992,999,996,995,993,992,999,999,994,997,997,1000,991,1000,991,995,997,995,993,991,990,993,995,995,995,997,991,993,997,990,998,990,991,992,998,994,992,991,990,990,994,996,996,997,999,998,994,991,990,990,994,990,996,997,998,991,993,999,998,992,992,990,999,998,996,999,992,991,996,993,996,1000,995,993,991,996,998,993,991,996,993,998,998,998,1000,992,992,994,992,993,999,996,990,999,993,994,998,992,994,990,995,1000,991,994,992,990,994,1000,996,992,997,1000,995,1000,995,993,1000,994,997,995,995,997,990,995,1000,995,994,993,994,994,993,990,998,990,991,996,1000,992,998,995,997,990,999,992,1000,991,997,995,997,995,990,994,990,997,998,992,1000,996,996,992,992,995,993,999,993,997,990,997,993,999,990,997,995,996,990,992,996,998,996,999,994,997,993,994,998,997,992,991,992,991,996,1000,994,991,994,994,996,997,999,999,993,994,998,992,990,998,993,998,992,1000,994,993,998,1000,996,996,1000,992,990,999,991,994,997,994,995,998,991,997,999,996,994,1000,994,996,996,991,993,990,990,997,990,992,992,990,994,1000,991,998,995,1000,999,995,990,994,992,997,1000}
{808,479,170,521,567,537,478,286,696,420,210,195,453,495,295,242,681,811,70,369,372,288,527,697,809,143,402,658,205,729,678,831,159,904,323,217,614,172,779,224,255,84,801,866,451,816,713,546,900,414,72,310,120,919,12,671,813,492,261,910,890,680,919,283,678,182,643,711,388,819,759,317,457,935,207,689,769,114,927,808,95,929,455,417,296,427,48,994,977,169,616,616,319,977,98,735,739,939,693,283,896,884,542,599,312,256,19,374,531,260,799,187,305,224,260,232,790,349,567,527,85,412,18,222,757,511,819,632,177,685,490,283,589,43,533,534,845,96,825,352,648,126,423,395,958,760,136,866,950,408,260,519,521,841,321,800,920,998,559,342,464,54,127,947,696,882,688,741,576,318,136,401,457,40,707,242,672,464,590,446,526,779,483,952,375,138,242,304,238,56,873,308,123,290,647,464,794,795,46,966,254,900,576,528,608,493,223,412,291,834,479,803,878,612,405,142,799,969,171,77,366,540,869,469,398,989,161,294,631,131,508,307,834,494,315,98,201,101,292,509,189,312,762,419,415,802,414,589,612,166,228,600,946,127,918,913,173,89,223,737,209,586,865,689,714,218,754,213,175,810,327,336,805,889,495,614,308,10,771,71,159,151,578,504,623,146,621,793,142,104,452,747,101,852,73,583,214,714,460,344,945,354,424,433,441,978,77,993,429,930,511,998,417,610,986,821,304,663,29,484,226,622,404,1000,30,510,785,986,305,448,346,209,291,963,200,867,306,522,749,136,559,817,601,7,348,427,626,488,675,813,102,999,246,34,691,216,696,176,129,637,593,263,115,906,492,323,889,262,809,363,340,540,833,250,337,811,511,854,144,104,957,385,430,648,836,534,359,720,847,900,734,499,553,179,934,286,717,782,679,89,103,852,266,815,445,156,1,301,914,941,967,936,927,650,195,948,616,348,504,264,607,804,12,476,4,444,377,593,664,808,302,200,880,715,774,121,594,80,764,889,123,212,860,170,173,451,393,783,610,230,148,92,50,985,683,389,846,840,604,333,443,700,880,619,413,169,440,865,685,706,840,111,616,591,738,419,613,530,292,821,915,201,359,256,28,656,554,202,39,228,799,414,717,542,9,570,853,284,918,640,781,626,888,475,392,582,724,476,253,115,152,169,620,534,626,190,240,545,547,491,834,358,852,517,89,411,105,770,770,597,936,419,303,363,664,559,826,689,458,321,202,750,193,286,975,996,476,519,563,536,981,170,256,914,296,732,741,840,993,963,947,978,540,999,979,637,929,357,776,103,662,374,934,381,804,146,808,339,351,132,627,569,95,468,837,818,488,437,318,521,747,704,425,745,596,690,43,893,596,883,940,616,942,1,802,686,17,646,198,36,728,496,635,781,830,144,591,783,50,423,69,265,781,399,800,24,536,259,688,64,140,15,460,811,850,267,799,661,217,272,389,271,491,226,443,907,856,969,252,114,547,283,235,208,194,588,761,367,352,123,765,594,245,598,782,479,199,944,571,449,108,2,966,181,552,903,886,921,848,448,754,758,423,30,683,274,352,483,886,616,845,791,734,711,713,787,758,298,614,763,681,429,934,477,264,340,726,136,348,933,21,789,960,608,188,990,799,878,740,751,689,15,123,556,862,944,612,651,9,764,347,922,119,541,939,404,46,504,851,887,591,335,901,132,646,54,853,920,620,885,41,556,912,578,347,436,675,897,685,18,523,362,336,836,68,879,86,221,418,597,161,31,830,196,356,18,729,786,609,397,227,819,488,840,66,698,728,371,658,265,998,576,519,998,513,148,915,513,20,8,998,951,905,180,57,907,878,118,755,842,769,441,379,323,445,860,229,17,775,659,204,109,845,220,550,670,364,977,513,581,289,648,334,793,225,744,619,77,105,202,623,915,946,399,401,861,257,977,89,537,790,655,816,374,904,651,858,401,741,431,695,617,803,236,576,990,272,255,37,680,602,365,571,899,493,75,324,683,332,688,237,983,618,707,558,660,638,225,985,410,918,354,36,137,556,744,393,32,582,928,88,448,893,498,407,696,183,107,271,29,489,914,711,420,642,353,749,242,947,54,624,544,901,336,866,469,589,929,141,274,697,485,128,516,731,17,989,266,146,600,95,586,545,540,792,118,30,762,923,342,74,347,729,949,990,966,534,838,205,495,284,428,37,214,664,323,637,831,955,926,55,4,266,200,155,192,44,663,233,426,19,648,757,19,873,2,589,337,916,699,436,504,62,295,21,296,183,751,668,569}
Returns: 634850.6689279998
{997,999,996,992,990,999,999,993,996,993,998,991,999,990,996,995,999,995,992,998,992,993,998,990,994,998,994,994,992,995,994,990,997,991,1000,991,997,998,997,993,998,997,990,990,998,999,999,1000,995,990,990,1000,998,996,990,991,991,990,990,993,997,999,995,990,997,993,991,999,995,990,991,993,997,994,1000,992,996,996,991,995,1000,997,1000,1000,999,992,999,999,993,991,996,994,995,993,996,990,998,993,999,990,991,992,998,998,995,995,1000,996,990,992,997,998,998,991,990,990,994,999,998,998,1000,997,996,996,993,990,997,1000,994,994,1000,1000,994,994,997,997,997,997,992,991,997,991,999,1000,997,995,1000,1000,995,998,991,998,1000,997,991,999,996,991,991,990,990,994,992,995,1000,990,994,995,993,999,992,990,993,999,994,998,995,1000,998,996,999,1000,992,996,993,990,992,996,990,990,995,1000,994,997,992,991,996,991,999,993,993,999,994,993,992,999,1000,997,990,994,993,996,996,998,992,994,994,990,996,999,990,990,994,996,998,992,998,999,995,990,998,998,1000,991,993,1000,999,993,997,1000,997,995,999,994,991,993,998,999,998,997,990,996,998,997,993,994,999,994,999,1000,990,993,995,990,998,993,996,999,991,999,999,998,998,997,995,994,995,995,995,990,990,992,999,992,998,997,993,999,994,998,997,998,997,991,991,993,995,997,999,999,990,994,998,991,997,994,991,998,990,994,996,992,999,990,991,995,998,994,998,999,995,990,996,992,998,995,998,1000,992,991,1000,990,998,997,991,996,999,993,993,997,999,994,992,1000,998,992,999,998,1000,998,995,994,991,993,992,994,993,992,996,997,995,991,995,999,999,994,996,992,1000,1000,997,1000,991,998,995,998,994,994,999,995,1000,993,998,992,994,998,997,991,995,993,995,993,991,994,997,999,996,997,990,993,999,996,994,997,991,999,990,995,999,997,996,992,998,997,993,992,999,995,998,990,996,993,991,994,995,991,1000,996,994,992,991,993,991,991,994,991,999,995,990,993,994,997,991,998,992,993,994,997,994,994,992,994,998,993,998,990,996,992,998,996,997,993,997,995,993,997,997,995,998,993,994,992,991,993,996,997,997,991,997,998,1000,996,997,999,993,1000,997,998,996,990,997,997,991,998,1000,995,995,992,995,997,999,1000,991,997,998,994,990,997,993,991,996,991,993,1000,994,996,990,993,999,995,998,992,992,1000,993,991,1000,1000,993,992,1000,998,999,999,991,991,992,999,998,997,999,991,998,990,995,998,993,997,995,991,998,996,995,995,1000,992,990,995,994,998,995,995,999,993,998,995,992,993,992,994,991,992,994,1000,991,992,994,991,990,999,1000,992,992,998,995,1000,997,991,994,999,993,994,996,994,998,994,995,996,993,998,993,997,992,991,995,991,994,991,999,998,998,993,997,993,994,998,993,992,998,990,998,995,993,994,993,995,992,993,990,990,999,990,998,996,990,990,994,990,998,996,998,992,1000,996,1000,999,994,991,995,1000,993,999,995,999,999,996,992,999,995,1000,999,998,996,995,993,993,990,998,996,991,994,998,1000,999,999,995,994,991,992,999,998,995,997,995,992,997,992,996,997,993,991,992,1000,996,993,1000,996,999,994,994,998,990,1000,997,999,996,995,992,997,991,998,997,996,993,1000,999,997,1000,1000,998,998,993,991,993,990,992,994,993,992,992,993,991,997,990,999,992,995,1000,990,995,994,998,992,1000,995,999,996,1000,996,998,997,995,1000,998,994,999,996,993,991,996,998,991,999,996,1000,993,996,994,999,995,998,997,993,993,996,999,997,990,999,996,996,1000,996,999,990,992,993,999,994,998,995,996,997,992,993,997,1000,994,1000,998,998,999,993,999,994,990,997,992,996,999,991,997,994,999,990,991,990,993,999,997,993,997,1000,1000,1000,994,999,1000,991,1000,993,990,1000,996,992,990,1000,992,990,995,996,991,997,998,993,991,996,990,992,993,999,994,998,992,997,995,993,997,998,991,990,993,999,993,1000,996,992,995,990,996,992,994,991,998,999,995,1000,999,992,991,991,994,993,992,995,995,993,990,992,999,999,991,995,1000,1000,991,999,996,997,993,990,992,997,1000,998,1000,992,995,990,994,993,998,991,994,994,992,998,991,994,999,992,996,995,996,990,997,996,991,991,990,993,994,998,999,994,998,992,1000,999,991,999,994,999,992,1000,995,990,994,996,993,995,997,999,993,998,990,993,994,1000,993,992,990,993,993,990,994,1000,994,997,998,995,991,993,994,990,990,991,999,995,999,996,999,992,998,992,993,997,995,994,990,1000,996,991,998,999,991,998,995,1000,996}
{944,689,64,77,341,649,255,768,170,533,705,527,408,380,876,675,657,883,118,287,847,560,802,707,907,868,485,531,186,723,591,748,959,972,528,726,818,564,937,415,163,600,968,494,243,934,125,182,445,755,217,71,579,371,380,673,944,492,980,324,853,438,438,706,128,25,669,541,782,392,865,935,751,638,836,441,62,940,950,161,272,799,31,112,375,115,197,634,585,116,759,839,628,535,737,961,187,31,484,28,145,572,202,410,148,394,822,682,801,181,861,725,476,320,380,126,351,441,75,769,767,962,904,963,425,37,360,579,240,103,651,443,934,246,623,668,513,708,181,710,883,160,365,649,749,833,983,643,811,181,896,523,27,530,614,236,367,70,877,209,52,651,270,731,748,36,723,142,563,687,977,954,983,677,681,27,63,44,822,574,319,748,630,87,726,392,893,228,182,69,901,369,592,992,862,723,448,57,667,961,426,135,390,784,36,668,711,187,836,99,770,31,26,778,615,118,533,252,485,169,831,243,676,982,829,219,618,576,117,189,97,302,746,228,275,761,504,288,252,845,348,65,459,387,244,28,82,713,159,242,59,830,403,272,918,165,776,310,894,465,254,603,281,990,45,442,972,149,887,238,463,524,417,674,405,605,270,521,938,633,336,473,642,655,250,276,907,260,780,499,958,525,224,525,519,342,322,728,365,664,485,354,579,210,310,313,377,792,466,943,789,779,47,844,302,135,374,16,826,125,74,883,987,46,963,257,794,269,916,939,193,483,413,438,879,266,917,257,24,29,578,283,224,911,11,84,89,444,68,354,354,668,561,291,317,914,925,454,681,626,610,510,608,494,861,339,902,591,170,166,741,430,315,736,337,626,413,62,211,315,797,961,505,633,867,397,935,300,280,637,491,807,984,381,987,809,609,290,911,33,709,820,795,462,175,844,512,577,884,333,476,172,345,276,721,637,626,83,231,609,370,966,685,595,28,174,989,509,786,488,611,49,804,108,698,513,517,892,446,951,735,945,971,508,193,714,209,453,34,56,993,666,404,262,517,262,993,622,865,656,888,928,111,615,520,270,824,709,887,554,430,193,434,486,2,517,165,121,538,552,635,710,651,165,410,278,946,914,502,245,17,546,37,486,145,390,141,382,287,979,597,789,876,974,344,387,273,972,310,484,471,885,367,241,780,352,437,215,784,97,900,275,812,213,494,252,534,126,836,100,58,378,543,986,97,419,699,476,325,356,42,892,66,918,858,11,844,979,1,496,101,636,868,835,636,183,424,112,903,328,576,647,342,648,288,359,335,583,839,778,216,243,529,739,8,922,969,163,192,486,790,789,878,741,274,364,205,483,906,584,647,166,309,51,195,41,382,593,35,167,688,566,461,924,328,184,205,507,585,483,306,450,610,272,910,352,283,296,127,891,196,896,148,635,373,637,399,381,938,739,381,500,488,664,214,290,273,860,628,409,665,518,299,274,589,154,962,740,709,983,709,443,243,324,237,969,166,763,586,385,459,362,69,756,780,1000,699,963,614,832,399,522,530,937,663,130,624,453,169,352,627,877,17,190,445,773,914,299,69,814,604,231,913,933,335,432,635,404,903,673,406,802,136,193,410,148,261,155,82,6,688,915,225,951,189,200,670,610,311,567,611,435,146,371,55,475,237,69,135,662,502,887,143,571,542,748,236,159,581,887,753,747,608,778,912,381,987,811,513,745,911,684,887,26,617,604,6,462,180,228,107,821,49,695,648,745,243,285,688,694,227,962,45,225,98,519,677,469,615,143,809,968,10,942,232,478,259,389,76,960,696,710,100,733,412,932,210,692,884,709,484,558,670,54,439,373,808,783,689,822,773,845,399,530,434,678,136,164,520,415,841,26,472,35,620,865,452,563,974,753,467,16,926,252,243,71,186,531,531,393,161,776,968,104,138,975,509,183,412,175,680,416,467,351,628,160,611,345,962,313,575,698,940,828,696,832,390,592,260,717,97,685,450,77,76,902,164,224,268,860,619,814,721,241,284,158,245,457,185,266,851,543,27,432,43,187,897,30,161,563,555,144,533,121,418,804,147,514,403,909,926,642,727,332,448,169,613,344,145,933,606,237,577,385,862,958,393,579,346,615,960,240,338,993,462,125,37,548,468,269,339,955,590,647,40,919,864,479,841,878,917,706,516,187,834,115,516,581,829,233,123,7,542,377,947,433,759,188,245,837,872,553,22,411,229,92,361,941,787,265,747,448,197,731,424,415,483,792,970,367,2,645,360,141,261,676,744,893,453,219}
Returns: 631034.892965707
{990,998,993,990,993,995,999,994,994,994,998,995,990,993,992,998,994,999,998,991,996,999,992,994,993,996,996,995,993,996,999,991,999,991,996,993,995,991,991,999,995,999,990,994,993,997,995,996,992,998,996,996,995,990,995,990,995,999,998,997,999,992,991,997,992,993,996,994,999,991,999,999,995,1000,991,999,1000,996,1000,995,992,994,996,1000,994,994,990,998,997,992,1000,1000,991,992,995,997,995,998,994,1000,998,994,990,990,998,993,994,994,996,990,993,991,993,999,995,996,990,998,995,994,1000,992,993,992,990,997,998,991,1000,999,1000,995,992,999,992,997,990,995,999,992,995,999,993,990,993,990,999,997,993,996,994,997,994,992,998,993,1000,991,990,990,994,999,1000,999,998,999,999,997,996,999,993,995,997,996,997,994,999,995,992,991,999,990,995,1000,992,992,993,999,994,993,991,990,995,997,996,1000,1000,997,1000,994,995,999,996,1000,997,1000,991,994,990,994,998,991,993,995,998,997,991,990,995,995,995,999,996,998,998,997,992,998,997,992,991,997,996,999,996,996,992,996,998,996,997,990,992,997,1000,995,996,998,993,1000,994,994,990,992,991,990,996,994,999,998,1000,995,997,999,991,998,998,999,995,1000,995,993,999,997,995,993,996,998,997,996,993,995,1000,990,996,994,991,993,997,992,998,990,992,997,995,993,991,999,991,990,1000,995,995,997,993,1000,994,997,997,993,994,999,994,995,992,997,999,994,998,999,996,996,998,995,992,997,991,999,996,999,993,996,997,998,1000,1000,992,993,1000,992,998,992,998,990,994,1000,999,993,998,999,999,997,998,995,992,996,996,999,991,991,995,999,993,991,996,994,998,997,990,994,999,997,990,995,993,996,999,994,998,993,990,993,998,999,993,994,992,997,999,997,994,991,993,991,1000,995,998,990,992,991,991,1000,1000,992,995,994,997,991,996,990,992,997,996,1000,996,991,996,998,995,993,991,993,994,992,995,995,999,991,997,991,998,990,995,998,996,1000,994,999,999,993,1000,996,999,998,999,992,992,999,999,993,994,995,998,997,997,993,997,999,999,993,990,995,993,996,995,1000,994,991,996,992,998,990,990,995,998,995,995,1000,996,1000,990,997,995,990,994,991,995,993,998,999,994,995,1000,992,999,996,998,997,990,990,994,991,991,991,1000,995,994,1000,995,994,998,994,997,998,995,993,1000,996,994,996,1000,998,996,999,1000,990,998,991,996,999,994,994,998,999,993,1000,994,999,994,997,991,991,991,998,996,991,991,997,1000,999,990,990,991,990,993,1000,995,990,992,999,992,991,993,991,996,995,994,996,992,995,990,1000,998,994,999,1000,994,996,997,1000,991,1000,996,993,991,994,999,992,990,996,1000,996,996,993,999,992,998,990,992,990,990,998,995,991,992,995,1000,997,990,991,991,996,994,996,991,1000,993,990,999,997,994,994,1000,1000,995,999,995,996,990,991,999,1000,996,996,990,995,998,998,994,991,994,992,1000,992,996,996,995,994,997,1000,998,992,995,990,990,992,996,996,994,998,999,992,991,991,994,991,993,996,995,994,998,993,994,990,992,997,994,995,1000,998,998,990,999,996,1000,991,992,1000,992,1000,995,994,995,990,1000,997,998,991,994,999,997,1000,1000,994,996,994,999,999,994,991,998,998,997,998,994,992,993,992,1000,999,996,992,995,993,993,996,999,994,1000,991,996,996,995,993,990,992,1000,995,996,991,990,996,994,994,998,995,996,991,993,998,995,990,993,990,997,991,998,996,991,991,998,996,998,990,998,994,997,990,992,992,999,991,1000,999,993,998,996,991,1000,996,994,995,995,998,993,1000,992,993,998,993,990,997,1000,996,997,994,996,992,996,998,990,992,992,994,995,999,999,993,992,995,991,999,998,991,993,997,993,990,993,992,993,992,996,998,996,997,1000,992,993,999,999,995,998,991,998,991,991,993,999,990,994,998,995,995,1000,994,996,992,999,998,992,996,995,998,992,996,1000,990,991,994,997,996,996,995,1000,991,994,994,992,990,994,997,994,995,995,993,1000,991,992,995,1000,997,1000,990,995,991,991,998,1000,1000,994,997,994,998,990,1000,1000,993,991,990,993,998,993,995,1000,999,1000,994,1000,992,991,992,993,991,995,998,990,995,994,999,996,999,1000,992,996,998,992,991,1000,997,991,995,994,999,995,992,994,999,995,995,997,991,998,999,993,997,994,991,990,998,996,997,996,992,997,998,991,997,1000,995,996,996,996,993,996,992,995,992,999,991,999,992,993,1000,990,991,999,996,994,999,996,997,997,991,997,995,992,997,993,1000,991,997,1000,999,994,992,996,999,999,998}
{242,902,548,457,875,132,297,784,412,468,182,333,619,590,134,652,841,570,524,478,903,261,537,119,568,682,195,484,710,627,991,778,27,958,577,34,745,386,928,444,260,46,680,951,72,847,120,649,684,426,443,349,367,477,422,72,815,385,628,356,755,404,672,979,525,32,732,115,462,871,793,17,722,13,610,4,794,915,409,927,555,792,714,308,164,802,508,27,507,674,136,780,153,976,969,528,995,934,880,801,858,540,997,36,328,726,36,106,2,550,765,796,157,638,776,274,555,637,817,543,759,63,367,440,836,713,34,4,781,763,599,936,362,803,209,421,302,276,331,827,910,259,532,642,328,65,65,534,530,877,548,644,88,546,720,8,522,682,366,545,729,398,51,173,579,422,193,449,296,788,371,569,618,5,479,707,89,415,503,434,12,434,226,417,773,519,152,650,231,983,273,259,854,239,108,291,109,654,588,981,368,974,960,699,253,166,884,132,930,640,250,328,301,9,108,864,463,959,240,779,43,326,591,890,260,191,719,763,628,649,930,934,219,936,524,926,355,746,880,240,362,913,702,764,777,112,831,995,27,854,489,58,114,870,647,723,313,910,535,573,208,93,937,1000,666,214,37,934,512,827,45,71,707,493,732,928,851,331,325,184,667,875,892,660,939,302,479,749,52,289,778,284,897,106,33,631,384,93,213,258,251,285,241,169,142,840,194,339,163,854,955,761,272,305,738,769,863,172,295,76,866,194,369,356,541,387,131,249,877,149,934,419,176,739,704,619,994,977,666,789,34,237,934,863,23,217,676,334,843,473,198,588,406,459,294,710,863,606,653,731,717,55,940,299,353,768,390,333,283,107,448,534,167,429,969,534,253,896,19,77,463,481,142,857,759,123,227,549,781,56,819,125,24,631,759,773,949,361,562,585,518,477,810,741,593,39,169,73,548,522,309,749,197,829,157,306,865,919,408,425,990,543,167,629,192,147,897,590,122,631,628,797,738,490,487,175,877,858,198,630,109,93,122,628,919,847,806,617,187,11,756,553,786,534,334,811,878,874,266,501,152,770,238,579,807,71,428,145,564,626,674,59,356,602,129,282,666,141,909,395,628,989,248,385,139,551,85,83,230,884,875,640,838,257,622,7,960,281,793,695,878,60,828,13,784,465,407,568,654,429,504,77,700,101,538,418,18,820,591,426,366,104,758,151,127,317,179,169,593,181,198,49,680,116,405,295,70,196,998,891,537,619,63,95,946,750,830,272,970,160,959,364,112,619,166,74,9,629,321,944,310,948,215,297,657,516,814,454,430,336,717,705,922,150,958,285,606,226,1000,998,940,137,4,186,976,220,994,470,650,283,561,41,217,234,117,345,783,516,537,638,224,628,213,271,131,567,180,549,536,700,968,651,350,451,286,421,384,207,473,799,778,990,858,284,465,789,876,103,10,924,780,688,816,444,279,661,212,359,302,768,380,462,318,107,425,588,383,560,161,445,97,558,329,537,201,150,44,315,409,926,225,375,374,489,673,463,410,13,205,40,692,961,984,410,175,126,762,712,419,32,260,657,814,153,325,499,458,552,824,590,77,312,447,851,933,567,731,595,614,34,652,483,986,696,70,789,322,676,164,812,845,424,748,987,457,31,18,191,459,879,857,824,430,839,277,446,251,942,993,163,470,758,360,500,797,753,151,180,576,495,708,97,466,958,33,790,429,62,276,883,342,278,911,280,204,360,601,393,963,220,393,322,440,548,418,682,686,31,702,742,406,912,72,640,719,216,346,693,640,168,219,254,143,194,272,133,572,444,535,333,442,947,895,744,425,354,450,473,373,717,580,697,809,909,114,278,203,107,475,893,687,202,109,100,636,155,785,587,635,70,632,832,955,205,855,539,579,213,139,510,207,687,689,72,431,448,691,752,454,98,746,707,294,77,487,293,422,804,144,240,174,570,325,156,66,463,625,432,366,10,982,204,879,176,903,688,936,26,740,105,977,683,252,378,991,148,560,989,274,193,443,696,646,816,634,289,290,671,409,196,868,479,306,569,391,684,233,398,632,504,600,330,522,108,335,123,54,842,840,85,725,311,966,431,427,670,110,203,994,615,373,319,347,459,528,312,266,138,246,578,342,167,586,262,613,345,321,437,684,534,30,929,909,877,231,904,316,671,41,382,553,509,995,940,56,396,673,162,22,306,735,866,526,43,818,722,326,316,496,645,448,685,164,277,652,371,284,927,276,979,897,587,752,849,679,18,295,104,129,451,880,454,635,149,650,473,293,918,319,364}
Returns: 617370.1999181678
{993,997,1000,992,1000,995,998,993,992,993,994,996,990,999,994,995,996,998,997,998,997,1000,998,992,992,998,998,1000,992,990,991,1000,990,992,998,991,996,990,999,999,991,996,993,997,997,999,994,990,999,993,1000,992,997,1000,994,1000,994,992,996,990,996,994,996,998,990,999,998,994,994,991,998,994,998,993,994,995,1000,994,997,995,997,997,991,993,998,996,1000,999,997,994,993,990,999,990,999,997,995,998,991,991,990,997,990,1000,992,994,998,990,997,999,996,999,993,999,996,1000,994,995,996,997,996,991,990,992,995,998,991,996,999,995,997,999,990,998,990,990,995,995,991,995,997,999,999,996,996,993,993,998,990,995,996,990,995,992,998,996,997,994,992,996,998,998,991,992,993,995,998,995,1000,994,992,995,990,990,992,996,991,998,992,997,992,999,995,1000,994,999,998,994,992,997,998,997,998,993,999,1000,991,994,992,991,994,993,990,990,990,996,995,992,999,998,997,992,993,993,994,997,1000,992,1000,1000,994,997,993,994,992,999,1000,998,1000,990,992,999,999,991,998,990,1000,994,994,996,993,992,995,991,990,992,991,994,995,1000,992,997,1000,999,992,996,994,993,990,990,994,991,991,999,996,993,998,990,993,995,998,992,998,999,992,1000,998,998,995,999,997,1000,992,993,993,999,999,998,994,997,992,991,992,992,997,993,1000,993,998,992,993,1000,997,991,991,994,990,995,994,994,993,997,994,1000,1000,996,996,997,993,998,991,992,991,994,998,993,997,999,1000,993,993,992,995,1000,996,993,997,992,991,1000,992,990,993,997,996,995,990,991,998,991,999,992,991,994,998,994,998,997,996,990,997,997,997,991,999,996,995,1000,1000,999,991,993,996,999,1000,998,993,996,990,994,993,1000,995,995,992,990,996,993,997,994,990,993,996,998,997,998,998,993,992,990,994,998,990,998,998,999,995,996,999,990,991,991,991,992,997,993,991,992,998,993,998,995,991,996,991,994,991,1000,998,996,994,991,990,991,991,993,994,990,993,999,998,993,1000,996,995,999,991,998,996,998,997,997,995,998,990,991,994,994,990,991,1000,1000,996,998,998,993,997,999,1000,998,991,996,992,996,999,998,997,994,997,992,996,994,997,997,1000,999,990,996,1000,998,997,997,990,993,998,993,993,996,997,998,993,993,998,991,996,995,1000,993,998,1000,990,992,992,992,991,995,1000,992,998,990,990,992,995,997,998,994,999,991,998,993,997,997,990,999,992,995,990,996,991,998,995,990,994,991,1000,998,996,991,990,998,990,991,995,991,990,996,999,998,999,1000,998,993,991,992,997,992,999,990,993,996,995,991,997,993,998,999,993,994,996,998,992,995,997,1000,997,996,1000,990,994,994,996,991,990,993,990,1000,1000,997,999,997,991,995,1000,990,996,991,996,991,990,990,990,998,990,996,994,990,1000,990,995,995,990,995,996,991,999,990,991,995,998,999,998,995,992,1000,993,990,997,993,991,995,1000,995,994,1000,990,994,992,999,992,994,993,995,999,993,993,990,997,991,992,995,990,994,1000,997,998,995,1000,1000,995,991,995,990,1000,1000,991,996,992,1000,992,1000,994,995,990,993,993,999,996,993,997,994,999,998,994,995,990,999,991,998,996,995,994,996,994,994,993,991,990,997,993,999,993,991,999,996,998,996,993,1000,999,1000,999,997,998,998,990,992,993,992,994,994,996,998,993,996,996,994,999,998,999,997,996,990,990,992,996,991,995,990,999,992,999,999,997,997,994,996,990,994,995,993,996,991,992,997,1000,994,990,996,991,995,995,995,991,990,994,996,995,994,995,999,997,990,999,996,990,996,999,998,991,991,994,991,991,998,995,991,998,996,996,990,1000,998,997,992,991,995,1000,994,996,991,991,992,999,1000,1000,998,990,998,995,995,999,993,1000,999,992,990,995,996,991,991,999,993,991,994,994,992,999,998,992,999,999,998,999,996,997,991,1000,997,998,1000,991,993,994,993,995,998,996,990,992,999,997,996,993,998,993,990,1000,999,997,990,992,994,995,999,996,993,995,998,999,993,998,997,994,997,990,992,996,995,993,993,994,992,995,995,994,999,995,998,990,992,996,993,990,991,993,994,999,992,997,1000,996,991,996,996,999,992,993,992,990,992,1000,991,993,998,994,991,998,1000,990,992,992,995,998,990,996,993,991,993,1000,992,996,1000,997,996,993,995,1000,995,994,990,993,995,991,998,998,999,999,1000,996,994,991,992,1000,992,996,999,992,999,1000,997,996,991,998,994,998,998,999,996,999,992,992,999,994,991,991,997,990,1000,994,994,995,995,999,1000,998,999,995,993,998,999}
{146,977,511,726,246,880,729,328,194,533,39,431,750,242,167,394,527,62,350,966,715,720,849,199,152,899,205,762,763,412,126,512,216,116,527,464,375,914,326,234,723,811,13,619,530,801,921,228,899,292,360,978,261,914,479,832,62,778,784,371,616,712,738,654,112,539,767,371,770,225,305,459,8,596,183,190,267,361,832,258,839,396,257,525,636,593,672,900,352,81,19,303,865,306,353,771,61,281,174,546,479,300,400,433,291,534,576,789,203,243,313,260,765,767,722,784,448,79,748,437,613,449,949,428,113,662,204,881,903,341,254,136,438,141,777,917,67,958,914,102,902,864,753,810,821,162,335,168,391,814,129,457,461,515,805,249,139,851,327,846,631,295,70,526,177,292,683,102,945,315,920,861,265,567,481,195,49,943,203,147,566,7,615,664,20,958,943,539,534,9,150,919,187,160,490,783,766,103,352,955,747,843,882,97,793,702,985,576,801,561,832,309,62,533,914,440,655,806,32,215,588,37,335,522,503,509,686,348,19,258,160,823,872,496,456,645,101,967,375,398,416,302,244,683,779,73,418,56,948,985,485,470,427,570,871,288,801,836,878,980,939,537,22,275,897,123,734,903,675,980,101,52,132,271,356,304,502,516,232,156,936,123,144,154,405,174,410,342,131,168,332,944,424,844,53,205,438,892,543,831,894,124,918,783,260,633,597,30,229,597,453,471,589,599,218,404,738,813,864,840,167,932,607,458,215,474,466,180,252,972,17,210,283,618,103,855,598,106,780,611,741,799,699,802,540,849,463,519,390,550,240,757,253,67,55,384,93,633,727,38,594,454,394,143,32,860,917,960,108,691,230,6,433,496,887,236,70,915,618,97,217,510,734,920,692,389,564,168,334,209,960,735,829,528,87,816,756,4,326,881,824,672,148,947,388,346,257,626,339,246,93,412,349,86,72,292,296,205,554,35,406,795,595,448,281,915,984,496,511,796,962,399,30,848,239,763,697,941,660,307,863,750,898,39,829,396,98,515,175,180,232,431,923,955,278,919,343,540,14,791,50,654,344,461,675,24,582,440,43,700,74,79,253,100,831,743,502,993,619,691,784,446,80,717,838,749,21,57,835,458,955,152,343,5,337,584,44,753,749,946,517,16,394,422,187,280,913,602,152,823,491,419,215,971,606,105,902,500,606,785,607,33,489,630,336,864,877,520,672,320,185,792,701,647,451,975,652,389,71,390,889,429,966,82,743,170,342,859,357,817,235,137,398,364,521,879,964,670,926,167,520,987,821,850,987,370,298,257,415,694,71,204,790,416,276,383,617,772,91,731,891,864,439,611,940,959,728,410,414,369,697,729,389,479,954,427,157,867,731,643,764,930,708,348,780,154,479,129,106,932,421,657,835,880,229,765,319,668,378,102,637,743,116,127,590,723,361,573,205,877,74,585,481,853,234,461,777,735,546,271,795,598,414,696,615,953,496,64,575,855,382,947,112,999,536,663,864,837,679,656,414,590,203,88,81,41,49,893,75,185,706,188,124,120,665,227,453,36,671,982,563,823,608,64,858,596,706,925,551,374,21,173,680,291,826,431,288,944,628,342,983,921,32,222,185,121,526,386,312,219,621,348,60,498,439,949,698,334,987,957,6,803,854,825,88,257,9,144,767,192,715,730,713,456,288,466,765,606,605,763,105,251,808,947,119,348,584,981,767,681,815,660,272,257,113,826,737,900,960,228,109,138,748,332,520,362,11,800,643,329,512,342,137,311,689,366,673,564,134,177,283,362,418,463,998,516,581,478,816,169,50,631,59,667,551,158,83,472,862,176,128,407,856,694,810,24,372,95,400,486,877,197,551,186,783,227,604,247,507,982,926,187,97,971,999,245,263,581,149,343,208,154,858,182,493,419,571,737,516,874,819,281,853,598,230,133,870,408,706,498,479,509,660,151,892,511,679,218,528,219,420,963,969,691,842,340,24,838,112,36,487,293,656,866,166,340,847,688,81,471,780,430,544,518,424,479,976,379,199,370,924,63,688,706,706,173,755,268,537,939,824,517,761,639,443,89,41,540,557,418,970,546,84,315,584,321,514,203,673,45,238,719,652,858,222,545,962,703,479,676,612,563,490,807,576,994,378,152,137,480,156,814,217,344,824,766,936,900,443,614,361,45,540,572,470,733,412,505,852,640,902,458,562,851,244,838,836,590,432,291,105,855,345,364,835,315,579,232,264,978,512,158,8,950,642,825,872,79,649,374,906,380,955,802,931,936,763,358,265,397}
Returns: 629201.8171659437
{997,997,994,993,992,999,997,990,1000,998,997,993,997,996,1000,996,999,995,995,997,995,997,991,994,1000,996,992,999,997,997,998,1000,990,997,993,990,991,991,1000,1000,995,999,991,994,994,993,999,996,995,996,1000,991,1000,998,995,995,1000,999,1000,999,995,999,993,996,998,992,994,991,995,996,997,992,990,990,1000,1000,995,992,992,999,994,991,995,993,992,996,992,995,999,1000,1000,997,991,997,993,995,992,994,998,995,994,996,992,999,996,999,999,993,991,992,996,1000,995,993,995,995,998,990,1000,997,992,994,994,993,994,993,994,998,994,994,992,995,996,997,993,991,999,990,990,999,999,998,996,1000,991,993,997,994,1000,1000,996,993,997,994,995,990,996,992,994,997,991,990,991,996,998,990,995,994,992,995,993,1000,998,990,997,991,1000,998,997,994,998,998,999,995,993,992,994,995,998,991,993,992,999,997,998,996,993,995,993,997,997,1000,992,994,1000,997,999,996,994,994,996,994,996,993,998,999,996,994,993,1000,991,1000,997,994,996,992,998,998,997,996,991,992,998,993,992,994,997,996,997,992,999,994,993,997,998,999,994,994,994,996,996,997,999,999,995,998,991,998,992,991,997,998,1000,997,995,998,996,994,995,991,995,991,991,990,996,996,990,994,1000,996,994,990,992,999,998,997,999,990,991,992,995,998,996,991,991,997,993,990,992,994,992,996,992,996,999,997,996,998,995,991,996,995,994,992,997,999,992,1000,991,996,996,992,996,991,999,991,990,990,999,996,993,991,993,998,995,996,991,1000,995,990,997,995,992,991,992,997,993,997,994,993,998,997,990,993,996,1000,996,998,996,996,998,999,995,994,994,998,998,1000,991,995,991,996,994,996,1000,999,998,991,991,996,993,990,992,998,999,995,999,991,998,1000,996,998,994,997,1000,994,992,994,992,991,999,990,991,1000,995,994,1000,999,993,997,997,992,996,997,996,998,1000,994,996,990,995,999,995,994,995,993,993,994,995,991,997,995,999,995,999,997,998,997,1000,995,991,998,1000,993,996,991,991,999,999,990,994,992,994,999,992,994,994,997,999,991,994,994,991,990,994,998,1000,997,991,996,994,993,991,998,998,999,993,1000,993,991,991,992,991,998,995,1000,995,999,995,999,991,994,991,999,1000,993,991,992,999,992,998,994,999,990,999,990,998,992,994,998,999,999,996,995,1000,997,992,995,993,999,990,998,1000,990,997,998,991,998,993,991,992,991,992,994,1000,993,992,998,999,994,997,993,1000,994,991,994,991,997,995,993,998,996,999,996,990,995,999,997,995,991,997,998,994,999,998,993,992,998,993,1000,998,999,998,990,994,996,993,1000,1000,994,997,990,998,997,997,1000,995,1000,999,995,1000,993,996,1000,995,995,990,993,994,994,1000,996,994,996,995,997,992,997,997,990,995,994,997,998,993,993,995,998,996,990,996,999,993,1000,998,998,996,997,999,991,999,994,992,1000,992,999,994,1000,996,992,1000,998,991,998,996,999,992,994,1000,999,991,992,995,992,996,991,994,990,991,990,997,999,999,993,999,996,993,994,996,996,996,1000,999,993,990,999,995,1000,994,995,999,998,996,996,999,999,992,997,994,998,996,996,994,992,997,994,990,991,1000,993,995,993,999,996,996,993,990,992,994,995,993,995,1000,991,998,995,999,990,996,997,994,1000,994,996,997,999,995,1000,999,991,994,997,996,993,992,995,995,1000,995,991,995,999,997,999,993,993,999,995,994,995,992,998,996,1000,993,996,992,994,990,990,996,993,998,990,997,993,990,1000,998,995,999,999,999,998,995,994,990,998,995,1000,996,990,997,990,991,999,994,1000,993,999,996,999,998,996,992,996,996,1000,997,994,998,995,991,992,997,990,991,991,994,995,997,996,993,993,996,1000,990,999,993,997,990,995,997,998,991,990,999,992,992,991,1000,994,990,993,997,992,1000,1000,1000,1000,1000,998,993,999,990,991,1000,996,993,992,999,994,1000,998,993,999,1000,996,998,992,995,990,991,996,993,990,991,997,995,999,1000,996,994,992,991,996,998,997,998,999,996,1000,990,990,1000,993,1000,998,992,992,999,995,994,997,992,999,992,999,991,1000,990,991,995,997,992,990,994,990,997,993,995,998,994,1000,1000,991,995,996,997,999,992,991,994,998,994,1000,990,1000,991,997,991,998,998,999,991,998,998,990,991,994,993,996,994,997,992,992,991,992,999,997,993,992,997,997,1000,1000,998,992,992,995,1000,996,992,992,996,999,995,992,1000,995,997,998,996,999,996,994,990,997,996,992,1000,1000,994,993,999,999,999,993,993,999,990,995,993,1000,991,1000,999,995,991,993}
{249,686,580,921,19,456,904,734,876,286,982,531,889,644,658,915,234,836,559,239,928,833,225,773,890,161,516,609,744,165,633,483,707,405,840,152,778,563,171,973,152,1000,974,102,507,6,148,35,322,890,305,321,889,248,908,882,56,179,641,784,28,732,872,243,724,576,99,356,318,743,693,309,578,308,87,815,526,38,797,134,772,364,302,326,583,506,877,301,405,246,913,834,45,596,131,960,218,595,373,64,475,557,307,541,787,356,513,108,241,752,836,751,346,361,863,780,446,551,626,673,587,494,364,228,4,601,303,42,60,804,900,470,83,463,956,55,37,242,328,857,407,910,683,268,939,898,933,626,164,388,490,434,711,877,474,32,491,417,351,350,741,231,262,750,795,955,466,52,192,572,927,510,380,984,27,941,868,264,824,166,129,851,45,667,956,348,227,668,229,119,28,858,288,583,757,630,167,962,576,17,956,254,712,460,502,361,176,187,415,640,224,252,138,626,763,193,421,288,422,912,88,22,842,563,439,481,20,202,972,496,217,448,353,558,20,681,740,802,640,126,625,962,436,733,341,522,915,926,238,179,233,154,353,761,268,650,57,952,897,992,787,542,38,823,458,412,313,605,572,153,979,358,347,31,877,142,441,989,723,468,921,534,19,901,231,630,219,899,800,166,566,278,808,208,187,830,381,957,613,255,127,300,888,8,530,884,828,644,149,890,767,957,980,72,382,534,619,158,761,346,42,427,909,656,932,118,337,835,493,346,180,619,571,375,542,5,763,402,428,222,878,523,633,172,773,145,479,309,114,948,75,198,39,412,132,860,77,59,965,611,914,800,453,285,747,219,185,622,75,180,920,125,697,888,822,872,613,415,576,615,273,755,676,993,350,660,641,826,764,877,881,308,241,905,235,320,59,88,968,262,973,637,154,556,532,210,899,402,125,781,867,479,133,823,879,6,506,311,164,11,934,618,7,677,529,167,120,397,612,609,49,493,739,380,326,618,611,710,897,540,853,556,524,317,965,466,513,919,927,96,117,961,29,931,402,546,525,811,188,180,601,990,921,333,976,823,981,505,171,623,973,593,115,892,13,944,294,901,889,724,94,574,236,127,316,707,545,539,144,836,930,948,944,478,14,791,395,45,259,942,402,471,308,748,110,460,650,827,158,332,14,889,963,626,437,934,462,977,860,56,210,315,439,480,176,66,529,647,868,910,389,883,652,581,263,671,277,372,411,588,621,281,56,766,641,188,951,98,356,59,493,491,425,946,842,181,582,454,532,491,713,428,441,447,874,858,780,354,896,363,996,761,535,175,63,256,299,246,685,191,191,950,346,709,614,856,984,465,587,251,294,11,247,368,317,115,329,805,37,216,950,214,131,795,557,172,927,717,342,73,850,462,782,975,350,768,193,650,366,382,390,439,881,525,570,127,6,169,532,791,351,446,227,430,134,313,404,254,600,125,832,715,833,902,147,679,995,892,912,716,325,501,860,79,997,771,619,840,73,389,458,577,331,611,680,167,721,611,375,550,557,487,150,736,316,561,328,978,109,698,829,771,470,36,662,266,71,941,454,746,410,989,987,79,280,495,32,410,67,419,104,926,520,501,922,204,651,119,467,547,886,665,545,673,369,231,656,343,603,966,807,800,234,815,606,394,852,204,631,397,116,899,582,814,412,468,184,931,481,698,136,472,164,863,683,460,482,983,527,353,749,57,872,543,332,786,360,71,951,512,558,296,138,906,413,296,585,453,801,962,612,934,903,142,953,920,621,662,343,731,676,752,168,484,352,210,560,583,52,626,888,461,986,135,543,491,328,439,275,693,137,313,134,293,167,396,214,251,475,849,1000,575,357,364,107,620,752,96,586,596,691,318,782,207,779,974,935,655,951,876,326,264,974,964,796,636,226,919,887,531,327,431,694,667,65,587,746,219,923,174,893,114,198,169,213,123,358,338,427,352,808,640,153,986,679,94,625,39,605,883,170,417,708,712,797,832,173,858,786,960,856,952,21,768,347,229,129,143,799,887,197,750,591,244,954,591,628,572,800,861,632,851,46,520,331,192,997,453,821,353,294,226,724,596,68,223,974,105,992,364,194,348,300,729,671,19,183,125,868,698,773,59,262,913,63,634,70,117,728,598,52,952,787,147,180,286,434,120,422,724,192,892,257,686,723,641,861,694,259,619,40,189,640,756,152,89,359,203,192,283,862,401,200,442,579,880,898,837,819,269,243,356,689,944,181,540,701,312,426,229,539,994,549,422,768,61,986,970,946,52}
Returns: 647323.6536299322
{999,990,996,997,995,1000,994,991,994,996,995,991,991,999,1000,992,998,999,993,993,993,999,995,992,1000,1000,997,991,990,996,992,993,998,999,999,999,991,998,990,990,1000,994,997,993,992,993,1000,994,997,1000,990,994,999,996,993,998,998,990,990,995,990,997,998,999,993,992,992,990,990,991,1000,1000,991,991,995,999,993,997,1000,991,992,995,995,993,991,996,994,991,991,992,994,996,992,999,995,993,996,994,993,995,996,995,1000,991,990,994,999,993,999,996,996,990,1000,991,998,1000,994,1000,995,1000,991,997,994,997,997,996,995,994,991,995,991,990,991,991,990,999,995,991,997,998,996,994,994,991,993,999,998,993,991,990,1000,1000,994,995,997,999,997,996,991,993,993,996,995,991,990,996,997,995,997,997,993,991,992,996,994,994,990,993,997,990,996,999,999,997,994,991,994,991,991,995,995,995,998,997,995,992,994,999,992,994,997,996,996,998,991,996,1000,996,999,999,992,996,995,991,992,998,996,990,992,995,999,990,995,994,992,998,991,994,999,995,995,993,998,999,994,999,1000,991,991,992,996,998,996,997,994,999,997,1000,996,996,1000,993,995,996,991,992,990,990,991,1000,990,991,998,998,998,999,993,997,998,997,996,992,994,991,995,999,993,996,997,995,995,991,997,996,1000,992,1000,998,993,999,996,994,997,1000,998,999,993,995,999,991,998,991,992,994,995,998,996,990,998,996,990,994,996,998,996,993,1000,997,990,995,992,994,996,993,992,990,998,996,998,996,994,991,995,994,998,990,992,994,998,1000,994,998,996,1000,994,993,997,997,995,1000,999,997,1000,997,998,991,998,993,991,998,996,995,1000,996,996,994,990,996,994,998,993,997,999,998,992,1000,995,998,999,996,990,990,996,990,997,992,995,993,996,990,993,997,998,998,996,998,999,996,998,991,992,990,996,993,993,993,991,994,995,996,995,999,999,992,996,990,994,998,999,997,997,997,994,1000,996,996,1000,990,993,991,995,1000,992,999,999,999,997,999,991,995,992,995,1000,993,993,990,993,996,991,995,991,1000,993,994,997,996,992,991,999,998,995,1000,992,997,998,991,1000,999,995,1000,994,998,996,994,992,999,993,991,992,991,1000,990,993,990,992,1000,995,1000,997,997,995,997,997,995,990,998,991,992,993,994,990,995,998,994,993,998,997,995,994,1000,991,999,994,995,997,996,993,997,990,1000,996,990,993,991,993,995,999,995,999,997,1000,994,996,990,993,991,999,990,995,994,996,999,997,1000,994,996,990,998,994,992,991,991,998,995,990,1000,995,997,996,1000,991,991,993,990,997,992,995,997,992,993,993,992,998,991,990,999,992,994,999,998,996,996,996,990,994,991,990,990,991,994,1000,997,997,995,997,996,991,990,993,996,1000,993,992,995,995,995,993,995,996,990,996,999,994,996,991,995,998,993,993,991,990,1000,996,998,999,995,991,993,1000,992,996,998,990,990,997,996,991,994,992,991,991,998,990,1000,996,998,992,992,993,998,990,997,998,995,990,992,996,1000,994,991,996,997,993,993,998,996,990,1000,999,994,992,996,996,993,1000,998,1000,996,1000,994,1000,996,997,990,995,999,993,998,993,993,994,993,996,991,996,991,990,993,1000,991,993,990,999,1000,999,995,999,999,997,992,1000,998,998,998,991,998,999,990,990,991,995,993,995,990,991,999,1000,991,995,998,996,993,996,991,1000,994,993,996,997,999,992,995,998,990,993,995,993,997,995,996,998,999,999,997,995,1000,992,992,998,990,993,1000,994,997,994,998,1000,1000,994,991,997,993,997,999,997,994,998,992,999,994,990,994,996,992,1000,998,997,997,998,990,1000,993,993,996,999,996,993,998,992,992,1000,994,994,993,999,997,993,992,993,1000,991,998,991,998,996,999,991,992,994,990,994,996,991,1000,1000,993,997,998,997,993,992,1000,997,998,997,990,990,996,998,991,992,991,993,993,991,995,999,997,997,997,1000,991,999,995,994,999,996,990,1000,993,995,999,992,991,990,999,994,997,992,990,999,993,998,996,994,997,998,999,997,990,1000,998,991,999,993,994,996,999,996,998,992,999,991,991,995,1000,990,998,996,991,995,995,991,999,996,996,993,991,990,998,995,1000,993,998,997,999,995,991,998,997,996,998,1000,991,993,1000,991,996,993,998,995,994,992,998,991,1000,999,995,993,999,992,993,996,998,994,999,991,994,992,999,996,998,996,994,998,990,999,991,997,998,992,991,999,999,991,990,999,997,998,993,990,994,998,995,996,1000,991,991,998,995,990,999,993,996,993,991,998,995,995,992,992,1000,998,997,990,995,996,999,990,990}
{896,436,160,593,546,602,900,398,180,862,259,668,575,476,120,700,763,716,562,696,516,42,643,982,342,366,445,861,305,988,667,135,4,399,926,909,43,844,217,411,211,451,739,476,343,760,337,771,571,693,406,42,235,360,968,442,251,612,999,482,128,920,822,260,162,979,506,408,545,421,790,627,255,166,986,771,645,216,697,184,568,175,938,423,752,345,450,503,864,57,550,597,386,772,875,404,986,594,764,515,531,51,806,717,291,393,334,575,139,200,209,576,777,794,292,831,90,799,416,574,754,223,507,723,114,579,739,358,195,905,258,248,401,30,48,509,110,52,3,59,896,791,85,775,563,955,763,173,508,833,582,990,203,595,793,250,733,730,480,277,407,682,488,663,417,509,799,341,416,269,665,803,658,867,955,961,55,326,679,328,73,766,582,992,930,923,31,320,937,679,160,471,181,921,394,546,910,11,992,658,189,306,249,293,357,445,336,80,816,570,528,473,491,267,750,941,74,775,970,957,834,901,928,439,311,205,100,355,726,200,613,859,286,737,1,684,871,260,345,505,758,342,321,644,174,755,141,800,428,338,183,444,329,97,362,151,370,318,915,410,926,909,358,400,303,876,797,799,43,597,666,943,315,524,225,558,571,39,816,853,914,469,987,959,764,660,55,593,507,114,577,341,741,401,536,138,674,449,699,387,938,378,766,600,858,717,424,678,743,219,367,681,320,999,641,449,808,373,462,546,484,624,751,773,768,895,217,933,35,528,766,625,360,492,358,591,368,976,251,531,185,827,697,384,278,283,770,762,591,375,988,624,979,427,776,277,419,337,643,493,824,702,113,879,613,379,122,603,352,805,553,276,904,224,46,54,501,1,56,27,91,367,327,562,122,259,665,554,626,417,873,477,144,506,221,699,512,862,667,801,13,392,315,520,743,249,273,503,255,213,169,285,778,66,57,748,292,882,346,883,787,842,694,841,864,97,497,85,649,233,749,995,670,98,536,385,955,108,380,231,101,655,954,368,495,918,476,14,165,193,165,812,969,856,770,436,977,183,82,983,903,581,732,47,424,199,345,828,31,524,292,654,867,298,866,25,599,54,698,670,999,595,628,97,355,11,47,859,207,196,914,45,207,379,312,536,79,876,376,208,775,132,889,573,888,145,650,311,346,498,988,789,185,603,404,901,948,185,404,550,867,722,32,631,552,317,475,663,313,448,392,99,626,124,278,903,480,283,281,208,533,626,360,744,42,716,566,231,519,857,560,141,962,175,141,65,260,384,718,420,93,869,151,364,235,144,324,643,676,186,146,508,383,870,409,996,852,527,91,632,806,623,223,53,547,728,418,143,489,197,512,995,344,463,537,466,291,434,432,102,206,267,478,945,682,683,411,126,165,86,608,128,968,969,498,350,336,484,575,880,1,594,19,435,873,912,923,41,597,229,570,369,729,679,42,572,168,742,656,125,335,520,394,420,281,292,536,831,552,909,164,525,169,455,58,558,531,501,799,710,392,403,548,41,314,367,70,392,168,405,45,928,317,892,619,320,92,168,441,382,43,502,141,805,247,795,320,114,639,600,643,153,928,366,550,194,171,369,443,239,487,423,926,203,712,316,847,449,15,875,420,574,627,727,672,440,875,92,834,195,651,409,41,419,296,207,909,607,633,369,127,904,544,897,188,381,59,323,781,180,386,162,188,513,709,189,195,892,847,869,683,897,75,945,60,498,499,89,136,235,388,498,860,519,761,483,599,950,378,475,259,825,958,269,623,937,131,60,730,371,123,531,970,230,644,279,873,138,781,899,199,936,958,385,83,188,200,855,402,985,968,228,503,82,856,201,666,563,280,752,434,90,89,446,35,282,733,30,625,911,197,138,51,440,436,463,124,860,451,407,149,937,447,47,616,729,775,244,475,691,446,851,418,771,72,276,917,626,27,101,562,532,442,69,409,575,460,513,637,467,768,216,797,668,47,771,327,558,428,738,831,48,425,289,799,397,104,564,74,985,441,670,397,425,926,115,779,742,450,474,284,297,461,248,45,739,160,225,990,578,252,97,790,886,381,772,16,221,928,564,347,141,291,427,936,539,97,500,740,635,87,489,668,629,528,817,929,942,129,86,831,450,352,79,582,336,946,457,384,18,272,326,175,95,709,65,950,421,19,147,468,217,45,208,520,610,549,291,660,93,294,1000,444,181,705,310,773,1000,581,876,907,590,350,25,63,482,316,19,294,526,195,822,515,944,974,343,132,387,817,50,715,59,284,939,540,68,608,47,661,807}
Returns: 615318.2091667172
{991,991,993,995,996,996,993,992,991,995,993,998,997,995,999,992,997,995,990,995,998,997,991,990,996,999,1000,999,994,992,1000,991,1000,992,995,992,999,993,999,995,998,995,993,994,992,991,990,992,999,990,1000,994,994,995,993,991,992,994,999,993,993,996,996,990,994,990,998,1000,993,994,999,997,998,998,997,990,992,994,990,996,993,999,990,997,997,991,995,991,990,992,992,998,999,996,1000,990,1000,997,990,1000,992,999,997,991,995,990,1000,1000,990,999,997,991,994,992,990,996,990,997,991,995,997,994,999,990,991,997,994,998,992,994,997,992,998,992,998,996,998,993,998,997,997,994,998,999,992,993,994,991,991,996,991,996,995,996,999,997,995,995,997,994,992,993,998,994,1000,994,1000,991,990,990,993,998,996,1000,995,998,999,997,1000,990,996,996,995,994,1000,995,993,997,997,994,1000,995,991,997,999,998,996,998,991,991,992,994,992,1000,993,992,999,991,992,990,990,991,994,999,991,992,1000,997,998,997,998,996,1000,991,999,992,995,993,995,996,991,993,998,996,996,994,997,990,993,992,990,993,990,992,997,993,1000,997,990,997,997,992,999,992,994,991,996,990,997,991,995,994,993,996,992,990,998,993,996,996,993,995,993,999,992,996,995,1000,990,1000,1000,992,998,998,997,992,996,990,997,994,997,992,1000,990,993,997,998,993,991,998,992,1000,998,994,992,993,994,994,1000,1000,996,996,993,996,998,994,995,995,993,995,997,995,992,992,998,994,998,996,1000,994,991,996,999,993,993,992,995,1000,990,990,999,996,996,999,1000,999,997,994,993,998,990,996,999,997,995,1000,991,993,991,998,995,992,990,990,998,990,998,998,991,993,993,996,998,990,997,992,998,995,999,999,995,999,994,992,996,997,1000,990,990,997,1000,991,990,999,998,990,999,998,990,999,993,998,1000,998,996,999,1000,991,999,996,991,995,990,993,997,996,994,994,993,998,994,993,996,994,991,998,992,990,996,993,999,994,995,999,998,995,990,991,1000,992,996,990,993,995,992,990,999,992,998,994,1000,999,993,994,994,990,990,993,991,994,990,997,997,990,997,993,997,993,999,995,992,995,993,994,995,996,990,994,996,997,990,992,990,994,995,993,992,996,991,992,993,992,1000,999,1000,996,997,1000,990,991,993,998,998,995,993,996,1000,999,991,996,998,995,995,999,993,990,994,998,992,996,1000,1000,991,992,998,995,990,993,990,990,994,991,993,994,998,990,992,990,998,990,996,999,991,992,994,991,997,994,996,991,998,995,991,997,997,997,990,994,993,998,998,998,995,996,997,999,990,990,993,1000,995,997,992,995,991,996,991,993,996,993,996,997,995,994,993,999,993,991,1000,996,999,998,1000,993,994,1000,998,992,1000,998,990,995,996,992,996,1000,993,995,997,991,997,991,991,992,991,990,993,991,991,999,990,992,992,995,1000,994,999,996,992,994,991,1000,996,995,999,995,1000,999,992,996,999,999,992,995,999,992,999,999,991,1000,998,996,994,991,994,992,993,993,991,992,1000,990,997,996,992,999,999,994,990,996,995,992,995,998,992,997,996,1000,994,996,994,990,1000,990,991,995,990,999,994,995,998,1000,999,992,997,990,994,990,998,990,992,993,997,992,996,1000,1000,995,993,995,994,998,997,990,990,994,994,997,994,999,992,995,1000,998,997,990,1000,993,996,991,991,995,993,996,993,991,993,999,998,997,998,999,997,996,998,1000,996,990,1000,993,993,995,991,998,998,998,992,996,996,996,996,991,997,995,995,990,992,991,1000,990,993,993,994,990,999,992,993,992,997,998,997,999,991,996,995,993,991,994,997,992,995,1000,999,991,1000,993,996,996,994,995,996,991,995,1000,991,993,998,992,992,991,991,1000,991,990,993,999,996,999,995,994,993,999,999,997,990,994,1000,995,991,994,1000,992,992,996,995,996,999,998,992,990,998,1000,997,993,992,1000,993,990,990,1000,1000,996,993,1000,992,990,1000,991,993,998,990,996,998,993,992,999,993,997,995,993,997,1000,997,991,993,996,997,990,992,992,992,999,990,997,1000,991,995,993,999,993,994,992,991,991,996,993,998,993,999,993,994,995,998,995,995,1000,992,995,994,997,998,991,997,998,991,991,999,996,990,994,993,998,1000,992,998,996,992,993,990,997,991,998,1000,991,998,995,995,998,995,995,990,995,999,990,997,999,994,994,1000,997,996,997,994,998,996,999,991,995,994,996,1000,999,990,992,998,997,990,990,991,998,992,996,998,997,996,995,1000,993,992,990,1000,994,1000,996,996,992,990,999,998,991,993,990,995,999,990,1000,996,990,991,990}
{976,432,469,125,67,820,628,896,379,8,130,661,862,300,13,33,922,892,257,380,950,899,816,943,782,802,348,67,736,734,393,933,100,656,687,861,14,392,812,549,716,473,135,573,29,906,298,119,757,324,118,156,434,452,818,253,446,448,2,762,110,497,591,396,744,951,266,112,85,452,598,749,683,717,159,128,63,73,369,159,505,441,762,34,271,152,614,796,982,912,635,376,643,245,490,708,507,950,472,692,548,480,561,572,846,640,435,755,578,691,744,247,638,758,102,627,118,422,799,937,34,534,201,957,691,546,162,57,57,142,553,252,315,535,170,135,579,565,902,57,363,651,978,335,1000,733,562,265,662,560,723,415,12,71,44,10,820,167,729,226,49,859,106,849,20,658,819,74,293,41,889,193,764,53,4,516,350,382,72,186,316,757,143,440,950,125,211,503,820,906,331,505,296,518,705,761,346,509,103,264,920,891,52,504,330,665,721,563,159,145,318,976,173,368,127,47,609,817,12,123,968,678,339,848,186,107,772,555,597,270,351,793,642,518,554,398,694,632,836,713,650,995,235,263,206,437,206,685,836,717,825,779,538,847,819,284,354,927,695,407,523,786,399,188,872,453,505,476,714,432,959,707,96,808,759,660,715,460,781,75,172,21,162,358,567,805,255,583,595,582,205,666,400,961,622,886,489,160,644,911,858,81,935,71,361,974,819,957,29,411,770,304,702,973,973,730,868,812,506,164,39,215,993,671,350,407,211,962,316,86,272,82,847,601,443,654,695,262,590,563,457,11,518,174,169,547,206,3,288,73,29,256,568,999,587,824,918,334,700,95,852,963,441,453,536,715,834,419,777,934,983,198,488,248,944,801,326,372,623,25,226,73,341,309,484,877,473,901,898,700,747,800,255,359,382,697,57,816,219,470,12,111,399,836,239,149,950,465,543,907,850,143,393,163,735,656,427,550,464,620,408,605,161,895,574,483,198,86,203,170,815,345,69,384,720,898,158,797,72,704,666,870,696,208,826,387,247,423,547,716,324,465,212,936,178,229,226,231,790,111,70,372,531,550,683,681,561,692,972,606,382,670,118,914,703,825,147,571,872,694,922,562,642,745,301,262,996,654,732,493,48,369,937,59,814,347,692,382,765,109,891,839,642,722,263,553,965,863,82,652,27,915,224,499,951,915,714,982,544,248,698,704,281,689,415,866,732,785,333,678,148,563,53,379,710,276,6,341,181,206,219,262,271,562,644,155,101,146,614,718,518,789,42,642,905,513,823,632,325,992,789,192,499,182,226,748,189,903,651,297,966,762,22,563,269,49,52,613,883,137,614,961,657,480,483,485,378,525,835,860,186,708,978,838,829,254,761,381,334,680,11,580,413,712,93,328,7,887,427,898,899,186,351,969,269,922,264,107,378,535,361,425,310,71,600,940,861,918,789,144,203,787,759,421,901,24,687,272,257,102,515,721,682,507,311,909,13,335,142,637,248,601,689,531,178,656,433,591,784,105,671,103,60,355,39,293,152,197,471,640,296,888,756,463,75,797,909,253,924,35,611,253,670,419,871,921,103,756,870,271,247,731,703,548,33,565,319,344,546,274,540,38,871,522,449,418,845,52,805,425,694,158,391,239,608,942,360,332,817,925,720,710,605,139,58,263,10,1000,501,70,675,94,680,512,410,529,174,281,560,638,489,698,198,630,153,285,488,269,900,206,316,756,248,3,419,796,994,44,797,237,273,242,157,796,875,887,496,84,454,888,711,603,98,335,275,393,505,40,632,770,660,647,946,925,471,974,203,226,300,472,523,701,720,86,692,576,79,347,577,682,685,203,82,249,498,988,753,879,223,910,948,467,628,626,747,473,700,788,416,212,997,930,286,762,177,705,375,690,219,269,931,43,294,561,372,950,603,343,731,734,729,116,857,664,240,445,43,340,337,819,715,234,289,879,65,83,339,759,253,709,464,304,889,277,165,152,69,213,956,14,104,788,825,989,483,827,276,439,283,158,914,761,450,158,763,375,869,220,611,391,135,28,738,712,292,293,305,766,571,2,550,689,344,283,677,526,86,714,991,939,132,279,392,996,411,186,836,838,138,469,724,403,652,612,478,945,211,461,764,779,559,303,904,529,526,345,41,193,747,754,508,476,811,68,703,204,824,43,462,77,401,965,583,683,569,11,650,479,916,523,803,391,616,941,391,807,607,707,748,970,301,678,453,241,688,435,542,230,599,420,75,557,177,33,375,884,338,608,10,897,84,755,314,121,104,646,809,808,957,683}
Returns: 617145.8065940394
{994,997,995,994,999,998,991,996,994,992,999,997,998,1000,991,998,1000,993,1000,991,996,992,992,994,995,995,993,994,992,1000,991,994,995,994,996,991,992,990,995,992,1000,999,995,998,999,998,995,1000,993,993,998,994,996,995,996,992,998,992,997,999,1000,993,999,992,995,997,996,998,990,993,998,996,993,993,997,994,994,996,996,990,998,992,994,993,991,997,999,996,999,991,997,995,991,1000,996,996,991,999,1000,997,993,991,998,990,993,996,993,996,992,993,990,996,996,995,996,991,999,995,995,996,994,1000,996,993,1000,993,994,999,999,992,998,991,996,996,992,990,991,990,993,992,992,994,996,999,998,997,992,990,991,991,991,992,996,998,993,992,997,998,994,997,999,999,993,1000,998,994,997,991,996,999,998,991,997,1000,996,997,994,991,999,998,1000,996,996,994,998,994,993,990,999,996,997,991,990,999,997,996,1000,992,992,990,991,990,994,991,990,997,999,993,997,997,994,997,1000,995,994,996,1000,991,998,995,993,991,992,1000,992,992,995,1000,997,1000,996,993,990,1000,995,996,998,999,994,992,1000,997,1000,990,997,993,993,992,993,997,997,991,1000,990,996,992,997,991,996,990,991,998,993,990,999,990,994,990,997,995,994,994,999,991,996,993,991,995,998,999,993,996,998,991,997,992,1000,995,996,996,999,991,1000,994,998,993,997,992,996,991,992,994,991,991,994,997,995,995,993,994,992,999,994,996,992,999,990,994,999,994,998,993,996,995,1000,992,994,998,995,999,991,1000,995,997,990,994,994,994,991,993,997,996,998,996,994,993,990,991,990,995,996,994,995,994,996,996,996,1000,995,997,991,991,995,993,999,998,1000,1000,997,990,1000,991,1000,996,999,993,995,992,998,998,995,999,996,999,992,991,993,991,997,999,998,997,991,993,998,994,990,1000,992,990,996,994,990,991,997,996,999,996,997,993,990,991,999,991,993,999,993,991,991,991,1000,994,998,997,993,994,993,990,992,993,991,991,994,990,992,990,994,994,1000,990,996,999,998,998,993,997,996,991,995,995,996,995,990,997,999,1000,991,994,1000,993,990,998,995,994,995,990,995,995,991,992,998,994,1000,998,994,990,1000,996,991,996,992,993,996,994,994,997,992,991,995,992,991,997,999,1000,994,995,1000,994,995,999,992,996,1000,992,996,991,995,994,999,1000,998,991,996,998,991,993,991,992,994,997,999,991,996,991,1000,991,998,994,993,996,993,1000,991,999,996,1000,996,1000,992,996,991,997,990,993,1000,999,993,992,998,995,993,991,993,997,996,995,990,1000,994,997,991,996,995,998,1000,999,995,998,999,990,990,990,998,992,1000,993,997,999,995,996,993,990,1000,1000,996,995,996,992,997,992,997,999,997,999,994,995,997,993,998,994,991,994,992,992,993,998,996,1000,990,1000,998,996,992,991,997,998,994,992,990,995,995,993,997,992,992,992,1000,998,992,996,995,995,991,996,998,1000,991,1000,995,998,995,998,996,995,1000,996,992,993,995,995,990,1000,993,998,991,993,991,995,1000,990,992,992,999,996,994,996,997,994,993,998,994,999,992,997,998,990,994,998,997,994,995,996,990,998,997,1000,1000,998,999,993,998,998,995,993,1000,994,998,995,999,993,999,995,995,996,997,990,995,997,999,997,998,994,996,994,1000,998,993,990,996,996,994,998,991,997,994,998,997,1000,992,991,993,999,1000,997,992,994,1000,996,990,994,992,997,999,990,991,993,992,996,993,995,995,991,998,999,1000,997,994,997,991,996,994,995,997,998,992,995,995,998,994,995,991,995,993,995,990,996,992,991,993,992,993,993,997,1000,991,993,991,993,998,996,999,996,995,990,993,996,994,1000,998,990,998,994,992,995,997,992,1000,991,990,995,997,996,999,1000,995,997,993,993,994,1000,990,1000,999,997,998,993,1000,992,993,999,997,994,994,992,995,999,990,995,999,997,997,998,996,994,1000,995,991,1000,1000,995,1000,994,990,991,990,999,1000,998,1000,999,990,998,997,996,996,997,991,997,990,990,1000,1000,995,993,994,1000,995,996,997,1000,993,995,999,1000,995,994,992,998,998,994,996,990,990,1000,993,992,996,999,992,1000,990,990,999,998,994,995,992,990,1000,991,1000,999,1000,993,996,999,999,994,998,990,994,994,997,999,994,992,993,1000,993,994,1000,995,993,995,1000,997,994,1000,991,993,990,990,993,997,991,991,997,990,990,994,999,998,993,993,996,995,991,996,991,991,997,991,1000,998,993,992,992,995,996,992,990,997,996,994,1000,996,994,990,995,992,995,997,990,998,1000,1000,991,992,997,1000,999,990,990,999,997,997,997,994,997,997}
{382,819,53,313,108,553,60,4,418,324,79,89,945,904,219,465,425,405,51,464,164,704,40,793,11,988,587,625,401,77,337,114,326,44,546,349,313,585,868,225,628,778,857,777,960,122,861,281,771,230,758,839,369,135,129,195,481,941,107,284,801,462,57,349,535,581,695,525,434,276,30,439,207,665,725,752,468,936,85,532,587,780,908,23,884,740,854,679,647,946,826,291,337,865,89,662,159,4,505,571,940,6,316,690,829,202,356,706,912,488,435,163,267,335,938,435,325,859,301,791,651,119,187,734,461,260,590,691,194,668,61,611,491,52,509,264,785,235,758,840,479,512,142,954,420,601,954,327,944,585,485,204,272,764,716,57,478,977,475,210,526,817,23,852,137,105,553,284,339,161,85,375,620,674,579,931,536,451,858,98,453,903,132,952,909,918,457,190,675,662,508,160,228,951,375,529,768,44,960,557,331,107,695,297,810,150,984,25,903,917,715,867,96,90,702,894,809,155,661,932,715,480,641,941,100,442,420,98,816,954,460,677,39,358,461,372,558,461,422,984,781,427,377,285,979,356,672,443,554,638,713,578,271,577,608,940,464,395,27,675,202,398,908,371,279,31,330,395,672,555,4,534,817,291,354,609,640,747,62,540,788,421,323,799,915,789,762,326,210,765,131,733,541,936,435,98,768,5,130,697,773,142,351,792,717,448,941,11,881,281,215,874,199,1000,956,774,256,596,169,78,87,719,474,39,586,898,851,897,726,93,636,897,56,276,307,925,161,449,583,153,835,351,822,359,752,116,520,566,328,332,947,277,251,251,612,851,935,400,299,488,732,475,873,912,302,187,912,61,976,699,501,1000,298,368,204,857,171,804,299,756,225,645,858,641,54,49,150,358,976,621,160,616,836,369,680,208,141,365,610,452,551,944,563,888,301,657,839,148,668,698,138,323,993,200,146,308,90,604,250,374,89,316,203,655,908,961,515,306,568,892,720,883,510,12,409,843,936,598,139,161,924,580,876,769,764,642,634,875,492,579,371,279,95,593,991,453,250,582,521,536,700,29,151,336,629,805,818,146,431,30,481,439,325,185,33,503,146,803,57,686,470,421,268,210,960,931,532,434,450,131,829,44,795,41,365,897,3,530,333,154,474,890,482,871,439,249,743,470,859,157,660,361,110,224,241,508,741,450,187,942,489,759,121,44,507,288,596,921,469,197,133,363,792,109,530,658,749,815,940,32,624,532,32,591,417,846,629,405,788,430,815,842,98,786,441,326,408,556,314,442,271,355,156,729,971,762,562,541,633,779,790,95,300,64,203,168,606,274,559,971,194,85,187,371,362,888,251,8,742,635,943,831,983,80,467,232,535,458,90,277,600,697,379,491,271,410,981,273,648,233,943,303,494,583,629,232,581,514,741,544,443,159,824,713,674,214,887,696,269,989,484,354,767,837,645,607,87,199,544,12,67,56,724,969,618,315,932,947,371,571,393,975,397,684,431,123,328,858,856,857,797,223,495,974,589,474,561,266,348,749,282,204,976,795,376,701,89,413,502,452,26,345,785,438,952,25,842,920,517,107,564,678,404,254,35,273,847,450,576,857,842,16,885,413,381,586,645,334,473,528,768,949,119,683,653,917,684,834,445,447,312,42,317,917,113,791,209,791,873,971,293,711,934,808,685,237,716,264,553,4,82,843,828,1,363,413,202,251,409,440,915,443,460,967,163,944,10,810,587,201,37,660,406,737,205,241,250,846,642,226,640,585,919,347,358,883,714,28,662,386,442,923,420,201,799,901,761,813,817,444,739,282,471,859,885,298,336,448,218,763,90,548,466,385,883,354,764,182,731,607,100,885,115,455,95,986,925,316,504,570,723,131,7,139,60,179,410,342,250,535,397,905,554,343,351,85,218,278,583,641,177,995,482,675,537,880,751,688,116,125,892,831,451,13,539,680,664,305,57,779,495,791,95,865,637,384,379,936,212,646,141,262,883,229,977,60,607,546,846,738,497,922,154,591,591,573,561,338,606,45,230,117,886,143,721,453,841,961,643,196,148,375,451,654,847,214,519,970,277,389,697,268,460,472,119,296,170,539,914,44,402,634,846,337,390,869,619,477,616,998,738,827,504,289,370,629,596,649,618,468,64,266,949,524,335,452,338,159,479,26,822,455,740,282,773,23,265,552,163,783,650,418,514,436,404,890,2,53,790,210,420,506,813,538,289,522,305,434,457,727,149,929,929,422,714,980,509,746,446,289,93,537,414,757,69,465,315,380,348,943}
Returns: 622063.8458140963
{990,1000,990,1000,997,999,994,1000,996,991,999,997,995,996,996,997,993,996,991,997,992,991,991,998,1000,990,1000,997,990,1000,992,998,992,990,1000,998,995,995,992,994,998,999,994,1000,1000,996,993,990,991,1000,994,995,1000,999,997,991,1000,999,999,997,998,992,993,993,993,997,992,996,992,991,993,996,998,994,1000,990,993,991,997,990,993,998,994,996,995,999,993,990,1000,997,990,991,997,991,1000,1000,998,990,990,994,995,990,998,994,992,998,990,995,991,991,994,992,1000,992,990,991,994,994,995,997,990,999,996,997,998,999,990,994,997,992,994,999,991,997,1000,992,991,996,992,997,997,991,992,993,994,1000,999,990,995,999,998,990,996,998,996,998,994,992,997,996,993,994,995,1000,999,996,999,997,992,996,995,992,992,990,999,991,990,994,997,1000,990,990,992,991,990,995,995,997,998,990,990,996,991,1000,996,990,992,990,994,996,993,995,996,998,999,992,999,993,992,995,995,998,995,992,997,994,996,992,991,993,995,1000,998,992,997,997,1000,993,992,993,994,991,995,995,993,990,996,992,990,992,997,994,996,998,991,992,991,1000,997,994,994,995,999,994,994,993,995,992,995,1000,990,999,995,992,993,991,991,994,999,999,993,991,998,993,991,996,998,994,993,1000,995,1000,1000,993,993,992,999,999,998,998,1000,993,1000,991,991,1000,990,993,992,999,997,997,992,999,994,991,997,996,994,994,992,995,993,993,1000,991,993,997,990,999,992,999,999,994,991,991,991,990,994,994,991,997,1000,998,992,991,999,1000,993,998,995,991,999,997,995,1000,998,997,998,995,994,1000,995,994,996,998,999,995,996,992,995,998,999,997,992,993,991,992,992,996,996,990,995,992,999,1000,994,994,992,995,999,998,997,998,998,999,998,993,995,991,996,997,1000,996,997,990,990,990,994,992,996,999,993,992,990,990,995,994,990,990,991,992,992,996,999,990,993,999,996,997,994,997,996,994,995,999,999,996,999,994,995,996,990,998,996,994,993,998,995,998,998,994,997,992,994,1000,991,992,996,999,990,998,990,999,998,996,994,993,1000,990,993,996,997,1000,996,994,997,997,1000,992,990,993,992,999,994,995,993,990,993,994,999,992,993,993,991,995,1000,995,995,994,998,994,997,996,991,997,992,990,992,998,995,999,991,994,993,993,991,990,990,991,997,995,1000,994,998,992,990,990,992,996,994,998,998,990,991,995,991,997,996,990,995,996,1000,998,992,997,994,990,999,993,994,996,998,994,998,999,992,994,1000,994,995,1000,997,991,999,995,993,999,997,993,997,993,996,993,998,997,1000,990,1000,995,997,997,997,997,995,999,992,997,997,997,993,990,997,993,990,997,998,1000,1000,991,992,997,997,997,994,999,999,997,992,996,993,991,994,994,996,993,995,999,1000,992,994,992,999,997,997,991,997,999,991,998,993,1000,997,990,995,1000,1000,992,993,998,999,991,997,998,996,993,995,990,990,992,992,990,995,998,991,997,992,990,998,991,992,994,993,997,997,996,1000,996,1000,992,995,995,998,995,995,993,995,994,996,992,997,998,991,990,1000,999,991,990,1000,993,998,993,990,993,990,996,993,991,995,994,999,991,993,991,991,991,990,993,990,992,990,995,995,998,997,1000,991,992,999,996,992,993,991,997,1000,993,997,996,995,999,996,997,999,1000,993,999,991,998,1000,999,993,997,997,1000,995,999,998,999,992,995,998,998,992,1000,993,991,996,992,996,991,994,995,993,996,1000,1000,991,996,996,991,997,996,994,1000,992,997,991,995,997,994,998,994,990,991,999,997,998,995,991,995,995,995,996,1000,994,994,992,990,999,990,996,997,992,990,990,992,996,993,998,996,993,996,994,991,998,1000,990,996,995,999,992,996,993,997,994,994,998,1000,999,995,991,998,990,994,995,993,997,991,990,992,998,999,998,996,994,992,994,999,998,990,996,996,992,991,997,997,990,995,994,997,997,998,992,1000,990,999,991,993,997,1000,995,990,991,992,997,991,999,990,998,992,994,992,992,991,996,992,993,999,992,1000,998,1000,990,991,995,993,1000,994,995,1000,998,998,993,996,992,999,990,997,1000,995,997,992,990,998,1000,991,992,999,991,997,997,991,990,999,990,998,1000,993,992,997,1000,996,1000,997,995,992,990,990,995,992,996,991,994,996,995,995,1000,991,996,993,999,995,1000,999,991,996,998,992,991,990,992,998,996,998,993,996,994,995,994,990,997,994,990,999,993,993,999,991,996,993,1000,990,1000,994,994,991,995,1000,998,992,993,999,990,997,999,996,993,995,994,995,991,996,997,991,994,997,995,999,991,996}
{645,262,300,724,681,426,64,101,461,211,260,288,823,983,382,929,477,575,371,22,823,737,167,638,92,713,230,438,723,405,114,593,364,525,461,606,184,243,468,96,487,126,924,835,742,541,465,167,247,310,525,512,573,101,806,801,857,965,795,552,779,435,943,791,745,827,666,170,412,732,257,443,187,212,109,935,739,842,406,760,892,638,583,303,480,808,402,946,886,464,448,93,5,710,223,285,335,942,778,622,736,849,998,755,148,339,249,429,237,525,76,933,484,15,31,831,727,944,533,50,524,598,849,732,14,17,902,247,121,658,652,425,76,69,191,393,192,522,557,316,794,732,487,32,965,120,996,795,552,535,694,291,442,18,245,706,718,967,202,832,695,15,752,124,223,34,552,190,861,968,955,384,739,566,380,63,933,724,498,597,192,813,203,397,734,313,32,76,588,81,842,343,674,791,28,404,413,447,541,422,145,380,266,94,66,798,66,479,689,800,945,40,89,738,353,250,284,939,565,231,171,120,498,641,368,247,32,416,156,219,136,35,468,510,641,702,562,825,515,212,534,893,880,264,339,772,817,726,363,395,215,643,847,670,522,804,702,113,297,340,307,864,867,113,915,959,248,648,205,879,702,964,308,728,978,941,389,892,301,801,490,647,680,874,846,974,907,42,381,826,952,203,394,144,90,610,717,230,204,179,794,486,194,742,186,77,293,719,992,868,445,897,540,807,545,826,509,15,503,852,311,23,601,946,193,964,518,315,980,28,764,230,839,169,988,641,723,874,757,914,401,779,978,480,97,63,89,253,801,850,482,437,270,277,440,742,552,521,998,81,667,812,750,558,701,414,610,883,147,581,924,448,828,785,123,908,61,848,349,507,75,191,54,361,821,88,631,563,465,694,541,300,831,600,238,116,977,869,449,103,903,795,969,47,133,148,246,532,507,275,426,552,82,241,434,464,488,121,924,1000,402,693,596,619,95,17,495,689,138,811,348,884,446,121,934,682,787,500,764,44,788,807,46,211,235,774,58,18,170,696,528,326,879,956,584,922,381,598,159,767,418,846,449,545,285,280,228,258,59,368,295,75,894,189,370,677,123,469,46,146,811,528,235,815,286,289,673,548,899,339,676,683,951,872,283,173,282,478,369,561,477,941,64,42,58,620,51,263,271,496,920,476,322,715,791,311,962,268,807,770,368,502,985,984,158,286,105,916,186,14,985,447,523,90,554,249,611,185,546,412,156,344,571,55,745,977,518,44,518,880,984,511,508,663,454,69,385,442,492,512,437,153,61,287,582,642,409,237,90,527,678,947,467,905,472,510,674,149,187,697,415,419,783,325,763,14,58,63,793,355,182,80,204,231,433,656,148,896,591,377,594,777,437,578,618,813,145,459,928,913,137,726,790,634,147,617,288,917,821,951,491,668,161,152,680,27,538,279,266,399,779,727,389,729,50,657,512,17,878,174,461,794,651,922,525,122,407,117,176,705,498,953,928,851,8,965,628,371,410,222,239,960,24,120,769,266,284,185,553,623,689,488,541,396,577,234,580,975,560,605,945,733,508,160,529,664,485,991,172,13,927,333,577,927,653,525,156,40,6,61,909,972,542,959,161,893,198,835,563,675,802,883,263,680,121,410,582,862,377,727,843,735,310,936,195,702,423,633,462,396,996,592,23,975,816,281,714,766,357,436,559,239,300,997,934,101,890,418,378,157,582,729,872,716,865,773,862,516,922,715,690,549,4,247,379,695,16,945,905,794,825,857,199,615,225,717,129,229,337,156,596,422,454,899,735,144,987,198,906,446,223,719,798,12,57,661,512,181,741,150,927,293,930,844,994,327,30,253,865,25,889,486,941,152,393,24,947,85,401,615,162,687,787,613,797,272,27,889,270,548,901,964,878,606,420,135,902,373,974,233,740,484,61,35,35,169,684,556,102,593,661,174,170,75,620,990,114,717,429,914,331,316,181,733,425,839,594,779,157,365,908,928,910,181,888,326,551,582,591,652,173,75,902,714,628,851,672,914,195,811,493,398,960,988,757,747,730,854,667,699,347,932,294,719,324,77,615,164,601,996,695,460,52,908,827,951,90,687,489,20,361,525,462,690,27,882,265,147,616,507,396,518,733,359,491,830,205,569,628,256,376,968,488,657,345,298,963,926,920,958,124,859,920,9,159,79,266,221,11,89,982,136,951,618,826,484,280,292,780,793,639,98,31,715,209,228,417,401,155,694,487,255,281,501,514,521,795,300,788,457,441,152,480,303,38,460,218,848,642,175}
Returns: 628618.6212262625
{992,991,991,991,999,990,1000,995,997,997,993,992,996,991,997,994,998,996,990,993,999,999,999,990,994,998,992,991,997,990,998,990,990,992,1000,1000,995,997,1000,995,991,995,994,998,993,993,1000,994,1000,995,992,991,999,993,994,993,1000,998,998,992,993,996,994,998,994,996,996,993,1000,996,992,993,992,991,997,990,996,995,1000,992,995,999,992,996,996,996,991,999,995,995,991,1000,996,993,993,992,997,995,997,997,990,996,995,1000,998,996,993,990,1000,994,998,991,1000,997,999,990,999,993,999,990,995,998,994,990,994,991,990,990,990,999,992,993,999,997,991,998,993,991,999,991,996,994,993,993,998,994,990,999,991,998,994,996,999,990,995,990,991,999,990,994,1000,997,997,990,990,999,994,999,997,991,996,999,1000,992,994,997,1000,993,994,991,995,1000,998,991,990,999,999,995,1000,995,998,994,992,997,993,994,992,998,994,996,998,996,993,998,992,997,998,995,998,994,996,997,990,992,995,998,995,999,995,993,991,995,994,996,995,998,990,999,993,995,996,997,997,992,996,991,990,998,998,997,991,992,1000,990,994,1000,999,993,991,992,998,990,996,991,997,993,991,997,990,999,993,992,992,996,997,991,995,993,1000,998,991,991,992,1000,999,990,994,998,999,999,994,998,999,993,990,990,995,993,997,993,995,992,1000,998,991,997,992,993,995,999,995,991,997,1000,997,998,990,995,991,1000,998,1000,995,992,995,1000,991,999,998,993,992,995,993,996,990,999,998,997,994,992,992,1000,1000,997,998,1000,998,1000,999,1000,992,999,1000,993,999,997,1000,997,993,999,995,990,1000,997,996,996,995,998,990,998,991,994,991,999,992,993,990,990,990,992,992,998,993,999,999,999,993,990,999,997,995,994,998,994,997,998,999,997,997,996,992,992,993,994,991,997,999,995,995,993,999,994,999,993,999,993,999,997,998,999,997,990,990,990,998,990,993,991,997,999,993,990,992,1000,995,996,998,994,993,998,1000,999,1000,995,995,994,1000,991,992,996,998,994,994,998,992,993,990,1000,990,1000,999,1000,997,993,995,990,999,991,992,992,990,993,995,994,999,997,991,992,990,990,994,999,993,993,995,995,1000,999,1000,997,996,993,994,997,990,994,997,992,998,999,991,997,999,991,1000,998,990,999,994,991,1000,997,994,998,991,991,998,992,990,991,996,991,994,993,991,999,991,994,996,996,994,996,1000,993,991,993,991,995,999,993,992,990,1000,995,996,993,990,997,990,995,991,991,997,996,990,1000,991,996,991,994,998,1000,993,992,993,998,996,997,996,994,999,996,991,990,996,992,996,999,998,1000,993,995,990,998,998,999,990,992,1000,1000,998,993,1000,992,991,990,1000,995,992,991,992,997,994,997,991,997,990,995,994,999,997,995,994,1000,993,990,992,998,995,995,995,990,990,991,1000,998,997,991,996,991,996,991,1000,994,999,995,990,998,998,993,991,997,998,998,992,997,993,991,994,1000,994,998,997,999,1000,992,997,994,1000,996,992,999,993,1000,994,996,990,995,990,996,999,998,995,994,999,995,997,999,995,995,990,998,992,998,993,997,997,997,998,1000,993,994,994,991,995,996,996,990,991,998,998,996,996,997,999,991,992,990,991,999,1000,1000,994,995,990,999,993,991,995,990,996,995,996,990,996,994,1000,994,995,1000,990,999,997,1000,991,998,994,997,994,992,992,998,999,993,990,999,998,995,998,995,1000,990,997,995,995,996,993,1000,994,994,996,995,995,996,991,997,996,1000,997,990,997,997,993,990,991,995,991,998,996,996,998,991,993,996,996,994,999,992,992,994,996,992,990,995,998,993,995,1000,993,991,992,994,990,990,991,996,998,990,1000,992,996,994,991,998,992,997,991,993,993,999,998,991,993,999,995,994,993,995,991,993,992,997,997,996,995,991,994,993,999,999,999,996,993,994,999,994,990,995,991,992,997,999,999,999,995,1000,997,992,992,990,992,998,990,996,998,996,992,994,998,993,997,999,1000,999,999,991,996,997,993,991,992,992,994,994,990,992,998,998,1000,995,994,995,995,997,994,992,999,998,993,999,996,991,998,991,998,991,997,990,996,994,991,998,999,1000,998,993,994,996,998,994,995,993,991,992,994,1000,993,993,1000,998,991,998,998,993,999,997,996,993,991,997,992,999,993,997,998,994,992,995,994,994,991,991,1000,999,1000,996,992,995,996,991,992,999,996,992,1000,993,993,996,992,996,995,998,998,994,993,997,995,992,994,1000,992,996,997,996,993,990,998,998,996,992,994,997,995,999,994,992,990,996,996,993,1000,990,992,995,1000,991,999,1000,993,994}
{249,491,435,313,784,91,358,479,358,28,683,864,530,642,610,1000,522,898,168,557,388,557,181,890,511,797,991,589,228,57,1000,503,949,891,432,697,621,902,565,507,760,176,873,199,544,211,123,719,695,8,509,699,928,873,327,168,781,467,518,407,542,836,660,983,809,447,627,301,932,778,182,930,234,604,244,561,427,942,404,685,90,574,582,8,431,140,331,163,787,94,451,484,508,213,984,510,909,921,644,392,976,451,946,558,361,701,94,854,17,755,732,852,495,172,225,185,533,550,44,567,72,359,175,644,239,723,194,900,166,637,817,680,725,109,265,769,389,829,754,105,488,291,792,904,31,714,706,931,156,732,34,658,994,596,981,805,408,508,120,117,633,840,942,255,318,171,627,359,848,498,646,216,111,497,395,910,67,434,95,526,579,150,622,771,965,596,751,355,638,528,544,563,39,316,268,784,757,307,253,637,398,790,595,971,266,455,443,235,392,133,886,634,767,745,153,29,925,656,890,787,135,12,791,609,585,253,750,950,861,704,996,777,943,41,384,289,710,472,142,706,631,664,868,380,942,834,528,308,77,881,513,573,579,172,566,387,990,353,544,149,463,592,499,417,982,765,567,732,81,404,471,18,918,674,249,665,410,251,983,466,869,736,879,301,262,159,51,821,780,204,752,426,863,14,597,504,219,830,529,255,669,247,896,396,810,590,26,728,639,749,114,815,224,850,75,48,472,271,238,918,837,884,421,671,525,840,967,395,417,885,794,214,422,967,338,511,460,861,608,971,580,640,157,846,22,63,950,13,136,410,528,300,188,834,791,64,31,48,38,206,505,40,582,623,216,580,386,634,32,448,689,23,243,692,518,199,832,732,303,397,703,792,565,990,53,969,790,762,277,234,137,411,936,786,627,655,360,490,763,51,374,559,369,55,524,276,549,893,891,283,312,535,285,904,333,454,139,39,782,844,927,390,897,688,292,181,225,396,363,70,45,725,937,642,526,353,280,758,579,790,340,7,223,269,43,712,490,880,180,250,565,504,111,922,911,20,139,269,555,856,948,493,624,205,939,624,438,130,651,150,187,331,699,120,285,586,823,120,965,717,734,122,617,492,377,919,630,43,139,758,230,217,309,819,924,788,787,399,656,595,641,1,737,498,606,58,929,493,49,674,794,462,227,606,592,807,887,675,522,644,398,950,111,343,630,324,869,931,750,567,126,274,938,543,151,44,792,32,208,147,855,526,216,696,245,450,68,641,873,462,472,811,81,918,365,532,845,85,594,908,869,425,559,571,989,89,941,967,316,829,482,237,476,639,8,369,82,809,547,567,333,543,438,731,262,926,774,521,649,815,417,728,135,204,56,591,331,675,485,230,46,865,347,615,886,244,80,336,527,114,698,987,984,453,351,138,34,114,297,742,765,941,51,291,902,561,978,204,159,960,556,737,390,485,826,169,682,549,314,145,916,181,853,819,458,509,270,911,864,420,878,827,451,942,70,800,557,316,69,363,159,366,101,556,274,513,798,963,227,697,657,70,420,582,760,444,757,589,786,925,201,759,505,361,268,928,626,423,441,441,828,674,573,479,268,394,383,59,687,606,31,976,457,400,591,251,576,895,951,147,675,150,329,448,520,892,91,476,415,205,17,303,130,209,534,691,686,317,630,568,395,892,397,273,59,975,156,355,114,302,127,486,800,994,479,883,178,176,368,712,890,226,289,147,101,576,637,95,991,729,899,121,483,673,302,784,645,971,63,406,340,581,594,278,266,910,179,467,461,693,639,643,732,17,468,841,237,238,762,633,608,591,16,985,614,992,537,975,320,936,770,625,122,379,325,334,823,236,865,785,129,395,294,742,560,214,897,864,775,76,155,492,774,896,991,421,228,462,95,784,460,75,792,556,225,269,665,626,517,302,736,34,39,713,589,780,901,478,214,541,320,209,746,747,822,394,490,730,484,895,808,83,297,791,497,931,562,185,277,555,597,771,862,696,696,810,905,907,403,647,774,539,714,63,730,255,705,565,572,556,440,184,235,386,763,466,146,784,683,120,344,475,667,244,536,465,69,91,263,989,304,156,319,600,157,685,391,807,776,840,668,440,490,431,802,806,579,498,189,815,530,69,18,459,88,103,885,429,649,952,87,189,146,691,892,534,582,312,175,516,818,79,816,619,46,328,183,262,599,590,808,3,433,216,121,323,631,615,726,488,755,787,217,797,739,104,14,459,273,189,16,469,319,292,138,81,476,786,947,940,395,282,711,475,351,382,94,897,384,278}
Returns: 635485.9664284241
{997,990,991,992,991,993,994,996,991,993,998,996,1000,996,990,996,996,999,993,998,994,1000,991,998,991,996,994,997,992,995,999,994,995,999,996,998,997,998,993,990,991,995,999,993,998,1000,996,995,999,996,996,997,1000,995,995,998,993,994,995,996,1000,1000,996,990,997,995,994,991,993,994,995,998,995,1000,991,990,994,998,999,993,998,993,996,991,1000,998,994,992,998,991,995,990,999,990,994,1000,994,992,992,1000,998,993,994,993,994,995,996,991,1000,996,990,999,996,996,990,994,990,995,991,993,992,991,994,996,994,994,999,1000,995,992,990,994,1000,998,994,1000,999,991,993,999,995,997,999,995,998,996,997,996,995,999,996,995,997,1000,998,999,991,999,997,999,999,993,996,999,994,991,994,996,1000,998,998,998,996,996,1000,994,991,1000,992,992,997,993,1000,997,998,998,996,997,990,999,1000,997,992,990,997,1000,991,991,1000,997,991,993,992,990,999,993,997,998,1000,992,990,993,991,997,994,994,1000,999,991,997,996,1000,992,995,997,992,993,992,1000,990,999,992,999,990,990,993,998,998,990,990,992,994,996,993,997,998,996,1000,999,997,992,997,993,999,996,1000,1000,996,997,994,990,990,990,999,998,999,1000,990,995,993,998,992,999,998,993,996,996,990,995,990,999,998,991,994,994,998,1000,999,990,995,993,993,993,995,992,990,992,991,990,994,999,990,997,997,992,996,993,1000,997,994,993,990,996,992,995,993,996,997,991,1000,991,998,996,991,993,996,993,993,999,995,990,992,990,1000,1000,994,997,990,999,997,997,998,990,995,995,994,992,1000,995,999,999,999,993,992,1000,994,1000,992,998,994,999,995,990,996,992,990,992,997,990,990,995,997,998,992,1000,999,995,994,990,993,990,994,994,990,1000,1000,995,1000,993,1000,995,990,990,997,991,1000,990,996,991,999,990,1000,999,996,997,999,997,993,991,997,995,993,1000,997,1000,996,995,992,997,996,994,992,996,1000,994,997,990,994,994,1000,995,993,995,995,999,996,995,997,998,992,1000,992,992,992,990,1000,998,997,997,993,993,991,999,994,997,1000,998,1000,999,996,996,994,997,1000,996,992,992,995,997,997,997,991,997,990,993,994,992,999,991,991,990,993,992,998,999,990,993,993,992,999,993,999,996,991,993,997,994,991,997,994,997,997,997,999,996,1000,996,991,1000,992,1000,997,993,994,995,998,995,994,1000,994,993,998,999,1000,997,1000,998,990,994,990,992,996,991,997,994,997,999,992,998,998,1000,996,991,992,991,994,992,994,992,994,993,999,991,991,998,990,991,998,999,995,995,993,990,995,996,990,994,997,996,992,995,994,992,994,1000,990,997,990,1000,994,997,999,994,993,997,999,996,993,995,991,999,999,995,996,998,995,992,993,998,999,999,996,991,993,990,996,996,999,993,994,995,992,997,993,993,991,995,995,994,998,998,992,999,991,993,995,992,991,992,993,994,991,996,999,993,1000,998,1000,1000,999,1000,998,1000,990,995,991,993,1000,998,995,992,993,990,994,992,994,998,996,992,992,991,993,994,992,997,996,1000,995,992,1000,994,998,993,1000,993,994,992,992,994,997,991,993,997,993,991,993,993,991,999,995,997,998,992,992,998,998,992,997,996,995,997,990,993,994,994,995,993,991,998,996,993,996,998,991,998,997,991,996,999,994,993,996,1000,997,996,998,995,996,993,991,999,996,992,990,994,997,994,1000,992,990,999,998,990,997,990,992,1000,990,992,993,997,1000,1000,993,995,991,995,998,1000,992,994,1000,990,996,993,991,993,994,990,995,999,992,1000,991,993,993,996,994,996,997,995,999,996,991,997,996,997,993,993,992,1000,997,997,999,995,990,998,998,998,992,997,991,999,997,992,999,999,995,995,997,998,990,996,991,993,996,999,990,997,990,995,990,991,995,992,991,995,997,998,1000,990,990,999,996,995,993,990,1000,995,995,994,993,998,1000,992,999,1000,997,994,998,994,998,992,990,994,990,995,990,998,991,991,997,999,990,996,1000,1000,993,999,998,996,995,997,992,994,999,990,995,999,993,993,1000,992,992,1000,1000,994,990,993,996,995,996,994,999,997,996,998,991,992,1000,1000,993,997,994,999,992,996,993,992,999,998,993,993,994,997,995,991,995,995,993,999,999,991,995,992,991,995,993,991,990,994,999,995,991,999,996,992,1000,994,990,997,992,1000,999,990,998,993,1000,995,999,995,999,997,992,996,994,993,996,999,997,999,996,991,998,995,998,993,990,997,995,997,999,998,1000,997,995,991,999,995,997,998,996,995,992,997,999,1000,993,998,994,996,995,998,990,998,995,997,994,993,1000}
{119,307,504,821,708,137,71,38,546,956,640,232,401,237,41,795,675,893,907,806,484,897,890,500,270,48,908,537,130,380,883,882,734,966,989,235,303,183,311,764,627,47,191,381,503,871,244,890,317,352,189,145,669,141,195,761,137,121,385,45,235,889,510,533,645,394,599,932,570,300,516,334,871,386,8,273,295,229,743,569,640,498,288,940,223,385,765,45,361,130,102,948,885,107,461,10,872,663,394,862,914,730,748,414,217,280,139,828,748,822,82,8,468,503,485,429,406,816,286,76,952,603,461,829,315,787,497,915,487,261,686,911,438,420,295,371,517,148,730,360,178,417,297,25,232,298,86,911,805,871,780,858,42,425,900,204,397,384,137,480,39,587,903,964,516,927,201,249,278,824,211,458,138,738,753,865,14,684,924,437,537,758,755,277,252,767,699,18,148,385,117,970,221,689,716,224,617,553,40,986,632,107,729,117,553,432,240,233,844,701,103,753,694,228,612,947,290,257,44,409,497,895,115,353,787,251,413,780,382,751,949,897,578,564,835,115,108,272,311,585,243,238,996,495,45,591,293,310,811,413,333,706,296,472,708,206,720,834,514,423,946,762,904,389,456,580,416,648,887,617,873,659,15,900,493,627,987,995,190,986,524,314,739,688,582,203,591,876,656,365,651,713,519,515,249,943,681,662,882,202,257,120,29,266,292,120,495,135,747,937,293,367,548,532,17,85,89,44,47,893,549,876,685,300,206,770,474,327,725,991,597,693,12,685,165,321,830,527,666,972,828,39,599,472,15,306,563,339,14,400,657,633,590,493,78,486,83,516,243,82,350,220,568,837,755,674,299,135,550,555,425,247,711,68,759,40,933,968,727,601,27,957,266,224,380,677,519,47,525,616,674,234,84,530,377,787,537,369,661,945,333,313,196,668,807,207,988,881,287,622,369,994,533,768,203,711,342,710,793,297,778,701,863,276,957,929,365,9,747,677,544,707,64,692,905,235,655,571,212,475,399,70,670,110,188,582,746,466,395,437,902,409,787,315,670,389,484,806,68,412,248,87,388,124,927,738,725,185,373,983,476,821,530,987,192,771,658,432,832,848,873,256,442,979,267,315,738,913,890,731,902,732,764,881,123,940,946,260,78,178,358,993,595,533,743,350,188,32,636,464,33,117,691,354,219,845,34,510,779,75,597,507,94,156,519,590,759,471,782,696,875,745,235,146,59,193,1,115,159,435,100,20,760,594,767,198,124,153,576,562,97,959,954,472,874,206,123,703,232,392,777,226,17,978,61,506,184,944,532,140,666,513,827,975,739,68,689,275,257,677,878,130,373,731,217,52,899,867,714,624,485,776,246,140,145,475,771,424,515,345,431,368,389,549,159,315,722,463,634,79,297,384,500,262,683,115,782,561,948,970,340,881,818,376,20,450,630,527,880,560,485,462,515,247,437,576,12,975,453,749,538,353,121,253,901,46,787,112,667,252,850,814,600,584,473,165,243,751,826,565,433,152,311,227,434,413,906,635,139,915,883,96,514,578,682,340,13,503,650,976,241,622,671,58,531,132,480,118,416,341,565,852,206,538,152,24,22,610,690,279,646,463,639,295,522,709,128,98,66,730,224,441,206,961,148,838,746,171,741,252,687,583,903,423,155,926,509,549,909,874,540,327,749,887,739,410,286,167,173,945,667,300,475,187,833,155,373,157,820,804,377,910,400,516,118,281,116,415,883,903,374,955,374,871,794,236,553,697,466,79,723,76,120,905,662,571,437,738,729,510,932,46,317,298,884,725,960,834,757,263,672,939,452,994,835,528,512,422,26,759,74,765,742,538,6,251,864,595,110,190,74,763,746,535,136,270,501,452,141,592,775,412,331,866,291,453,104,948,537,547,140,959,144,479,380,541,4,206,760,135,707,496,175,287,556,489,150,366,937,959,90,109,351,254,771,93,756,286,956,568,167,495,628,86,652,396,342,29,968,194,656,410,73,942,393,335,669,912,754,97,749,145,944,174,846,654,12,332,292,374,72,612,378,757,944,257,683,855,511,495,254,838,764,708,523,167,617,672,42,54,13,480,157,409,799,252,752,220,90,940,22,193,595,356,83,520,477,85,851,845,818,52,291,860,731,359,580,469,450,454,174,121,506,826,87,766,205,181,893,824,206,525,110,747,946,623,648,994,17,89,968,744,370,745,412,225,414,958,949,351,642,363,240,227,413,775,466,206,913,108,877,372,133,790,363,742,877,543,656,3,468,353,965,311,812,125,922,535,914,841}
Returns: 620610.7503035761
{998,993,998,1000,995,996,999,996,998,993,999,997,998,999,999,996,990,990,998,996,1000,998,999,994,990,1000,1000,990,994,997,999,998,990,1000,992,994,999,990,995,997,998,991,995,995,991,995,995,995,992,992,992,997,997,992,993,996,991,990,997,998,994,997,999,990,994,992,992,992,999,998,993,993,998,993,990,999,991,994,995,1000,996,997,1000,1000,994,999,991,1000,996,990,1000,993,990,990,995,996,991,1000,995,994,998,1000,1000,1000,995,993,997,995,1000,994,1000,996,997,998,995,993,1000,998,997,995,999,991,993,999,994,998,990,993,993,997,999,1000,1000,994,996,991,992,993,990,990,996,1000,992,990,994,1000,1000,995,993,994,1000,1000,991,994,995,997,993,993,990,991,995,999,1000,995,996,1000,999,991,999,998,998,993,999,991,1000,995,991,990,993,993,993,995,996,996,992,999,993,993,998,995,996,999,990,998,999,1000,994,999,999,990,997,998,1000,990,995,998,993,990,992,995,994,992,994,993,994,1000,997,995,994,998,999,994,993,992,994,995,990,999,990,990,999,993,991,993,999,999,994,999,991,997,994,991,998,999,993,997,1000,994,994,997,994,1000,994,990,991,994,996,994,995,998,990,990,997,995,998,997,1000,992,1000,994,996,994,999,990,991,994,992,994,997,993,990,995,997,997,992,998,1000,991,1000,996,992,995,990,1000,996,995,996,998,990,994,991,990,995,996,991,997,998,995,997,993,990,996,991,999,999,999,995,992,999,991,996,997,999,998,992,996,999,996,995,1000,999,996,994,995,999,995,998,998,996,990,996,991,1000,998,992,994,997,994,997,999,999,996,990,998,999,996,997,998,1000,1000,992,992,1000,992,990,991,1000,992,996,990,1000,998,996,992,995,993,991,997,992,992,997,995,992,997,993,999,990,1000,996,993,1000,997,994,993,994,1000,993,991,993,996,997,994,991,990,990,993,990,996,997,991,999,997,990,990,995,991,1000,995,990,996,991,998,990,999,997,990,992,994,991,998,990,1000,996,999,999,997,999,999,992,1000,990,997,1000,990,997,993,991,995,991,994,999,994,991,998,992,993,993,1000,998,993,999,990,998,990,995,998,990,1000,992,999,998,993,991,996,1000,995,995,991,992,1000,1000,995,997,993,994,994,998,1000,993,992,997,991,999,990,995,997,991,992,998,996,999,992,996,999,998,991,998,997,998,990,996,990,998,994,996,1000,999,991,992,997,998,993,997,997,991,995,994,993,992,991,1000,996,990,994,994,997,996,991,995,998,990,992,1000,995,995,998,993,995,994,992,991,993,1000,992,1000,1000,994,996,997,994,999,991,995,997,996,991,997,1000,999,994,992,995,990,995,997,999,991,995,994,998,998,998,998,992,990,992,994,995,991,999,999,992,999,992,993,998,995,999,990,998,999,993,991,991,994,990,992,990,994,1000,999,992,997,991,996,990,999,994,998,997,990,996,990,997,993,994,992,997,990,990,990,993,997,990,998,994,999,994,996,996,993,992,997,992,1000,997,991,996,999,991,994,997,990,992,998,993,994,997,997,1000,1000,1000,990,991,1000,995,990,994,992,997,991,997,1000,991,998,998,996,1000,998,998,995,992,994,999,997,993,995,995,995,1000,998,996,998,990,997,1000,994,991,996,991,993,996,994,995,991,991,992,995,992,995,995,998,999,996,994,997,1000,993,992,995,997,999,994,1000,993,992,991,993,996,994,994,992,996,995,999,992,995,992,998,995,998,997,994,991,1000,990,991,995,992,1000,997,1000,992,1000,991,991,993,998,999,994,997,1000,997,998,994,990,999,991,995,998,993,1000,993,990,993,996,997,996,994,999,992,997,990,1000,992,993,997,993,997,996,995,994,995,999,999,992,991,996,991,990,993,993,999,998,999,996,991,990,1000,997,995,998,999,998,995,995,993,998,994,998,994,998,993,992,996,990,993,996,999,990,998,999,990,990,990,993,994,998,1000,991,996,998,993,995,996,998,993,993,993,995,991,995,996,997,994,997,999,998,996,998,991,993,997,994,991,992,992,996,991,991,998,996,997,993,998,996,998,994,998,993,993,995,991,999,995,998,995,990,997,991,996,999,991,994,991,990,992,992,990,997,994,997,995,999,1000,997,991,1000,990,994,996,999,995,996,994,999,995,1000,991,993,998,990,993,995,1000,992,994,992,990,994,1000,993,998,994,996,995,1000,998,995,992,990,991,1000,992,999,998,995,1000,993,995,995,999,1000,996,998,991,990,995,1000,998,998,993,997,999,998,999,1000,990,995,995,996,999,998,996,996,1000,991,990,990,990,994,991,992,994,995,1000,990,993,993,997,992,999,993,994,992,991,998,991,990,999}
{785,535,848,433,635,590,423,876,869,64,869,667,899,52,776,25,331,406,538,312,75,635,238,587,395,930,262,332,972,131,70,11,844,755,181,362,832,731,490,293,682,77,487,822,684,577,821,758,993,458,913,713,183,178,1,609,880,690,88,51,417,967,753,801,579,163,664,144,427,501,971,83,122,859,408,173,413,101,119,291,162,369,671,778,890,917,697,223,814,592,922,611,255,720,65,672,641,991,261,67,517,916,193,460,131,563,94,635,185,572,122,543,293,917,402,593,532,454,196,530,223,98,254,994,747,360,359,190,766,57,528,155,693,262,75,783,626,907,986,100,270,34,667,298,538,370,132,671,624,766,128,921,380,42,550,258,677,963,699,335,318,389,620,365,731,120,778,657,357,604,809,450,127,460,943,118,918,728,950,771,194,853,160,803,290,681,188,170,989,173,453,44,78,84,527,25,549,632,609,282,15,33,140,808,656,840,708,506,742,215,876,966,350,632,529,569,419,2,643,84,675,907,133,987,297,424,579,531,405,25,175,51,588,173,209,41,723,509,751,315,271,14,986,957,108,82,815,822,676,266,918,73,910,314,487,613,981,241,191,283,344,382,789,396,965,772,966,519,912,732,613,409,644,256,782,646,471,643,971,851,645,819,234,304,442,983,838,431,441,528,857,886,902,659,117,893,795,782,384,120,546,536,548,575,42,264,814,948,749,855,605,354,68,133,960,674,233,401,678,547,85,309,402,584,59,955,85,605,592,26,23,479,943,795,742,683,110,39,553,859,134,260,503,409,570,119,798,688,338,661,503,448,459,745,475,956,429,40,35,683,93,135,839,499,933,561,779,100,623,998,515,779,531,544,410,701,650,669,221,586,52,421,910,43,548,508,299,861,722,117,124,213,862,718,242,103,621,648,354,347,406,967,630,71,626,934,57,995,905,465,154,725,292,108,936,946,312,387,666,624,435,846,977,318,151,790,406,242,396,465,240,13,505,416,862,886,218,841,442,856,514,26,911,209,235,384,645,11,485,156,184,486,809,615,595,502,1000,450,829,144,197,98,506,916,605,953,89,226,787,759,355,627,969,13,377,771,209,843,976,122,619,689,777,291,25,59,504,253,599,808,144,824,23,645,980,513,694,57,217,261,328,408,160,653,59,777,444,897,828,981,826,224,373,323,430,427,654,833,159,887,891,159,175,839,699,797,966,562,992,76,556,899,415,132,818,750,96,167,699,211,379,394,397,615,63,470,182,26,360,630,600,654,430,414,249,287,887,672,210,32,109,455,442,603,539,541,171,933,403,573,350,105,463,241,783,478,454,487,383,398,850,451,352,76,489,773,757,70,347,897,115,266,473,238,108,456,671,409,467,386,40,236,419,614,881,952,812,666,801,785,181,728,69,130,581,557,411,653,960,394,453,943,209,389,993,796,806,481,96,819,139,690,788,795,174,552,768,185,140,744,147,194,275,20,659,98,494,223,223,866,50,522,952,706,857,975,980,822,181,207,484,557,834,294,380,91,810,887,988,32,585,269,864,581,909,282,651,409,997,25,485,45,463,786,982,342,229,949,316,570,889,486,217,763,689,237,983,217,388,375,766,482,723,330,449,709,123,978,420,8,592,86,403,318,431,835,328,348,519,759,875,345,475,562,963,817,865,125,930,821,19,435,577,124,729,331,568,355,244,711,883,252,539,299,181,241,799,142,940,895,405,777,186,236,490,388,500,493,316,354,697,657,295,284,286,109,465,31,347,675,640,174,950,679,250,180,629,968,82,761,693,414,767,968,360,116,863,192,795,353,828,580,141,387,980,313,533,353,821,826,919,812,711,335,224,32,949,960,18,681,772,330,401,425,654,796,251,870,529,294,326,386,289,449,977,635,937,720,370,2,310,290,217,770,140,885,953,527,571,939,190,268,902,324,79,623,501,387,880,892,295,178,659,914,221,563,511,283,319,386,152,134,902,954,19,517,389,927,227,373,920,83,911,248,852,565,455,208,590,941,105,822,962,803,271,727,557,712,620,29,998,9,674,718,123,352,237,361,445,920,429,544,67,869,478,947,410,972,736,473,770,392,533,535,702,174,627,488,672,341,988,185,255,482,556,826,386,296,470,554,819,870,937,798,8,391,578,927,82,567,616,632,423,319,697,380,676,160,506,370,658,276,579,732,712,522,882,86,593,421,790,163,789,774,74,951,564,702,392,659,651,734,542,905,675,108,471,668,909,559,573,957,853,697,378,617,515,552,89,392,965,967,787,182,904,312,306,393,536,416}
Returns: 641637.7094692983
{1000,995,1000,997,992,999,999,993,998,994,994,994,992,994,996,994,994,993,998,999,991,999,991,998,999,999,997,998,997,999,991,996,998,997,991,994,994,1000,993,996,993,993,995,996,996,998,994,990,998,996,992,999,998,990,995,998,998,995,999,993,996,995,995,997,996,1000,995,992,999,994,990,1000,991,990,996,996,1000,998,999,995,995,997,992,999,993,994,999,991,995,1000,990,993,996,1000,999,990,997,994,996,996,997,994,995,999,995,996,999,996,993,995,997,998,999,993,999,1000,995,1000,990,994,990,990,1000,990,998,991,995,997,1000,998,998,992,998,990,994,998,992,993,995,998,991,1000,991,994,997,996,994,990,996,993,992,994,990,1000,996,998,990,1000,990,997,1000,992,991,990,995,994,990,992,1000,994,1000,990,996,998,991,991,995,997,990,992,999,998,994,995,992,996,997,999,1000,992,995,995,992,997,992,990,991,990,997,1000,996,998,997,994,995,996,994,998,998,998,998,995,1000,990,995,991,999,997,995,991,995,998,998,995,997,992,990,997,994,993,992,995,999,999,990,998,994,995,994,994,1000,993,997,996,991,995,996,999,995,996,995,996,997,995,990,993,991,991,993,992,997,993,995,1000,1000,991,994,994,991,993,998,996,994,999,1000,990,991,996,1000,998,995,993,994,995,994,995,991,998,993,993,995,998,994,1000,990,998,1000,994,992,991,998,1000,991,995,995,996,994,999,999,999,992,997,990,991,998,994,996,997,1000,990,997,995,997,999,991,996,1000,991,999,992,991,990,994,991,992,1000,991,997,996,998,997,994,992,996,1000,994,992,999,991,996,997,999,994,997,998,990,997,999,990,999,992,998,995,992,990,992,992,994,995,990,992,992,993,993,997,995,994,992,995,995,996,990,1000,993,997,997,997,995,991,994,996,992,992,991,998,995,990,992,998,1000,992,995,1000,996,996,994,993,998,995,996,995,999,995,992,1000,996,997,998,1000,991,1000,992,999,997,996,995,995,998,999,997,990,990,992,993,996,997,999,994,990,997,998,997,997,997,993,990,993,998,998,993,996,995,993,997,991,992,994,992,992,999,996,997,994,999,996,991,994,1000,995,993,1000,999,998,1000,992,991,997,990,1000,1000,997,993,1000,993,996,992,998,999,992,998,996,997,993,991,991,999,1000,994,1000,998,991,995,998,992,995,999,997,999,996,997,990,990,994,997,993,993,993,992,1000,998,999,998,997,992,1000,999,997,993,998,990,1000,995,995,1000,992,997,993,999,993,994,998,990,1000,1000,992,1000,993,999,994,992,990,993,991,996,994,998,996,1000,992,994,994,1000,994,997,1000,995,1000,990,997,991,995,991,996,998,992,998,995,999,996,990,990,999,990,994,994,994,993,990,996,994,998,994,997,993,990,998,1000,990,998,998,999,995,998,997,999,997,999,991,996,995,991,991,1000,998,993,992,993,994,997,995,990,991,995,991,995,1000,994,990,992,995,999,993,991,995,996,998,999,1000,995,993,994,994,996,995,997,992,991,992,996,1000,1000,998,990,998,996,1000,999,994,1000,998,995,997,992,1000,999,998,994,992,991,991,998,1000,990,993,992,1000,997,998,999,993,995,994,997,993,992,997,996,1000,991,995,991,995,996,994,990,993,992,995,997,999,1000,999,997,993,993,995,998,994,993,994,992,998,994,992,995,999,994,999,994,994,996,995,991,997,999,991,1000,993,1000,997,990,990,994,995,999,992,992,993,995,995,998,997,992,998,990,996,997,997,991,994,996,990,991,994,990,997,998,996,992,998,991,998,997,997,994,994,998,992,991,992,992,995,1000,1000,999,994,993,991,995,990,995,995,997,995,1000,995,994,996,990,996,997,997,990,992,997,998,994,999,997,998,996,1000,994,996,991,998,996,997,1000,991,995,995,991,997,1000,1000,994,999,998,992,990,996,992,990,990,994,1000,997,999,998,997,992,997,999,992,998,998,995,997,990,1000,991,990,990,997,995,996,998,997,992,998,1000,997,997,1000,990,990,1000,996,999,993,995,994,990,998,998,994,999,990,992,1000,990,998,992,995,999,990,996,992,993,994,991,993,992,997,997,997,991,1000,991,995,992,995,998,995,995,994,997,990,992,993,990,997,992,992,991,1000,997,997,999,990,993,999,997,997,994,995,1000,996,999,992,993,999,990,990,999,995,998,991,991,993,997,996,990,1000,990,992,996,998,997,993,994,994,993,996,991,997,992,990,997,994,990,997,995,995,995,997,995,1000,996,991,995,992,990,990,999,1000,999,990,996,993,998,995,998,993,994,990,992,993,994,1000,990,996,998,996,990,997,999,997,991,1000,998,998,998,999,998,998,997,998,1000}
{724,444,566,213,43,493,13,284,827,90,952,382,488,298,666,685,442,879,969,266,926,343,718,959,379,439,230,351,817,698,457,887,594,57,539,501,768,242,564,201,66,303,897,795,84,646,483,289,948,988,879,542,112,841,600,401,364,598,565,953,389,761,31,447,451,599,447,159,805,372,66,732,526,252,990,538,289,259,577,179,480,850,766,562,754,282,932,907,757,496,352,615,278,85,218,221,554,838,396,491,771,468,832,356,81,399,551,530,612,892,730,560,3,386,179,601,991,636,890,336,434,142,22,383,955,388,788,941,88,622,251,659,379,264,942,461,449,533,573,567,368,554,818,48,85,52,327,36,815,687,652,159,454,248,737,840,116,212,996,862,826,611,753,997,263,787,22,560,180,329,152,459,821,468,900,699,190,212,829,299,519,803,797,303,666,403,450,863,439,510,292,415,57,274,897,582,49,751,267,772,885,149,174,404,569,277,561,298,220,748,708,65,397,958,959,257,563,501,213,631,600,480,294,124,748,122,549,45,687,208,727,541,718,89,250,622,181,502,503,898,312,924,643,692,697,2,733,413,393,418,739,873,534,644,997,764,964,202,321,647,21,435,829,610,108,287,896,230,88,250,385,598,879,502,459,919,816,180,826,673,510,940,211,379,951,185,243,771,542,831,690,588,617,89,160,246,738,469,975,379,716,175,911,589,907,105,881,803,755,905,459,289,986,937,339,754,93,526,438,909,2,591,377,581,837,594,491,716,780,755,375,628,879,681,176,433,497,833,526,914,819,778,23,968,461,790,673,418,753,167,514,175,723,566,959,665,162,793,59,3,373,710,947,574,411,383,255,603,658,125,153,778,564,855,983,218,258,72,162,868,530,767,145,961,358,830,750,276,774,839,92,789,359,644,687,738,60,815,39,265,354,873,159,568,997,173,26,946,731,469,961,178,352,474,217,469,504,185,917,559,372,344,591,670,257,164,176,686,619,387,335,319,796,791,326,48,33,518,473,310,875,961,492,754,228,511,539,369,620,156,856,941,256,772,355,636,503,979,258,416,320,594,199,683,985,22,819,761,186,442,922,812,184,245,757,343,269,10,812,709,199,225,812,948,646,84,262,793,926,946,977,986,467,473,530,829,508,9,432,477,526,541,161,653,757,417,890,281,946,92,845,81,184,322,753,266,258,636,794,334,481,378,763,391,326,311,911,567,580,604,84,884,874,968,313,327,649,894,975,6,603,200,17,26,636,564,488,67,135,325,820,767,229,591,866,695,262,607,698,87,341,437,570,528,258,210,247,470,486,592,99,806,223,685,996,700,657,244,43,570,713,981,620,383,571,708,40,414,126,272,363,238,396,525,554,5,608,103,225,964,315,354,665,828,437,637,707,782,556,72,284,862,153,14,165,986,729,712,477,140,896,93,85,71,612,142,818,408,709,105,810,276,714,626,951,331,788,968,541,638,268,663,783,962,915,310,646,862,476,743,992,424,559,442,587,617,160,927,758,15,400,817,15,66,147,383,918,191,245,746,828,728,24,274,948,143,580,379,251,4,117,655,458,907,254,228,232,933,811,256,133,233,26,753,709,30,569,307,273,658,963,776,547,274,269,798,387,496,929,744,194,587,722,815,492,698,658,111,360,380,477,847,60,792,135,361,272,1,285,213,775,358,298,436,298,161,833,1000,537,748,268,593,994,688,609,155,386,4,621,957,881,163,8,632,263,183,432,292,494,297,56,726,796,548,70,757,511,110,347,5,534,328,999,671,2,265,70,476,294,9,59,545,114,116,235,868,567,354,975,920,731,318,455,208,131,623,72,758,917,78,913,43,330,689,449,427,179,376,359,994,667,8,86,530,879,739,261,502,648,652,628,117,308,400,472,934,56,871,837,28,261,928,25,432,74,871,946,408,129,654,919,150,935,781,407,645,839,481,11,784,31,15,763,269,173,905,373,521,641,476,650,560,269,333,734,819,727,319,141,906,368,32,865,654,445,229,950,162,88,283,20,132,332,413,205,547,797,578,805,600,306,771,807,833,865,944,71,672,936,952,585,853,862,715,714,793,643,249,759,600,994,357,480,247,761,543,437,430,333,142,152,748,631,750,133,145,633,794,713,17,158,479,553,966,800,405,369,978,509,865,129,682,288,224,534,477,864,769,46,473,13,145,144,662,417,814,740,197,538,965,903,426,31,968,121,145,623,771,349,547,243,610,995,545,408,4,818,429,525,315,428,329,807,61,709,586,995,784,44,924,887,498,621,260,994,661,491,112,303,180}
Returns: 641321.9895512647
{992,999,992,991,996,992,990,1000,992,999,992,997,998,990,993,997,990,1000,998,991,990,996,996,996,1000,991,991,990,996,993,999,997,996,994,990,992,992,992,992,992,991,997,995,995,990,994,1000,995,991,995,991,996,998,990,994,998,1000,998,994,991,998,990,992,991,995,997,993,995,996,998,998,1000,992,995,997,990,1000,992,993,1000,991,990,992,997,990,996,991,991,993,998,1000,991,991,1000,990,999,994,999,999,996,991,996,996,995,998,991,1000,990,990,995,999,992,992,993,998,1000,998,992,1000,996,995,1000,995,992,996,994,992,993,990,995,1000,998,995,1000,995,990,996,995,997,997,1000,996,997,997,991,995,1000,991,998,994,993,993,996,991,996,994,997,999,993,999,996,995,996,998,996,997,991,992,999,996,996,993,996,990,990,992,998,990,1000,997,994,1000,998,992,995,992,997,992,990,994,993,991,992,990,997,992,998,997,995,993,999,990,1000,995,997,999,992,998,996,1000,994,994,998,999,990,998,1000,1000,991,990,1000,997,998,998,998,998,997,995,999,998,990,996,997,997,991,994,993,991,997,997,999,992,1000,997,1000,999,990,992,991,995,993,999,993,992,999,997,1000,998,1000,999,993,996,990,997,993,994,991,999,999,997,996,994,992,996,990,995,1000,997,999,996,992,994,1000,996,993,996,991,992,993,997,995,1000,999,998,997,993,990,991,991,993,992,991,992,991,996,990,992,991,990,996,993,996,990,999,999,991,994,991,991,996,997,995,995,994,994,992,992,996,995,994,1000,996,994,992,992,996,992,997,996,999,991,994,998,994,992,994,999,991,1000,999,996,1000,992,991,993,996,1000,992,991,991,996,1000,992,993,991,992,995,1000,992,995,1000,998,993,990,990,997,998,994,995,998,991,999,996,995,992,999,990,998,997,1000,997,995,997,993,997,990,998,997,996,994,998,995,995,993,999,1000,995,996,992,1000,990,995,990,999,1000,991,991,991,998,996,992,992,991,992,995,993,997,993,994,999,995,1000,996,994,996,998,996,998,997,992,998,995,995,990,999,991,994,990,994,993,991,997,996,992,993,999,992,992,997,993,998,992,995,996,994,998,994,996,992,990,1000,993,996,990,1000,993,997,991,992,997,1000,998,999,995,997,990,992,998,994,992,996,992,991,999,992,990,998,998,991,990,995,998,996,991,994,990,993,994,999,997,998,990,994,994,990,995,1000,1000,999,993,997,997,999,996,991,995,995,999,994,995,995,990,992,995,996,997,999,1000,990,990,999,996,1000,991,990,995,998,994,1000,1000,994,993,995,1000,998,1000,994,1000,990,991,991,1000,994,997,995,999,997,991,999,994,995,992,996,997,997,997,995,997,1000,999,990,992,990,1000,998,999,997,990,992,991,995,990,991,993,997,990,993,991,998,991,992,995,990,994,991,997,996,990,991,993,1000,995,994,997,1000,995,991,990,993,997,990,1000,998,993,1000,995,990,995,998,998,998,993,999,997,998,1000,992,994,997,996,998,991,994,1000,996,1000,998,994,992,994,1000,992,998,997,999,994,996,995,994,992,994,999,992,991,990,998,994,994,998,997,1000,990,1000,999,997,990,997,1000,996,992,1000,997,1000,996,997,992,993,991,999,997,1000,997,993,993,991,991,998,991,994,996,1000,999,997,992,992,992,998,999,994,997,993,998,996,1000,991,999,1000,992,993,995,998,995,997,995,995,993,995,1000,994,990,995,994,995,997,998,1000,994,996,997,990,993,996,994,994,999,993,996,997,993,997,994,997,990,995,996,999,993,995,996,998,993,997,999,995,993,995,994,996,999,991,996,995,996,1000,990,992,996,1000,999,995,993,998,996,996,991,995,990,990,992,995,993,991,1000,1000,995,995,996,998,996,990,993,998,1000,993,998,996,996,994,994,998,995,995,990,997,992,995,998,998,998,992,998,999,990,997,999,998,991,1000,1000,990,998,999,1000,995,999,999,992,990,998,999,992,990,999,992,997,991,996,995,997,991,990,999,990,991,1000,992,990,997,994,994,995,991,1000,990,995,991,998,991,991,994,991,994,995,992,1000,992,997,997,996,992,1000,994,997,994,999,992,991,997,998,990,998,999,998,998,1000,992,998,995,998,992,993,1000,997,999,996,993,990,990,990,996,993,994,998,992,998,997,998,999,997,998,996,991,994,1000,1000,993,1000,994,994,994,999,998,992,1000,994,990,997,994,995,992,1000,1000,997,993,993,995,994,992,991,994,993,990,1000,1000,990,992,992,995,993,993,998,998,996,992,999,996,996,997,998,1000,993,990,990,996,995,990,994,992,991,990,1000,994,992,991,995,1000,996,998,999,997,995,996,993,999,997,991,994,999,992,999}
{372,118,463,804,412,73,227,619,750,423,455,118,58,952,473,890,975,66,514,117,880,928,408,34,46,682,780,47,488,662,566,346,888,35,538,378,966,74,840,729,522,132,238,812,188,443,907,249,591,65,90,981,260,647,906,968,85,206,899,797,566,786,668,621,400,656,76,673,174,745,50,981,78,94,999,49,566,430,176,982,849,416,143,948,955,719,628,943,834,819,664,512,659,396,901,473,30,203,353,727,279,571,659,878,428,65,147,793,667,381,596,167,389,249,611,849,925,968,967,985,137,227,82,998,917,17,65,43,478,774,376,862,37,371,220,897,114,213,266,100,225,491,97,142,167,593,130,612,460,777,366,361,763,477,455,375,222,32,25,404,811,204,127,132,667,571,950,842,319,792,676,373,496,759,441,665,875,868,904,335,758,993,848,559,144,263,570,955,80,392,553,349,513,180,64,9,52,723,873,439,220,72,239,868,768,327,682,322,610,622,830,603,751,68,793,506,355,473,130,376,756,573,415,428,774,608,865,330,190,277,231,187,596,512,421,445,128,57,887,195,793,520,866,53,176,455,966,48,344,995,440,974,661,783,719,229,39,225,426,486,893,601,131,456,685,190,598,578,472,367,99,766,338,587,659,191,906,254,796,665,415,766,342,422,991,422,500,919,795,462,109,869,735,251,454,833,289,476,624,606,769,315,553,84,71,690,412,464,520,106,902,453,958,73,398,603,615,787,560,31,623,562,239,558,258,491,7,726,131,965,629,241,571,931,145,170,398,286,5,573,133,342,877,343,432,108,325,744,211,35,564,493,485,938,848,268,417,66,921,207,465,645,88,319,779,797,143,686,224,403,374,41,466,374,309,574,595,768,683,794,656,386,377,923,273,796,678,535,283,218,313,116,925,333,127,809,655,885,157,837,125,886,127,33,176,345,64,421,987,706,803,54,661,583,655,159,598,992,421,167,990,963,183,405,637,346,81,64,83,638,350,541,763,882,416,419,427,22,816,164,659,633,976,58,661,601,690,48,840,149,222,929,941,605,567,738,575,428,307,331,83,302,910,834,555,581,65,97,720,939,818,314,159,872,889,701,952,603,492,481,438,20,423,490,251,510,947,343,166,928,240,499,574,509,762,532,596,205,933,553,962,799,938,88,758,156,305,620,80,149,141,679,432,107,561,613,452,127,895,103,147,229,705,111,385,112,533,146,825,248,546,688,798,114,934,128,935,684,1,824,473,655,367,731,263,516,614,598,444,255,985,915,670,419,477,612,519,267,771,38,442,962,961,875,180,103,981,480,105,419,950,575,338,100,400,376,811,82,501,974,691,568,941,279,662,224,89,861,668,765,407,836,583,101,891,285,197,835,452,812,607,641,760,515,789,983,54,44,694,726,823,444,673,383,41,152,429,182,891,880,970,615,475,93,231,906,80,449,148,630,945,895,928,751,352,48,244,533,73,141,807,69,869,72,588,681,773,45,511,66,361,862,26,879,75,198,394,349,920,77,866,697,562,318,190,319,901,968,53,165,717,581,119,303,855,732,301,375,733,373,792,570,666,423,162,754,588,541,514,617,326,127,295,36,435,469,876,388,17,344,396,191,607,577,718,298,424,794,542,836,786,51,853,225,467,113,942,905,147,916,145,855,857,121,318,580,509,755,818,26,179,641,410,773,812,675,101,969,396,72,360,659,462,346,582,584,984,164,929,46,346,192,866,152,91,710,824,592,564,76,422,126,422,109,587,137,194,42,722,892,759,12,821,685,614,972,27,645,300,497,699,777,209,217,452,785,241,495,41,307,501,548,156,461,271,407,404,28,996,998,783,165,922,136,957,272,318,442,505,529,928,980,103,664,408,982,294,705,33,95,108,835,862,479,276,980,924,486,215,415,683,806,279,524,208,737,970,813,30,663,956,405,610,929,780,572,726,31,66,274,825,459,902,299,614,591,807,367,688,716,384,455,34,708,294,709,603,816,679,511,986,790,553,668,389,864,921,250,771,122,645,259,981,441,109,234,177,492,781,838,664,269,681,698,481,208,540,75,753,278,221,395,856,319,553,369,906,515,279,162,948,141,280,71,490,608,553,232,699,405,713,191,679,746,910,544,703,611,156,457,211,375,1,594,651,438,411,883,971,76,435,573,669,261,9,250,841,318,771,838,588,134,332,116,473,60,805,953,462,809,749,285,931,397,894,854,870,626,129,846,365,710,308,877,821,350,332,206,145,28,837,693,289,294,565,737,134,563,160,401,699,316,691,950,22,612,691,312,909,503}
Returns: 614602.1099803698
{916, 932, 927, 988, 958, 996, 944, 968, 917, 939, 960, 965, 960, 998, 920, 990, 915, 972, 995, 916, 902, 968, 970, 962, 922, 959, 994, 915, 996, 996, 994, 986, 945, 947, 912, 946, 972, 951, 973, 965, 921, 910, 938, 975, 942, 950, 900, 983, 960, 998, 982, 980, 902, 974, 952, 938, 900, 962, 920, 931, 964, 974, 953, 995, 946, 946, 903, 921, 923, 985, 919, 996, 930, 915, 991, 967, 996, 911, 999, 936, 1000, 962, 970, 929, 966, 960, 930, 920, 958, 926, 983 }
{583, 428, 396, 17, 163, 815, 31, 536, 175, 165, 532, 781, 29, 963, 331, 987, 599, 497, 380, 180, 780, 25, 931, 607, 784, 613, 468, 140, 488, 604, 401, 912, 204, 785, 697, 173, 451, 849, 714, 914, 650, 652, 338, 336, 177, 147, 22, 652, 901, 548, 370, 9, 118, 487, 779, 567, 818, 440, 10, 868, 316, 666, 690, 714, 623, 269, 501, 649, 324, 773, 173, 54, 391, 745, 504, 578, 81, 627, 319, 301, 16, 899, 658, 586, 604, 83, 520, 81, 181, 943, 157 }
Returns: 54204.93356505282
{998, 995, 991, 997, 990, 996, 996, 993, 999, 1000, 992, 992, 999, 999, 994, 991, 999, 997, 997, 996, 992, 993, 993, 995, 995, 991, 996, 999, 993, 991, 995, 996, 995, 998, 991, 1000, 991, 996, 1000, 996, 1000, 992, 990, 995, 994, 990, 990, 991, 998, 999, 997, 998, 997, 998, 991, 1000, 997, 997, 995, 992, 996, 997, 992, 998, 1000, 994, 990, 991, 998, 994, 997, 998, 995, 996, 990, 998, 995, 996, 990, 996, 992, 999, 993, 990, 999, 998, 996, 994, 997, 992, 992, 991, 1000, 997, 990, 990, 996, 995, 993, 994, 997, 999, 992, 992, 995, 996, 993, 991, 1000, 999, 990, 998, 994, 998, 990, 993, 995, 993, 998, 996, 996, 993, 997, 990, 995, 992, 998, 997, 997, 996, 993, 999, 999, 997, 996, 997, 992, 992, 991, 991, 991, 994, 998, 992, 998, 991, 991, 990, 999, 998, 995, 997, 992, 991, 999, 999, 996, 999, 998, 992, 998, 1000, 996, 999, 998, 998, 997, 991, 992, 997, 999, 999, 997, 990, 993, 996, 999, 992, 998, 998, 993, 995, 999, 996, 994, 1000, 1000, 994, 994, 992, 998, 991, 992, 998, 992, 1000, 1000, 998, 991, 992, 993, 990, 992, 992, 991, 997, 1000, 996, 998, 990, 997, 1000, 991, 1000, 996, 995, 990, 991, 997, 998, 1000, 992, 998, 993, 998, 992, 999, 995, 991, 992, 995, 995, 998, 993, 997, 1000, 990, 993, 991, 998, 990, 998, 992, 997, 997, 1000, 991, 995, 991, 994, 992, 999, 998, 1000, 1000, 993, 991, 999, 1000, 991, 998, 995, 997, 996, 997, 996, 997, 996, 996, 999, 999, 996, 996, 999, 992, 998, 996, 990, 996, 997, 997, 990, 994, 998, 996, 993, 992, 999, 1000, 993, 993, 992, 999, 994, 998, 991, 996, 996, 990, 993, 999, 990, 998, 993, 997, 998, 994, 990, 1000, 992, 994, 995, 991, 999, 997, 993, 995, 991, 992, 998, 1000, 999, 991, 991, 994, 990, 996, 995, 997, 996, 996, 991, 994, 997, 994, 1000, 1000, 993, 1000, 997, 998, 992, 994, 992, 997, 999, 994, 995, 991, 998, 999, 991, 999, 991, 995, 991, 992, 995, 990, 991, 995, 995, 999, 1000, 993, 1000, 995, 995, 995, 996, 996, 990, 997, 991, 993, 995, 990, 999, 998, 993, 997, 997, 996, 993, 997, 999, 997, 996, 992, 998, 992, 994, 990, 990, 1000, 996, 1000, 990, 990, 999, 990, 991, 990, 990, 999, 999, 1000, 998, 993, 994, 995, 999, 999, 999, 998, 993, 991, 998, 994, 998, 994, 999, 996, 990, 994, 992, 997, 995, 991, 991, 998, 992, 1000, 1000, 998, 998, 992, 992, 996, 990, 998, 991, 990, 998, 996, 1000, 996, 990, 997, 995, 993, 995, 993, 994, 997, 996, 992, 994, 992, 991, 1000, 994, 991, 998, 993, 991, 996, 991, 998, 990, 994, 996, 991, 997, 995, 992, 996, 993, 993, 991, 990, 998, 990, 994, 999, 993, 996, 994, 997, 999, 992, 996, 996, 992, 994, 995, 995, 992, 1000, 997, 991, 997, 991, 999, 996, 992, 997, 998, 994, 991, 998, 992, 991, 994, 995, 998, 995, 992, 999, 999, 996, 996, 996, 995, 992, 996, 998, 993, 994, 991, 992, 998, 1000, 1000, 993, 995, 994, 997, 1000, 993, 993, 995, 996, 999, 993, 995, 997, 994, 996, 996, 994, 998, 994, 999, 999, 992, 993, 998, 995, 996, 1000, 991, 997, 990, 991, 999, 991, 1000, 990, 995, 996, 993, 992, 1000, 994, 1000, 999, 997, 999, 1000, 995, 994, 999, 990, 992, 996, 997, 999, 1000, 990, 995, 999, 997, 992, 998, 991, 996, 1000, 990, 1000, 996, 994, 996, 993, 999, 992, 999, 995, 992, 990, 995, 997, 1000, 996, 999, 993, 991, 994, 1000, 992, 990, 998, 994, 999, 993, 998, 995, 994, 992, 992, 996, 994, 990, 994, 994, 999, 995, 992, 992, 996, 995, 999, 990, 992, 993, 994, 991, 997, 995, 997, 998, 999, 991, 998, 995, 996, 995, 995, 996, 992, 1000, 997, 999, 997, 994, 990, 990, 990, 998, 996, 996, 998, 995, 991, 1000, 997, 992, 994, 996, 990, 997, 1000, 998, 1000, 994, 993, 998, 992, 996, 997, 993, 998, 996, 991, 993, 990, 997, 995, 1000, 992, 993, 995, 991, 997, 990, 999, 990, 997, 999, 992, 996, 995, 997, 993, 997, 998, 999, 999, 995, 992, 999, 993, 997, 994, 998, 994, 992, 990, 999, 996, 997, 991, 990, 995, 999, 996, 998, 991, 1000, 997, 995, 991, 999, 993, 990, 995, 998, 994, 998, 993, 995, 994, 1000, 995, 997, 993, 990, 999, 999, 996, 999, 999, 1000, 991, 994, 998, 998, 992, 991, 997, 996, 991, 1000, 992, 991, 995, 996, 998, 992, 998, 1000, 999, 993, 993, 994, 990, 1000, 993, 994, 996, 999, 993, 994, 997, 996, 1000, 999, 995, 990, 997, 998, 998, 998, 1000, 995, 997, 995, 990, 992, 997, 993, 999, 996, 991, 999, 998, 998, 1000, 995, 998, 990, 994, 995, 992, 992, 998, 998, 1000, 997, 994, 995, 999, 994, 995, 993, 997, 997, 992, 991, 990, 993, 995, 991, 997, 990, 996, 994, 996, 996, 997, 999, 994, 998, 997, 998, 991, 991, 998, 995, 996, 997, 995, 993, 995, 999, 1000, 994, 994, 1000, 1000, 999, 995, 994, 994, 998, 996, 999, 990, 997, 993, 993, 998, 1000, 999, 991, 994, 992, 993, 997, 990, 997, 991, 996, 997, 996, 992, 991, 991, 992, 992, 993, 995, 994, 995, 992, 1000, 998, 992, 994, 997, 1000, 998, 999, 990, 996, 996, 996, 990, 992, 995, 999, 999, 997, 999, 996, 995, 1000, 1000, 991, 997, 999, 995, 1000, 994, 999, 997, 995, 1000, 997, 998, 999, 998, 995, 1000, 998, 990, 997, 994, 990, 996, 990, 1000, 1000, 997, 992, 994, 992, 991, 995, 997, 997, 995, 997, 997, 999, 999, 993, 997, 999, 990, 997, 991, 999, 999, 996, 994, 991, 1000, 990, 991, 997, 997, 993, 1000, 998, 997, 996, 994, 998, 991, 995, 998, 999, 998, 1000, 997, 1000, 992, 992, 991 }
{998, 995, 991, 997, 990, 996, 996, 993, 999, 1000, 992, 992, 999, 999, 994, 991, 999, 997, 997, 996, 992, 993, 993, 995, 995, 991, 996, 999, 993, 991, 995, 996, 995, 998, 991, 1000, 991, 996, 1000, 996, 1000, 992, 990, 995, 994, 990, 990, 991, 998, 999, 997, 998, 997, 998, 991, 1000, 997, 997, 995, 992, 996, 997, 992, 998, 1000, 994, 990, 991, 998, 994, 997, 998, 995, 996, 990, 998, 995, 996, 990, 996, 992, 999, 993, 990, 999, 998, 996, 994, 997, 992, 992, 991, 1000, 997, 990, 990, 996, 995, 993, 994, 997, 999, 992, 992, 995, 996, 993, 991, 1000, 999, 990, 998, 994, 998, 990, 993, 995, 993, 998, 996, 996, 993, 997, 990, 995, 992, 998, 997, 997, 996, 993, 999, 999, 997, 996, 997, 992, 992, 991, 991, 991, 994, 998, 992, 998, 991, 991, 990, 999, 998, 995, 997, 992, 991, 999, 999, 996, 999, 998, 992, 998, 1000, 996, 999, 998, 998, 997, 991, 992, 997, 999, 999, 997, 990, 993, 996, 999, 992, 998, 998, 993, 995, 999, 996, 994, 1000, 1000, 994, 994, 992, 998, 991, 992, 998, 992, 1000, 1000, 998, 991, 992, 993, 990, 992, 992, 991, 997, 1000, 996, 998, 990, 997, 1000, 991, 1000, 996, 995, 990, 991, 997, 998, 1000, 992, 998, 993, 998, 992, 999, 995, 991, 992, 995, 995, 998, 993, 997, 1000, 990, 993, 991, 998, 990, 998, 992, 997, 997, 1000, 991, 995, 991, 994, 992, 999, 998, 1000, 1000, 993, 991, 999, 1000, 991, 998, 995, 997, 996, 997, 996, 997, 996, 996, 999, 999, 996, 996, 999, 992, 998, 996, 990, 996, 997, 997, 990, 994, 998, 996, 993, 992, 999, 1000, 993, 993, 992, 999, 994, 998, 991, 996, 996, 990, 993, 999, 990, 998, 993, 997, 998, 994, 990, 1000, 992, 994, 995, 991, 999, 997, 993, 995, 991, 992, 998, 1000, 999, 991, 991, 994, 990, 996, 995, 997, 996, 996, 991, 994, 997, 994, 1000, 1000, 993, 1000, 997, 998, 992, 994, 992, 997, 999, 994, 995, 991, 998, 999, 991, 999, 991, 995, 991, 992, 995, 990, 991, 995, 995, 999, 1000, 993, 1000, 995, 995, 995, 996, 996, 990, 997, 991, 993, 995, 990, 999, 998, 993, 997, 997, 996, 993, 997, 999, 997, 996, 992, 998, 992, 994, 990, 990, 1000, 996, 1000, 990, 990, 999, 990, 991, 990, 990, 999, 999, 1000, 998, 993, 994, 995, 999, 999, 999, 998, 993, 991, 998, 994, 998, 994, 999, 996, 990, 994, 992, 997, 995, 991, 991, 998, 992, 1000, 1000, 998, 998, 992, 992, 996, 990, 998, 991, 990, 998, 996, 1000, 996, 990, 997, 995, 993, 995, 993, 994, 997, 996, 992, 994, 992, 991, 1000, 994, 991, 998, 993, 991, 996, 991, 998, 990, 994, 996, 991, 997, 995, 992, 996, 993, 993, 991, 990, 998, 990, 994, 999, 993, 996, 994, 997, 999, 992, 996, 996, 992, 994, 995, 995, 992, 1000, 997, 991, 997, 991, 999, 996, 992, 997, 998, 994, 991, 998, 992, 991, 994, 995, 998, 995, 992, 999, 999, 996, 996, 996, 995, 992, 996, 998, 993, 994, 991, 992, 998, 1000, 1000, 993, 995, 994, 997, 1000, 993, 993, 995, 996, 999, 993, 995, 997, 994, 996, 996, 994, 998, 994, 999, 999, 992, 993, 998, 995, 996, 1000, 991, 997, 990, 991, 999, 991, 1000, 990, 995, 996, 993, 992, 1000, 994, 1000, 999, 997, 999, 1000, 995, 994, 999, 990, 992, 996, 997, 999, 1000, 990, 995, 999, 997, 992, 998, 991, 996, 1000, 990, 1000, 996, 994, 996, 993, 999, 992, 999, 995, 992, 990, 995, 997, 1000, 996, 999, 993, 991, 994, 1000, 992, 990, 998, 994, 999, 993, 998, 995, 994, 992, 992, 996, 994, 990, 994, 994, 999, 995, 992, 992, 996, 995, 999, 990, 992, 993, 994, 991, 997, 995, 997, 998, 999, 991, 998, 995, 996, 995, 995, 996, 992, 1000, 997, 999, 997, 994, 990, 990, 990, 998, 996, 996, 998, 995, 991, 1000, 997, 992, 994, 996, 990, 997, 1000, 998, 1000, 994, 993, 998, 992, 996, 997, 993, 998, 996, 991, 993, 990, 997, 995, 1000, 992, 993, 995, 991, 997, 990, 999, 990, 997, 999, 992, 996, 995, 997, 993, 997, 998, 999, 999, 995, 992, 999, 993, 997, 994, 998, 994, 992, 990, 999, 996, 997, 991, 990, 995, 999, 996, 998, 991, 1000, 997, 995, 991, 999, 993, 990, 995, 998, 994, 998, 993, 995, 994, 1000, 995, 997, 993, 990, 999, 999, 996, 999, 999, 1000, 991, 994, 998, 998, 992, 991, 997, 996, 991, 1000, 992, 991, 995, 996, 998, 992, 998, 1000, 999, 993, 993, 994, 990, 1000, 993, 994, 996, 999, 993, 994, 997, 996, 1000, 999, 995, 990, 997, 998, 998, 998, 1000, 995, 997, 995, 990, 992, 997, 993, 999, 996, 991, 999, 998, 998, 1000, 995, 998, 990, 994, 995, 992, 992, 998, 998, 1000, 997, 994, 995, 999, 994, 995, 993, 997, 997, 992, 991, 990, 993, 995, 991, 997, 990, 996, 994, 996, 996, 997, 999, 994, 998, 997, 998, 991, 991, 998, 995, 996, 997, 995, 993, 995, 999, 1000, 994, 994, 1000, 1000, 999, 995, 994, 994, 998, 996, 999, 990, 997, 993, 993, 998, 1000, 999, 991, 994, 992, 993, 997, 990, 997, 991, 996, 997, 996, 992, 991, 991, 992, 992, 993, 995, 994, 995, 992, 1000, 998, 992, 994, 997, 1000, 998, 999, 990, 996, 996, 996, 990, 992, 995, 999, 999, 997, 999, 996, 995, 1000, 1000, 991, 997, 999, 995, 1000, 994, 999, 997, 995, 1000, 997, 998, 999, 998, 995, 1000, 998, 990, 997, 994, 990, 996, 990, 1000, 1000, 997, 992, 994, 992, 991, 995, 997, 997, 995, 997, 997, 999, 999, 993, 997, 999, 990, 997, 991, 999, 999, 996, 994, 991, 1000, 990, 991, 997, 997, 993, 1000, 998, 997, 996, 994, 998, 991, 995, 998, 999, 998, 1000, 997, 1000, 992, 992, 991 }
Returns: 1249446.6766076277