Problem Statement
Teja's college is organizing a tournament in the card game Literature. Teja wanted to take part in the tournament, so he formed a team with Vinay and Sohail. They wanted to practice for the tournament, but no other team wanted to play them - the teams didn't want to leak their strategies before the tournament. But Teja did not give up. He decided that they will practice on their own, and he came up with a game that will help them train their memory.
The practice game is played with 3*N cards. The cards are numbered from 1 to 3*N, inclusive. At the beginning of the game, the cards are shuffled and each player takes N of them.
The game is played in turns. The turns are numbered starting from 0. The players take the turns in the cyclic order "Teja, Vinay, Sohail". That is, Teja takes turn 0, Vinay takes turn 1, Sohail takes turn 2, Teja takes turn 3, and so on.
In each turn, the player selects a random element X from the set of the 2*N cards they don't have, and makes a true statement "I don't have the card number X."
Teja remembers everything that was said during the game. Vinay and Sohail are really bad at the game. They can take valid turns, but they never remember anything the other players said.
You are given the
Compute and return the expected number of turns from the beginning of the game to the moment when Teja knew the exact distribution of all cards.
Definition
- Class:
- Literature
- Method:
- expectation
- Parameters:
- int, int[], int[]
- Returns:
- double
- Method signature:
- double expectation(int n, int[] Teja, int[] history)
- (be sure your method is public)
Notes
- All random choices are made with uniform probabilities. All random events are mutually independent.
- Your return value must have an absolute or a relative error at most 1e-9.
Constraints
- N will be between 1 and 1000, inclusive.
- Teja will contain exactly N elements.
- Each element of Teja will be between 1 and 3*N, inclusive.
- All elements of Teja will be distinct.
- history will contain between 0 and 200 elements, inclusive.
- Each element of history will be between 1 and 3*N, inclusive.
- Elements of history will correspond to a valid game.
- In particular, for each valid i, history[3*i] will never be one of Teja's cards.
Examples
10
{5,29,12,16,25,17,18,30,27,10}
{4,6,5,23,22,29,20,8,12,3,13,16,1,15,25,4,6,17,23,22,18,20,8,30,3,13,27,1,15,10,4,6,5,23,22,29,20,8,12,3,13,16,1,15,25,4,6,17,22,29,26,8,12,19,13,16,14,15,25,9,6,5,4,22,29,23,8,12,20,13,16,3,15,25,1,6,5,24,22,29,26,8,12,19,13,16,14,15,25,9,6,5,4,22,29,23,8,12,20,13,16,3,15,25,1,6,5,24,22,29,26,8,12,19,13,16,14,15,25,9,6,5,4,22,29,23,8,12,20,13,16,3,15,25,1,6,5,24,22,29,26,8,12,19,13,16,14,15,25,9,6,5,4,22,29,23,8,12,20,13,16,3,15,25,1,6,5}
Returns: 78.0
2
{6,2}
{}
Returns: 11.676190476190474
2
{3,6}
{1}
Returns: 11.676190476190474
1
{3}
{1}
Returns: 3.333333333333333
There has already been one turn. With probability 1/2 there will be exactly one more turn. This happens if the number announced by Vinay in the next turn is not 3, and the probability of that event is exactly 1/2, because Vinay is announcing one of two cards he does not have (chosen uniformly at random). In other scenarios the game will take more than one turn. The final answer is the sum over all possible scenarios of (the probability of that particular scenario) times (the number of turns it took Teja to learn everything in that particular scenario).
1
{3}
{2,1,3,2,1,3,2,1,3,2,1,3,2,1,3,2,1,3,2,1,3,2,1,3,2,1,3,2,1,3,2,1,3,2,1,3,2,1,3,2,1,3,2,1,3,2,1,3,1,3,2,1,3,2,1,3,2,1,3,2,1,3,2,1,3,2,1,3,2,1,3,2,1,3,2,1,3,2,1,3,2,1,3,2,1,3,2,1,3,2,1,3,2,1,3,2,1,3,2,1,3,2,1,3,2,1,3,2}
Returns: 2.0
10
{1,4,16,22,2,20,10,29,12,14}
{17,8,1,26,28,4,11,27,16,18,6,22,13,5,2,30,23,20,9,21,10,24,25,29,3,7,12,19,15,14,17,8,1,26,28,4,11,27,16,18,6,22,13,5,2,30,23,20,21,10,9,25,29,24,7,12,3,15,14,19,8,1,17,28,4,26,27,16,11,6,22,18,5,2,13,23,20,30,21,10,9,25,29,24,7,12,3,15,14,19,8,1,17,28,4,26,27,16,11,6,22,18,5,2,13,23,20,30,21,10,9,25,29,24,7,12,3,15,14,19,8,1,17,28,4,26,27,16,11,6,22,18,5,2,13,23,20,30,21,10,9,25,29,24,7,12,3,15,14,19,8,1,17,28,4,26,27,16,11,6,22,18,5,2,13,23,20,30,21,10,9,25,29,24,7,12,3,15,14,19,8,1,17,28,4,26,27,16,11,6,22,18,5,2,13,23,20,30,21,10}
Returns: 29.0
1000
{2759,995,2853,1027,191,600,557,416,290,2209,2325,1415,743,2100,1055,2155,1119,934,870,1865,269,1124,1673,1654,194,2060,2142,503,1339,391,119,2145,1435,2852,2274,355,688,2818,2710,1556,1661,1985,1762,2268,759,2595,1587,2605,402,2560,2559,824,1191,2680,2475,1674,2619,2076,64,2123,822,2918,2141,163,2056,2926,1832,1009,452,1801,2072,1297,513,304,983,126,564,2050,1907,1550,291,1271,2616,633,373,1905,1637,1239,1185,1628,2653,1493,2555,2509,1366,774,1636,1172,1300,2151,992,2170,2447,489,2267,2368,1164,2250,505,1619,95,1389,219,422,1750,708,1392,1783,81,1466,2440,2108,2928,1052,2922,1877,295,2679,232,990,2797,484,2887,1204,272,1377,927,2338,654,1714,150,1589,2551,1997,362,1093,92,189,2502,160,2953,101,2113,2791,2573,2958,1992,1402,525,2907,2083,264,844,1849,98,2036,2234,1525,1453,531,2934,1945,2398,1409,1820,1242,1490,1527,1281,1740,594,2402,1265,2303,472,1100,2747,2627,885,1860,1421,994,646,100,1057,2631,1061,162,2580,676,720,2871,2601,2063,27,2205,1386,2096,2266,1024,1045,2392,1831,358,2051,2213,1444,1283,520,211,2001,543,2655,2022,1812,1850,1605,1036,2470,2445,2848,2319,2805,2455,859,2798,811,2228,497,67,595,1900,2344,1883,1643,866,2629,1870,2541,2433,1568,631,748,1692,2557,2237,2134,711,2476,523,623,2378,1163,2404,2825,2385,244,1908,2516,2207,2280,1781,2832,2285,2632,1705,1139,2582,2768,763,2916,2842,2206,113,2381,2152,320,2298,1355,299,770,1759,784,1075,559,1933,2615,973,776,2013,2838,1633,138,1681,985,436,2668,188,1410,1701,1982,2343,1261,260,1351,1299,1043,2521,383,498,1635,2472,2948,2137,2996,137,2542,1647,591,1606,333,2777,169,1785,862,713,2906,1790,625,971,2265,1487,2883,2012,247,2293,1660,1978,347,2843,1866,487,900,404,323,1708,1540,2094,2339,2350,2307,1662,612,685,605,840,421,1340,2957,1780,311,534,1225,2656,2844,2621,2121,2919,1153,571,2429,2452,1226,1775,641,1666,1773,1634,2016,378,779,1372,2675,1202,856,1037,2965,2672,204,2049,1032,215,1307,196,254,1316,2088,2411,389,1352,2340,563,2038,1730,2494,918,2306,1089,2400,49,2822,972,2944,1150,1894,2418,2571,1404,1614,1641,1575,1694,2104,517,2637,2196,2709,2058,1108,120,2183,112,2232,1839,1816,2795,329,1805,1863,608,2413,815,2513,2969,471,2324,1571,1006,1,2181,1274,1401,2741,1983,1019,2497,555,735,1914,1252,1323,1537,2066,481,143,2905,1482,2740,357,473,1732,2927,2093,954,3,1432,573,1070,1236,493,1203,1616,2604,1599,1754,2332,496,1209,2275,5,1233,1506,1349,1196,2020,1304,213,2226,1308,2370,2321,963,1931,1745,1132,1087,466,2708,2539,339,2674,2875,2596,2438,2009,2441,754,130,94,2041,2706,756,537,1176,2177,1786,2295,88,248,445,1980,2175,1999,2271,1756,627,2373,750,1590,2719,2264,2390,2,606,1227,863,576,989,1109,1084,2220,1755,842,2197,2932,738,2533,2282,1020,888,1988,786,1272,2098,2394,1014,1385,1324,1969,156,2570,2662,149,903,1734,1778,151,1951,2290,2903,2023,2337,1213,1677,2689,2239,1821,519,1664,1047,2462,2827,912,804,2657,651,1174,977,32,93,1815,1217,1962,1090,1116,154,2998,542,922,1977,1461,2431,2484,2202,2483,118,2068,2960,1854,1406,1111,1680,1484,1112,1818,317,212,2289,2770,2297,243,781,2600,1184,808,280,237,923,454,1000,805,2391,760,2658,266,1761,1718,2789,397,1038,648,2252,577,31,325,30,1753,2975,1518,1134,790,1819,386,957,566,2454,78,1321,806,2244,1725,1211,1968,915,371,2813,450,872,2576,722,2750,1293,321,1855,1400,401,2742,410,2666,1370,1071,2823,2534,1967,1259,1888,387,1767,136,2090,203,1380,2963,2721,1479,582,65,1041,699,948,2518,1557,1543,728,848,547,1053,2941,2910,2474,698,302,1546,303,2025,1396,1318,783,1126,1160,2701,1147,63,2773,18,1515,2972,1394,1604,201,2568,2597,1106,1489,1686,1294,1223,562,1516,2457,695,1909,1738,1889,258,515,871,981,1114,524,1426,1264,1325,1727,1180,1707,1736,791,236,803,2492,1054,1393,2191,1884,1154,1485,892,2040,2525,1911,1013,1488,400,2861,959,2463,73,2556,478,207,2184,1144,2070,2278,2105,209,2031,1470,190,777,431,821,1441,2210,1902,1360,1562,1553,197,2995,845,2782,1700,2406,2061,867,1437,2763,2661,343,2190,366,704,659,55,1398,1630,1080,342,1670,2065,2479,943,1834,643,2909,2867,2322,474,1423,1544,2977,1507,2649,2780,393,539,1326,2073,2057,1285,873,183,2624,273,2164,1623,717,2942,2945,2161,1609,457,2695,2353,2334,1148,645,1959,238,210,2495,587,752,2442,29,2341,220,1243,1524,2291,2648,2309,2669,2405,1930,2006,2545,619,2737,2085,2659,2466,950,635,919,432,706,2792,139,469,460,2877,1993,1703,1305,2974,2617,176,2242,869,1595,787,657,667,2204,2317,1990,2300,2558,1367,551,819,288,278,1624,2480,2729,251,82,2486,2219,1179,2821,1699,1065,2235,1379,2000,601,1676,2255,1878,560,253,1953,351,2342,736,548,742,798,2819,832,2581,1910,491,1083,2427,1427,813,1724,2725,1892,861,1539,475,2913,1086,2520,1592,2125,1823,1433,2847,2575,1240,1504,2699,1199,1923,166,1958,1764,1356,1659,1551,2671,1655}
{545,1589,1836,2248,1589,721,2720,1000,317,1189,534,2220,2508,534,1626,1867,254,1207,1522,918,1818,403,918,1061,428,918,1346,1791,2465,2187,1791,1610,2197,1376,2257,576,2764,2065,2412,703,2257,608,2241,1676,1479,2248,1805,1119,1295,2065,2378,2720,1000,1729,2248,681,2577,2893,846,2814,2837,911,2187,545,1807,1061,2241,36,2187,2720,1080,1701,703,1487,2145,797,437,1452,858,2463,1848,2110,329,1479,596,233,1195,1491,2465,737,164,2843,454,686,1562,609,1309,536,2034,2478,918,1061,1491,549,1257,1376,1206,1380,403,2130,2127,826,1000,454,1373,1611,567,664,1061,803,1198,2463,2525,2904,521,721,227,534,1444,889,2465,290,891,600,609,167,2192,1236,2471,939,1848,165,2557,2210,2514,2772,2504,545,681,803,889,520,2262,1311,1546,2104,975,653,576,939,2465,1992,2435,798,346,1376,1077,2645,1376,549,1759,1198,2527,1848,403,278,1195,889,2010,19,1768,903,2230,2508,2407,1929,2508,1466,2185,403,900,2710,2651,2020,1202,604,1589,1701,345,1546}
Returns: 40804.93042773051
1000
{2394,1734,671,1324,63,2780,174,808,1585,1608,2667,378,1197,957,2632,876,1323,1018,2371,589,985,2038,2378,54,240,836,2957,2098,669,1245,1880,1492,1114,436,775,2801,1147,1590,1930,933,2493,2139,2660,1391,1252,2807,1869,780,57,1243,2029,582,2480,314,956,1149,1346,1744,2354,1344,762,1546,493,465,2560,536,862,1435,2452,959,1890,1424,516,2711,2291,15,1237,2430,1703,2514,2592,471,1502,185,2100,2675,509,2627,1322,560,1168,1351,1467,1498,2234,2188,774,345,1180,2090,180,2695,2643,1016,1613,232,2744,648,1308,2558,2539,290,194,2153,2080,770,928,1569,1612,1996,2182,445,1352,2941,768,2893,2003,158,2123,936,969,2685,431,889,857,1332,1004,1102,2409,197,2424,724,1133,1062,2282,2825,2628,85,1368,2947,2205,1452,2746,1866,277,1799,220,73,114,1263,874,947,1515,1507,621,1026,1136,2425,1212,1398,251,326,2351,1536,1111,1538,2037,2638,2251,2197,596,1188,152,2619,666,1361,2505,555,2297,313,1858,391,2758,1233,2115,2569,1164,682,1299,2094,2467,1302,157,728,2774,1850,1946,2127,2666,1055,1108,1533,2189,752,1036,1494,2673,2022,1794,2693,742,1196,105,242,1895,355,2404,2258,474,1184,376,698,2633,2664,2723,1526,661,2753,1462,2043,2793,2729,2597,1477,2176,1557,1038,2436,2892,1363,333,473,130,1907,117,322,1640,2054,1362,2461,1131,2840,2731,2150,11,146,1650,998,2520,1718,1033,2134,2177,1396,1117,1788,512,316,1107,2477,447,2903,643,2253,82,1495,1984,784,196,2113,627,700,2218,963,994,2873,1312,1296,1603,2214,2620,1513,188,372,939,599,2316,38,2310,2499,1337,1195,2342,2930,1258,2313,2073,2292,521,2495,1045,1855,911,2626,968,2974,142,1982,145,1389,65,2030,2819,2987,2914,817,490,1404,2135,1580,1305,2750,997,541,367,1736,297,162,1942,1244,579,1219,2603,2052,86,1202,2985,1766,901,2137,2572,2084,1717,1644,922,413,1371,1091,171,791,1826,1331,202,668,2330,1719,608,1894,2362,766,2879,344,2867,414,2028,2120,2498,149,209,2705,343,1970,2858,1836,1239,217,637,208,1439,1916,840,1821,1743,2130,2741,2895,1563,1990,2765,1068,961,2250,654,2125,2016,452,1574,877,833,1374,2864,2682,1853,2759,1737,1372,2921,2220,155,1688,680,1124,2907,2587,1265,734,2117,1480,2598,2614,1778,1684,2531,1768,760,205,324,1106,1094,1347,960,1503,1614,639,1741,930,419,2071,2927,2510,1568,2846,2533,2239,2303,842,203,2884,2345,2623,1379,401,1856,1532,632,1450,2543,119,1578,1632,2542,67,793,2546,488,2398,2518,2103,2248,350,31,1838,1921,1290,295,388,699,912,730,2408,307,2815,2799,1562,1137,868,921,1763,2487,2782,214,2940,906,2266,542,407,80,87,2600,2733,1472,2476,1428,2653,103,126,1545,575,1373,2889,2108,1384,1543,1377,851,2124,1247,141,2869,1732,190,2200,2853,2856,1705,611,2088,2105,1879,1986,2656,1685,2676,2380,704,2897,697,1153,741,1709,1948,292,1328,707,1924,229,231,976,1182,1963,2805,1813,2288,1751,1595,993,1316,2309,807,1534,846,559,1961,721,94,1268,369,571,2837,252,2537,496,946,679,2179,43,2736,1540,282,1097,2490,177,1670,1217,1537,90,470,995,60,1437,1179,1908,1073,1476,506,1941,1815,2645,2721,1325,2439,398,987,2990,2368,1726,2453,594,605,1978,2478,2908,1998,2,658,1954,491,1220,2190,2559,2938,5,1065,871,1155,2158,881,2703,2095,736,1725,1327,3000,1242,24,1236,1659,504,2795,2639,1714,2978,1896,423,1645,702,534,2422,713,1052,1464,1762,2851,2021,1691,1234,614,1620,2324,2444,2905,2637,2195,1919,353,2844,338,2045,714,1750,2065,211,628,2020,1375,2513,2566,765,357,2041,52,2791,955,41,800,2186,2079,1634,254,179,673,1857,2097,920,510,1174,1343,824,143,2132,530,330,183,328,1544,1639,341,2563,796,834,1561,1039,1953,694,1020,19,17,580,2710,892,1646,1041,866,662,2777,2604,709,2944,624,2717,2804,2607,32,1631,756,397,2512,339,2588,1637,2737,2894,1447,1193,1816,2011,649,1560,746,1931,1810,1707,448,1541,505,256,1134,2570,2131,2988,2616,1001,135,1364,656,2972,2111,2747,1122,1787,2270,2460,565,116,2287,2445,226,2650,739,1947,302,2155,2321,331,2128,1712,1177,2922,1012,2692,1488,446,887,166,975,153,823,1819,1594,300,2902,1434,629,1748,1096,951,2762,1112,1571,1080,2192,2168,2243,1889,1876,2806,44,1468,1186,289,160,1030,1833,1021,1285,2278,1935,2686,392,1313,2152,2252,2346,1079,1873,1973,843,903,1092,678,2898,2525,1478,1868,2555,487,1927,2850,364,1669,1839,1456,1050,825,2183,2227,2662,361,2390,261,2451,1146,291,1786,1399,2178,1754,1713,2862,227,482,460,1110,2618,2489,2006,2680,2827,1501,1253,2379,1677,733,1269,2156,144,2391,2261,613,831,1792,1559,1025,2238,359,2708,1139,540,1756,1338,2206,934,1023,1348,2468,1667,1310,938,1385,519,593,352,9,1694,2934,1118,2283,2170,2545,409,2915,585,2999,1160,2249,1782,1158,2066,275,553,2876,253,1681,1676,2387,2612,1411,1228,1173,1887,2557,2792,2491,1256,1964,170,1272,2503,812,551,1267,2416,743,2096,1740,2887,1453,2335,2981,1698,288,1910,2273,535,684,1461,1933,1842,972,2752,1770,298,1104,2517,2918,451,983,2254,1145,2036}
{1224,2668,1710,2486,2278,972,1366,1282,43,745,378,1987,1366,826,372,410,1948,43,2727,2247,972,1607,1578,518,884,1578,1432,603,2278,1448,2336,1690,43,1800,826,495,2336,1773,1710,1027,1773,1214,884,1134,898,173,2874,422,168,1306,43,1366,1023,1663,970,676,1448,1339,1331,1642,2363,2588,2978,2039,2587,1448,1394,1039,2030,2141,1707,1448,2039,1552,2502,1311,1829,784,1181,1773,2054,2024,1778,1710,2363,2170,972,2276,871,90,1394,1391,1748,2466,2988,2113,1556,608,2780,1758,2438,853,136,565,2893,2276,1364,1743,1757,2267,917,2010,2549,850,329,2194,2994,655,1990,881,1181,2278,1201,1523,1890,1108,1116,1686,1603,2363,1039,911,745,1845,1669,147,765,2455,1127,1306,2842,758,1988,2880,2039,2988,230,1877,1153,1748,1224,140,2252,1914,1282,2208,2418,1990,343,2332,1147,2252,125,1608,586,1701,595,419,2960,680,2097,2010,2485,2253,484,506,1193,2426,1559,834,2352,2653,2105,2039,2603,1480,136,2267,1201,136,2067,2978,1701,826,709,2358,1890,1644,845,2492}
Returns: 40820.30908886231
1000
{1207,1566,317,1274,1687,2273,1129,1447,1601,97,1028,2652,1218,246,2101,2674,2409,2638,1337,2118,2541,624,1861,1923,120,928,962,88,2763,2826,2192,1319,589,2034,1146,352,2716,2014,476,2930,716,454,2693,335,1374,2290,2899,1801,2367,2970,2894,302,2179,1981,752,2003,226,2904,1581,2692,171,2583,1361,2519,271,2109,2228,2350,264,2253,440,2343,1307,1781,2634,525,1979,2656,2719,416,2655,892,2548,2126,2902,2482,1197,1952,760,1775,1296,1705,946,2259,1646,1445,2699,65,2988,2138,2731,377,812,2338,566,2051,1472,2537,2383,322,543,531,1183,34,1609,1001,397,1029,2205,1094,1924,1877,55,2984,2625,1717,1896,237,1616,442,934,1961,1235,2387,2786,2738,1434,355,1583,2278,178,1867,2199,1631,445,114,1617,1007,815,236,2006,2425,1431,2105,1458,1729,1088,1703,1901,1645,407,2774,374,2471,826,891,2815,2167,1570,1245,1184,1710,880,2401,313,1244,223,2260,1840,2860,1808,535,1773,2283,26,2394,2495,2094,1718,2691,2472,1563,2901,1252,124,1273,662,992,2832,2428,1849,193,2424,2187,680,2182,1459,2659,1716,2518,1495,2842,1410,2055,1723,2831,2684,1604,2544,1037,1564,636,961,1585,28,165,2251,7,1124,2155,2435,2190,1552,2726,897,180,2067,2614,2066,1596,2295,1338,1429,1190,2551,741,2872,530,2927,2696,1393,1318,348,2076,851,2142,2423,809,910,2420,2546,595,2601,1487,2491,733,900,2212,1568,2090,1561,640,765,911,10,689,2976,2890,2991,1411,2905,2918,811,927,2165,641,448,2671,1359,959,2417,1793,2080,1643,1557,1553,592,2556,2166,1693,45,2593,2286,1528,1522,1606,1160,2438,1231,2120,883,1677,777,872,77,2484,999,2935,2555,490,1782,2743,1240,2506,388,2510,975,436,366,2599,304,2827,667,392,2680,2119,1833,1764,1453,2188,1759,1799,2530,1187,242,842,1672,2450,518,2844,1686,571,1683,473,1774,1143,2460,671,1931,2302,1044,1663,1339,2086,2762,2678,1349,394,364,1077,2658,1956,2529,979,546,2668,2965,628,1688,288,1817,1937,1073,2351,1826,2841,1233,169,2048,894,1872,2307,2750,1882,2467,600,2980,1482,742,1370,1182,562,1913,1506,1794,637,1835,2114,2787,387,11,2933,899,517,787,1032,2168,1209,1996,639,2512,104,2941,64,603,573,2881,268,1917,2857,1386,408,2136,1423,2210,649,341,673,74,391,1652,814,586,1123,1938,678,1932,410,2310,2237,239,2489,2466,1515,2840,1485,1890,291,1778,2249,2125,2078,311,1978,2679,749,1384,2725,1469,1249,1221,1118,795,2308,658,2146,2623,511,2697,1072,255,1054,486,342,2747,2032,1732,420,868,1303,344,1330,1396,1874,1982,1162,113,2757,1323,2047,554,1415,1095,1735,2378,2458,1484,2813,594,1756,1837,1977,1753,1168,2454,484,1565,2046,168,956,2855,1068,1405,438,1279,2455,1382,308,153,2704,1971,480,2243,331,2160,1582,620,84,2497,1471,150,404,1733,1009,1169,2801,2422,2373,2884,1873,2914,2979,754,1478,1401,2156,2797,1502,943,1493,1075,1975,2789,245,1055,85,1474,2982,2673,694,2705,250,2882,2411,1944,6,501,2629,1052,2299,921,1699,2773,326,706,345,2657,2893,1806,18,2574,450,611,1962,1509,2474,1056,1574,2056,1047,1363,1972,1743,346,62,2868,321,185,2521,844,2407,1368,2265,2012,2607,1223,51,2053,1155,1486,123,159,2779,2891,1927,2818,2145,2580,1897,700,78,593,2063,1789,830,832,447,983,1304,2993,608,2532,1958,1243,230,738,1757,2382,48,1053,939,2780,37,456,2633,1626,1575,669,1387,929,1246,2186,2996,2281,41,1875,695,2115,2085,1002,599,30,2313,1488,963,2615,875,183,425,626,1263,1712,1074,1963,2632,1442,601,1266,1071,2434,2132,2910,529,1862,766,14,1232,923,576,856,483,25,1038,2098,1234,778,1105,1540,841,2224,2688,1920,1698,2767,2617,2611,1709,99,917,2400,273,2221,2662,1546,656,1188,465,981,890,798,2642,2631,228,2457,2854,784,574,2793,275,13,2883,2305,63,488,60,1690,192,698,2888,1507,2241,2885,2650,2347,231,2218,1888,461,2061,1481,2934,1821,1358,1968,191,2103,2586,2486,731,1847,1376,1103,362,1657,2681,2342,2068,1109,645,2528,2452,2330,2712,753,772,1994,215,94,2255,1483,2091,2938,912,2406,2829,2703,2442,813,2386,1236,862,1354,2026,1414,336,2326,2263,176,1760,2229,2087,1547,2432,1400,53,2977,1908,2293,143,158,1635,2238,475,2408,102,1152,1175,843,1885,249,2772,2449,2568,79,1650,174,175,262,2561,39,9,1697,2759,1816,1452,2462,1347,1803,2803,2752,720,1836,2494,2359,737,2584,248,877,859,257,2236,2714,1119,457,2264,260,1186,874,299,1902,767,1599,2380,1988,2332,2670,1309,1812,776,2922,896,691,2099,920,977,2315,353,718,415,1741,845,901,2636,2246,238,1786,1204,1787,1403,360,1796,1394,1696,2950,1255,1578,1551,283,1818,1649,1407,861,2379,1022,553,2517,2399,697,72,2698,292,1514,2805,2622,2906,414,2835,1070,2083,2323,1178,2404,1749,1110,358,1057,2771,431,675,1659,2522,930,1911,1811,266,1512,2316,696,395,1734,1418,295,1437,2247,2874,91,2362,2095,878,2203,2734,2374,132,340,2131,692,2547,2040,1636,715,1242,2072,1711,1331,50,1797,2985,487,1878,1284,1999,241,1499,2345,2828,551,1364,1865,2596,1625,1802,1262,1777,146,2172,728,664,2329,421,1322}
{2309,2225,1131,2309,2225,2560,157,322,1131,1580,2881,1131,739,2225,1131,115,1927,849,2711,355,433,810,1031,1777,1163,2225,750,1163,975,2904,1870,2225,849,179,2605,1811,1579,355,849,235,2627,2548,2439,403,1419,121,2512,573,2309,1442,2353,2364,335,974,2587,291,2401,2206,2225,974,327,2512,1064,1147,2007,1764,1489,2756,2224,1637,2882,2560,1637,335,1141,2124,97,911,721,1908,1001,2402,2512,1932,2439,2399,1469,2508,2225,1209,351,1954,1886,739,97,1764,2106,1179,2560,2470,720,2959,721,1690,1611,2065,2399,2462,1870,2189,732,2875,1473,2082,964,1515,550,2254,2225,1820,2978,2622,1420,1473,1758,1997,1870,85,1820,1067,2842,995,1163,1690,1532,2309,680,592,2470,1927,974,2331,1684,2153,496,720,738,1914,2213,974,2390,639,976,785,77,488,1804,2876,1238,481,140,415,144,440,862,293,2399,1777,184,1214,2466,1465,183,1131,739,632,2322,882,1927,1820,209,2229,1945,462,632,415,2978,984,1764,818,743,1920,1399,335,165,1122,315,1558,31,2105}
Returns: 40814.108885317655
1000
{977,493,387,1015,2040,2596,1841,2736,1259,1163,2808,110,474,1278,2889,603,2026,432,1487,546,2921,2320,2678,882,917,1282,497,2302,2976,1066,439,1920,1294,971,85,2635,1263,1403,2629,458,2160,2154,1488,2215,1682,1289,1731,2875,2497,2593,865,583,1313,2354,2021,1168,427,1913,2981,1446,1879,1232,1676,2755,1657,299,584,629,346,750,185,2559,906,2275,943,2201,1023,2711,1779,2868,360,2854,2134,910,2884,2585,727,481,1222,1869,136,2464,2231,1074,828,366,1133,2607,1445,1500,2735,442,1955,1616,1316,2345,1834,559,2571,659,1051,1601,1751,1906,703,988,2027,269,1330,1293,1469,2306,1921,2387,970,1705,1785,2296,533,2406,1798,2945,197,130,2864,468,2978,925,1206,1683,2722,1899,2417,2569,1355,538,2955,2964,402,662,1693,1633,966,1478,1247,2460,1742,2923,1176,1291,127,1485,433,2228,398,2504,1385,600,208,1034,2223,150,202,2430,2052,2866,857,2950,2489,634,2284,2276,949,1714,1830,1501,596,2897,1726,2212,2347,116,2646,2486,2997,665,413,54,1640,1953,1223,522,2023,1768,2435,893,1618,2534,1130,2787,1388,1926,2626,1509,1609,2014,2193,702,687,2003,1093,2392,2532,61,2380,2117,2053,455,1393,914,2878,631,2931,2397,200,410,292,920,790,887,1577,804,2384,286,513,881,2883,728,2113,1280,721,1011,77,1748,809,2631,951,1816,647,783,2105,1518,2453,1115,146,2967,475,1919,240,2882,41,166,2007,1148,1525,2960,47,928,1392,1022,1465,1679,471,1630,601,504,918,1489,1411,2424,2753,1918,774,818,2233,361,2484,2079,2974,570,755,747,1325,2454,1950,128,1541,2332,210,2672,2888,2050,1373,422,435,91,1258,1865,215,16,2083,764,569,2754,28,1605,2576,1668,2220,2708,1966,963,1761,805,1256,839,295,2553,2902,568,1729,2311,916,1887,2114,2205,2097,707,714,109,1400,133,1317,1535,1820,833,277,535,2056,1970,769,1443,2115,2549,1606,252,2301,2483,315,1659,1068,2282,1981,1548,2848,2480,1903,782,1725,1224,2543,404,1499,1962,382,416,373,1394,2355,2513,1354,4,2080,191,2574,66,2235,288,885,2248,2339,2463,2651,2619,2908,256,904,2527,1078,2224,1389,565,2673,2773,389,354,1904,2798,352,2666,2891,1166,437,973,534,1008,2517,2440,761,2789,2627,2770,1575,1356,2880,1838,1386,2100,2342,1046,2096,2427,2506,2812,1300,2591,1359,875,1180,679,2830,633,2825,275,560,1980,2867,2995,669,394,582,1583,1826,974,2149,1108,2148,2362,787,107,121,2975,293,45,2372,1270,1823,2358,113,160,358,588,1216,2043,319,1194,340,294,83,2814,1694,1236,908,1594,124,877,2466,1065,602,902,1727,1835,2009,529,1586,220,2376,1198,1544,2300,2668,720,2363,760,1927,2877,2968,1532,2686,1791,1897,103,2712,2269,2246,72,323,1047,1787,1496,2520,2210,2222,612,770,67,2102,2173,2805,2890,2846,2108,1949,912,73,1090,114,56,1399,2903,1752,2896,2308,1110,2271,2493,2617,2852,143,90,651,1952,1472,1715,1049,921,1782,1152,688,2524,2344,1475,1930,1765,1307,905,1234,1335,2213,996,2502,2314,1769,2135,1909,2277,2628,517,1287,1117,1925,879,1810,2653,62,2548,636,1414,2583,2706,235,1750,1417,1165,118,1890,1340,167,199,1139,135,1001,350,2662,722,1320,2164,2247,2588,1328,1819,2099,2698,65,1587,2323,68,1073,967,1384,2448,1063,1401,1493,351,1789,2737,1043,737,3,60,1695,939,1775,2695,2426,1569,152,2389,2437,2172,2509,1631,785,226,1687,1738,399,2207,238,1965,1231,272,2828,344,2120,1754,2051,945,1387,1137,1190,591,362,1099,1885,2350,1089,2602,2937,2909,901,1539,1998,1585,628,2512,1205,2568,1277,2008,2554,409,2327,378,357,2608,2622,2038,2935,2728,2414,1639,419,878,1158,2721,217,1129,2031,1863,2906,719,1094,2526,2618,1790,1840,2895,1992,1644,1524,223,1911,414,1380,2259,2836,2827,2621,1092,666,576,1233,2280,2375,1425,2625,2563,2289,1993,2598,2476,648,1170,2682,2138,1434,1828,1124,1030,1057,1811,412,762,364,1946,2066,1717,2758,102,372,1649,626,506,1377,2724,691,899,265,1265,2726,285,621,2383,1519,1999,2818,79,2206,1352,1379,1191,2528,981,745,1884,1665,2022,2660,2368,514,1031,1691,1928,615,2005,1196,2597,1114,1215,2098,2604,1436,1512,1889,2644,1781,673,453,843,179,1968,1255,1080,2751,1941,1723,2039,2182,1426,1155,302,838,1734,661,308,2263,2067,1010,1241,2562,2876,948,1528,2017,225,2893,183,321,1542,2042,2544,806,1661,55,1131,247,322,642,871,2431,2858,979,976,198,832,2409,922,2649,1886,420,1832,501,2410,2647,1503,1915,1202,13,1407,1299,1042,2189,1109,574,1301,1667,2778,1576,374,2443,193,1737,1295,229,212,539,2078,2498,1550,421,1692,1395,2547,2353,982,897,2699,739,608,1571,2738,1200,516,2211,1698,2885,2640,1292,52,964,2542,1413,2537,709,1172,834,2299,1346,1827,1085,233,2145,50,2533,1088,207,1997,1102,2174,428,2961,553,2333,1476,676,1182,2462,1881,2581,2069,1210,1932,2786,111,814,2942,2959,2952,2850,1029,2037,2152,2741,2161,972,1747,767,2244,2750,502,1672,2473,780,953,1342,635,1054,1857,1189,1495,947,609,1590,1096,1907,2356,1466,2894,1514,2620,1226,469,831,483,2792,2742,1107,518,667,927,169,1214,2714,1662,812,22,2124,870}
{1254,1019,2750,1254,2429,2999,1254,707,2003,1254,2393,2706,1329,1762,292,1254,514,2750,1246,1857,2189,176,68,26,1254,1019,26,1254,2393,2157,1557,677,2880,444,2460,124,1557,1857,380,1252,866,2999,492,367,2984,2315,2393,843,2315,1432,2182,2423,813,1092,2661,1501,2984,2775,1434,2761,1728,2899,1781,1302,1434,2631,349,908,228,2657,621,486,2456,1394,253,2456,2799,635,1796,1486,2984,1274,2429,2314,1195,2546,2938,1933,540,2401,280,369,2543,2657,1857,2880,1557,2206,2482,1551,1382,824,2775,971,376,2315,106,1333,2500,2393,1825,2456,2429,2897,1266,54,867,14,1879,669,1302,691,2233,182,913,1394,926,1995,2938,1557,1520,2825,2633,995,2499,2539,1370,2113,2315,1373,1426,2470,2165,1857,672,2267,376,2657,54,1043,2156,1420,1155,1628,1741,2585,1505,1141,867,1193,2393,852,586,621,867,1244,2537,852,1254,1643,2327,900,33,785,1266,2511,1620,926,2429,1379,975,2036,2147,487,68,2631,1902,1176,716,2500,347,39,1557,1153,1707,926,2832,957,2500,2872}
Returns: 40777.03920822476
1000
{2842,1832,2550,563,311,478,2931,2878,682,1396,2730,1727,557,747,2402,1999,782,2034,299,3,2979,1561,1180,761,1507,2627,2200,1395,79,389,244,818,2020,1549,697,1403,2056,560,2090,885,436,412,33,2887,1485,254,119,1708,795,2126,2030,301,2575,1077,1944,2789,825,2387,1035,348,626,980,1199,1954,1528,738,966,2777,1833,2551,2742,2944,858,1778,2566,1347,2881,82,2935,1063,610,246,18,2745,1698,2092,1627,925,1257,1105,1337,687,1480,354,2899,914,2873,642,1324,2948,310,1983,468,2196,2656,723,390,2107,1202,766,182,2425,2101,748,1013,535,295,2631,2421,329,807,2444,275,2780,569,2326,2272,2763,27,2583,229,1411,2214,2282,1840,1659,492,1691,2331,1237,2868,698,2009,1892,1957,588,1519,2295,1445,395,583,1127,2210,565,2350,824,2378,1176,532,821,2969,2562,2105,2664,727,1923,2385,1075,463,1266,2130,1495,175,143,326,740,2099,2743,805,1945,1874,2303,1015,1823,2495,2156,317,2138,971,1946,2934,1056,548,1587,343,1596,2524,1312,2920,391,1354,1673,290,1789,2857,1336,265,75,1166,604,1790,1643,2041,1518,441,2690,2148,1182,1737,2677,1177,2912,224,1010,482,937,1270,2527,1711,2047,2993,1701,2133,900,2589,1753,2078,127,1818,1284,2356,136,109,2259,2582,606,232,1389,545,157,179,2938,2097,2779,2313,2336,2062,459,1023,65,1136,141,981,120,1991,32,1516,2262,2855,2091,1496,1975,1895,953,2484,527,2508,1941,1433,623,923,1697,632,1537,2990,411,2590,934,2448,2794,853,1734,344,464,528,2198,1383,1824,1342,2752,2716,1506,1889,868,2276,1251,625,704,129,1447,806,1141,594,1947,1048,1298,1500,2699,1242,2152,420,2102,561,287,2316,2083,2053,1688,1374,485,2184,1084,2342,731,2700,2289,590,975,1822,2746,2821,353,1955,2075,1786,2066,2354,1040,911,1835,783,2264,2195,667,2959,2129,2537,683,1949,1053,2189,386,834,1046,2335,2164,772,2604,1878,2077,2980,2359,45,263,2286,2626,1399,2168,628,135,1133,690,629,1398,1891,2949,1962,1732,549,2096,2325,1232,2894,2727,2226,2860,1704,921,1713,997,580,2996,2919,2568,219,1995,1423,1051,1854,193,842,137,2728,283,1717,399,1773,2882,998,2803,1454,450,442,1436,1029,2113,509,2916,445,826,202,2280,51,165,453,2074,1598,2986,831,2974,61,1864,2006,1194,2116,898,2647,1618,1268,2224,2541,1885,1031,1590,518,1637,1693,1974,2853,43,2506,155,2317,959,1523,2173,542,2400,388,609,2270,1486,2081,1758,286,979,1173,540,1844,2409,1546,40,217,855,116,1275,1100,2638,433,1258,815,2621,622,1200,1366,1070,669,2576,1041,1613,744,612,970,1417,59,146,2287,779,1569,1006,1752,881,23,2704,510,631,2384,1668,743,893,602,989,1434,1683,368,2169,1720,1323,1825,2641,231,1608,1652,13,906,1940,2941,2250,2353,2654,551,889,1990,1722,769,312,2739,801,2854,928,2761,2600,1247,1319,2483,183,1224,2954,1543,2370,180,895,1938,163,83,2082,1391,1539,456,93,1004,2688,2674,567,1601,2548,2170,2577,2833,2027,500,2127,226,2687,1055,2843,861,1501,1536,2867,2957,2786,357,1295,1472,1186,2057,1740,9,2123,614,2864,253,1926,2112,2883,2380,1406,1689,2573,236,2048,1558,651,1458,1530,856,2851,1165,225,1072,454,2491,514,2374,1446,2015,1455,566,67,1397,91,591,1876,345,2795,2293,2175,1588,1814,950,1404,1074,2111,992,1929,384,1512,1007,2932,1361,409,2373,751,1583,2150,1111,867,1760,871,703,1803,1859,1123,793,2212,62,1963,1197,1850,1580,1045,1278,2755,2499,1365,1742,2140,2315,41,2725,534,913,1802,2642,197,2825,770,2816,1042,2865,544,1533,646,2298,490,1104,2613,1868,2135,228,2646,2217,666,1086,1372,302,791,619,1916,1250,2501,84,1956,2982,951,1719,811,1017,673,1332,1770,6,1196,1517,2884,2958,1413,1387,581,522,705,70,713,2624,1961,2371,1925,1451,2263,8,1766,2093,2001,2987,2110,1262,298,1525,22,294,1625,407,1175,350,1671,2419,1468,1504,184,2397,2828,2433,2760,1430,1198,76,2839,2620,2088,2222,2125,108,1579,2592,2208,2581,1134,1161,501,1800,1879,394,1068,1191,1813,2466,1279,707,2845,439,1043,627,1119,1908,1140,2104,1393,2557,1872,1069,2080,2036,1913,1933,168,1246,2026,438,1214,796,99,2019,195,428,813,2305,2023,2306,1067,1631,128,2790,2114,2750,126,430,962,140,695,434,2781,2639,2512,2731,2834,511,1300,2914,2933,1089,1229,800,1577,2191,2277,2961,2744,1093,2947,2100,2260,1756,851,595,1761,190,291,374,2285,297,1345,1477,2362,828,2877,692,2482,1611,1799,1886,1201,1034,1309,2300,2399,1540,2496,1143,2477,1464,1641,832,1948,725,2651,150,351,774,676,2229,2997,2035,2283,2275,579,903,258,118,260,2936,473,1154,1846,1593,1213,1479,1721,700,3000,829,1665,577,1660,145,1902,956,2525,1576,1626,658,1426,2443,2729,1204,1917,1705,1638,1733,716,68,2265,2029,322,1566,649,338,926,60,2297,1642,1541,2457,1609,1562,2871,1489,841,396,2032,2650,2736,688,1350,652,1292,1375,2417,2732,943,1578,259,1545,837,235,2605,656,1620,2449,648,1195,1662,1277,754,930,1225,1193,1676,2470,88,1014,2691,2324,1064,2766,2609,201,2455,2718,523,1871,2172,1498,2431,1784,189,369,999,1142,899}
{2503,1187,589,2968,1508,2342,2800,1508,2207,1222,2290,125,2968,2284,2207,1658,1493,2127,2503,2284,599,2390,1187,652,1986,1508,2207,1707,1493,2631,1124,2634,2207,383,2968,671,1209,2290,1112,1124,2290,2718,1707,2868,2718,1535,2015,2718,2028,1861,2127,2028,2419,1036,2722,2968,1455,2968,1266,35,1238,663,2718,2503,255,2816,1432,1111,2631,1283,1351,2631,972,2145,265,1793,2979,2718,1707,2977,2631,2968,2803,740,89,2102,1501,736,2223,724,2800,546,1036,1551,1492,599,845,546,2127,2968,981,2427,659,275,811,1839,2590,1303,1492,570,719,2155,255,623,110,1508,623,2025,743,2631,1222,2837,1265,995,981,2631,1310,2284,2004,1412,1211,1097,1059,2290,1229,367,955,340,238,1640,1574,204,1403,758,1467,704,427,2237,688,2631,1286,87,268,1209,2754,2058,890,2910,2127,2025,2413,2550,963,2284,1918,2800,236,173,1706,2284,707,403,2052,2349,994,1829,589,1774,666,2588,112,2860,1729,2398,765,2275,1378,2514,2865,1943,2008,2865,1024,1508,1541,2994,2794,2014,1222,937}
Returns: 40786.44587307895
1000
{224,2406,2611,424,2546,2941,1615,1841,1471,2155,1112,488,690,2461,1994,1019,598,722,1481,2643,2158,236,2909,2488,2021,1046,1121,2405,2784,1281,2178,280,173,1833,1624,2733,1234,2024,189,537,1047,282,458,1677,1141,2258,2882,2228,2732,1857,1430,1491,752,2504,903,720,2562,485,1277,1993,2760,828,2860,2271,579,2573,414,694,436,445,204,1273,1380,2995,1756,1238,2051,379,1995,2640,1179,73,1845,1568,1817,1468,2944,2245,1964,2692,2381,499,1985,2634,521,2027,1298,1828,2684,145,51,329,2470,109,731,1242,2724,2156,2840,2750,2098,1456,2868,2522,1890,741,2880,2348,2361,420,2329,1705,1761,655,2861,114,2869,1269,1863,1021,2517,361,2160,2105,1278,1891,2208,1783,2827,1059,1344,2831,2745,723,1470,1353,575,1734,515,12,2641,1555,837,156,2430,2741,1738,1843,2650,2911,2948,20,1501,255,2101,674,333,1902,2103,2291,2810,1493,182,2943,2964,2998,1457,1941,967,1866,2599,1512,542,1067,2210,1306,322,258,2989,120,621,2458,729,471,2298,1031,2581,519,84,1691,373,916,2082,1600,891,2639,2770,556,2441,1069,91,1859,2195,1837,2985,342,1062,1239,2605,2013,547,2399,260,2404,1320,2665,749,1782,1322,1408,2712,1815,2560,906,272,2510,2251,601,2759,2313,833,589,972,295,2823,1478,1183,1286,798,624,1814,6,2509,306,1227,1311,1644,349,1909,2079,2262,228,1861,192,2654,2526,1143,2249,252,863,1400,775,326,2773,106,599,155,1204,1743,2279,1158,2400,1153,1963,96,2552,2473,2041,555,744,58,2939,1486,540,2928,1686,355,947,2567,2447,2456,2355,1575,2891,1531,2564,8,673,249,2378,1566,374,1061,2833,2900,912,1919,1036,2630,2828,581,2371,2777,180,2476,2420,2963,336,1303,1920,632,2492,2889,2975,742,2851,2906,335,2480,992,1848,1319,1967,9,997,398,786,782,1674,2267,2839,1340,1055,2389,297,1475,825,1371,2311,2744,267,572,2660,2121,2867,2876,1104,1308,1440,1885,1421,1742,2159,634,1325,1097,890,544,573,116,1505,1241,1530,1989,2714,2596,66,1917,98,1106,1105,2982,2739,1939,1451,72,1660,1596,1804,2131,2717,2352,2532,1433,246,1100,628,67,877,54,1134,1702,1955,978,2879,2662,1099,172,2925,2137,496,2576,956,1872,2807,2539,1285,2558,2968,1282,1093,1725,88,152,1892,53,1109,345,428,1537,2776,2669,1178,954,919,1978,920,452,999,580,1316,2856,1597,657,914,561,1390,474,2293,2695,1151,2360,2870,1212,327,2676,650,1829,1830,1148,2606,2410,1940,2620,2452,2212,753,1586,1276,2177,1054,1983,2104,2991,2415,859,870,448,2191,746,2780,1886,1595,685,1614,818,1137,1563,2591,600,1663,991,1251,2342,510,266,1682,2411,2246,1769,2247,2437,1125,348,1877,2535,1577,687,2047,2871,2651,2119,310,2758,1658,100,888,2892,842,930,1713,1081,1358,1490,220,2200,314,185,2367,2276,2333,1747,2167,313,1934,1750,2063,1680,1432,387,2766,2099,1645,1283,2322,794,283,1452,288,1543,1006,222,1559,2264,1255,829,501,2206,822,686,653,869,1463,2513,617,198,2416,275,2786,565,1349,2216,2583,1375,1164,85,1236,2231,1979,10,668,2278,1938,1086,1982,1510,2422,19,304,41,1235,1801,430,541,593,1548,1487,876,60,713,323,758,1152,208,627,2421,2912,243,2274,2762,1176,2838,2819,1634,652,1640,2734,2419,203,984,878,1997,2688,1200,2023,2174,472,2947,1467,1489,2837,2349,1765,1969,1442,108,1310,1637,2074,2475,1044,1671,2595,451,1690,2412,2390,692,2959,2236,1033,907,2626,2398,865,2942,2402,1820,425,358,366,1853,181,2479,1768,508,142,2500,2859,1198,2281,2973,500,809,34,1150,118,553,1230,983,1427,26,738,24,949,475,2495,491,190,261,2044,698,1374,2308,1882,2207,1466,1735,2270,1665,151,1987,1538,1509,2257,63,1800,1567,2519,130,1601,231,1818,2197,1707,1029,950,1736,416,1693,2999,303,2818,2232,2691,195,656,316,1521,1952,2334,274,577,250,2575,1755,1523,1776,55,2666,2094,126,48,2165,1199,2897,1910,1354,1391,2648,936,276,1120,2230,1578,450,2186,1294,648,514,1844,1703,702,1194,1373,2699,2716,2927,707,2752,2707,1342,201,175,1382,401,2950,1428,219,1974,2386,277,2217,1068,119,178,1113,1748,1263,511,270,880,1182,1474,300,578,179,1499,1056,2028,2305,1035,2514,1602,1528,2363,2917,278,892,2565,719,1806,592,1444,1438,2679,1883,2832,2046,2364,1111,932,442,2737,1225,2233,2209,2173,1261,564,2252,805,1534,961,651,1270,2521,2017,2304,2150,1795,1115,1656,970,1350,406,894,1544,455,2738,2723,2940,432,1352,17,1951,2328,123,1377,733,1732,708,2703,136,1324,1908,1930,1174,2971,2239,1799,2088,1695,2187,1809,1617,884,2846,1248,1288,2449,1996,2988,43,111,2445,61,439,1030,171,855,1618,456,585,1565,800,1961,251,2722,1074,1015,806,177,807,2496,1831,2153,431,503,384,2343,979,94,289,2501,1295,2610,2221,596,864,393,2144,2146,523,263,1569,2388,1409,1685,36,2106,2508,399,1161,2135,898,468,139,375,1740,135,2961,774,529,2465,2434,469,1632,1361,874,1023,2536,346,411,958,759,1701,2331,1372,1160,2930,1679,2018,1175,1675,2005,1786,2505,924,2136,112,1462,1937,410,2658,2493,2442,2058,1649,404,2844,1611,461,966,2601,1171,170,2668,29,862}
{505,1674,2970,206,1674,2970,4,653,2766,1437,1650,2970,206,1081,2970,2862,2539,2444,2616,1175,2882,254,1958,2970,2862,1674,2251,2455,2,763,2515,2889,617,857,1329,2217,1393,561,499,679,1674,499,1075,1650,1296,1694,268,189,1633,956,1011,1437,2079,49,1739,2501,1011,743,1660,2342,328,2079,1250,206,2501,2882,254,431,2060,254,1727,2766,2849,409,2158,2849,337,832,1075,1990,2357,787,409,924,616,2249,1342,688,1434,832,1012,2936,907,254,2964,2429,254,2501,2653,2545,1057,1507,128,2539,907,206,1082,1762,128,2121,1250,2112,1674,2882,1012,1175,2704,2070,1223,273,2001,181,854,2112,2745,1891,2008,2282,2919,2862,431,1980,2032,2964,2406,1717,1444,2257,25,892,949,1757,2501,2212,2070,431,1877,2873,2930,1363,1075,2964,1182,1413,339,2970,467,1727,1891,2280,2065,1036,2497,1223,2934,2608,1674,1446,915,2,624,1012,1538,1987,206,142,718,558,2121,2832,206,2964,721,254,1232,2766,2616,2703,2106,2849,2563,2671,254,2100,2614,568,1565,2934,2418,2119}
Returns: 40820.24944753998
1000
{1055,1617,2486,1159,24,2938,2850,2576,575,1759,1883,116,609,2341,1935,913,1186,390,437,2024,37,2408,1969,300,276,2196,2477,2140,1019,3,2873,1461,895,1687,1908,2224,1444,2118,417,1611,2322,601,1158,1591,1735,1483,1966,1650,1951,394,934,2954,2784,180,334,1873,872,761,2058,1344,145,2220,1306,1193,1404,2675,1665,2100,730,1812,1632,2073,554,1274,329,1317,1608,1132,83,2712,333,2974,1917,2081,283,2055,1550,908,2893,335,680,643,2350,526,470,1413,2226,1646,1370,2348,467,848,1843,1855,1614,1692,236,816,2654,2673,860,2012,2331,1909,184,1955,662,1930,1738,1278,2524,1141,257,420,2422,2403,1439,2417,2916,1844,1262,644,2313,697,1327,2539,2191,2514,1199,2260,2864,1805,1083,2400,1978,1478,2749,135,2879,408,874,2045,1202,90,775,1836,1923,773,942,2652,2125,800,2390,274,993,1287,2586,21,2722,2631,1014,2364,1764,1736,2484,340,2870,1170,1639,2327,1772,2175,58,432,634,2145,1157,2252,1136,780,1101,2025,987,2447,2352,428,996,511,2861,2315,2694,385,811,2953,1358,1543,1183,1267,2755,481,1074,1342,852,1189,1679,2832,2811,2476,2129,875,2283,2072,2487,1294,1500,2713,218,534,999,2398,2827,612,55,1464,949,498,1276,308,1376,2548,1038,2305,2640,1860,2236,1924,2836,768,1023,836,2506,2533,366,2173,2564,2698,1463,776,2219,93,1882,2002,2928,2359,1210,158,2871,1296,2677,2769,1945,2669,728,1797,658,649,2314,1561,170,1149,878,1118,1491,2416,2,1350,2905,2997,1515,264,1638,2019,839,2365,1776,250,2063,1612,950,998,880,700,1757,2638,185,1446,427,1752,2176,744,1319,472,586,2756,1242,1454,779,45,583,1530,2963,769,940,1309,386,1222,2361,621,414,1231,540,898,840,2681,1288,79,2374,771,1879,1688,527,2414,1314,802,2993,2527,2387,1162,456,496,1414,1003,1870,951,1248,1480,819,328,1585,2763,703,353,850,1399,558,1932,1349,306,209,2039,2740,2973,81,89,1239,1289,2253,2271,720,757,1133,2782,1430,678,1503,2018,272,1568,2335,1275,784,1279,2301,1542,1212,2922,2556,1445,2138,912,2106,2048,599,57,2821,1451,2621,1081,100,289,1896,1070,976,1600,128,1077,2064,756,2845,2791,107,1341,2830,1523,297,1412,1355,490,2472,574,2802,129,1789,1167,2222,645,2229,1174,179,944,2743,208,631,837,1329,2211,1918,1411,935,141,211,2455,2304,449,125,1819,2699,1633,310,2624,808,2354,992,220,2590,2392,2046,1142,241,2685,2757,2894,2130,17,1922,2920,277,2665,403,580,641,2499,2971,563,777,2578,1899,2575,2228,1606,905,1762,1313,964,2706,2277,2741,1079,452,1575,2508,1041,331,1479,1343,2149,1326,1990,817,849,305,1817,2753,1228,354,476,2137,2496,507,706,49,2818,266,1859,2619,2593,718,377,1182,1768,2714,157,614,2724,1396,2588,2600,1737,508,1496,1588,103,156,2511,1428,2518,238,2208,2972,388,665,1374,2776,2043,1803,564,1858,495,2372,176,47,521,2975,2979,1992,1034,1106,557,1846,1785,1333,925,320,1054,2126,1455,1584,1217,1743,1850,2785,2581,2111,576,956,63,2523,244,1861,2948,1976,1382,400,529,1744,422,659,2009,2626,1915,2878,2426,1648,906,2731,475,1903,2750,1651,1696,190,144,73,2912,1546,835,1511,2517,1627,1507,2164,278,1203,1047,1432,2432,2538,788,681,102,1135,522,677,2707,1594,1671,2868,1974,1310,1680,2899,1709,1489,2662,1535,282,2284,806,1078,2093,2326,2504,2033,2940,1727,2545,1403,2609,2582,2083,2360,1655,1684,2457,1519,1603,2363,1767,2233,863,815,578,30,2730,464,2766,2919,1716,323,1110,2234,668,1897,851,595,717,1020,2726,1707,1934,1072,2560,35,962,1577,175,1678,382,796,142,593,2853,2006,1409,2745,349,1798,551,2096,2737,446,1443,556,1224,1895,1196,2549,858,16,2278,2291,729,2823,242,1983,216,2334,1513,2232,1364,2540,1656,2320,1982,188,1729,2192,805,2931,2961,656,1557,2131,1516,687,865,642,2521,247,1996,2161,1602,2370,1093,2531,1253,661,317,2114,1963,1630,1419,2703,489,383,689,2388,2800,2215,2795,1587,346,2585,2227,741,793,833,1563,1936,434,2075,2299,2653,234,486,2831,2340,794,2460,2829,392,1769,691,2007,2015,339,2062,2670,2822,228,2238,41,989,786,1799,2856,2551,2188,2445,2565,2606,598,1015,1599,1562,2645,1691,1753,1927,1950,2454,765,8,1336,2752,518,2985,1801,2999,2488,572,1595,752,1522,1389,1732,1544,2193,2036,2380,1465,1256,1057,879,64,384,1008,2648,202,721,1783,1758,1979,582,1920,627,1558,1103,2001,2240,2860,1273,1555,545,2452,1241,2778,1397,1272,1961,981,1250,2120,1051,1607,2525,29,224,153,2555,2934,1626,84,2788,657,667,68,938,1925,1653,716,451,2332,338,2089,352,2290,1760,1062,253,864,2031,968,2716,2371,2092,2142,1154,193,1164,2771,169,2154,766,1150,620,550,547,1580,91,1219,1937,1590,1088,2715,1741,505,1073,1784,980,2577,983,1139,1116,824,2376,2846,27,1298,286,928,2824,1033,2248,2913,1016,71,2044,2000,1573,1829,1658,2037,1724,1277,859,751,1045,988,1012,1401,2244,705,1247,399,977,1140,2721,1449,255,1368,2489,436,104,2026,919,123,2168,1886,2813,380,2124,1018,1959,1331,2739,1642,2494,1117,1252,358,628,1130,1422,2602,1416,2770,890,1625,2470}
{532,1931,2260,991,1411,1948,532,2274,1948,287,1824,2984,2349,651,2036,519,1159,2020,532,1225,2260,883,950,1942,1957,1824,2473,1814,1349,2547,1379,1931,706,735,1236,2984,2148,2475,2753,1379,601,2667,275,1931,1948,1173,1959,1942,519,123,1948,735,832,2667,735,1277,1688,1068,2237,1813,1898,1561,1760,2256,2962,2260,1814,639,482,532,42,898,1636,1824,2002,1715,565,2260,532,1895,864,2022,1931,1662,1949,814,703,2968,1557,2504,1037,1944,1530,453,2737,2640,1898,865,2348,419,1031,481,435,356,1109,955,1824,1722,425,81,1662,1425,1270,222,991,1225,864,341,1710,1594,774,291,2338,1981,2535,2640,1670,561,2640,519,2367,508,745,21,2898,1510,2,2665,1457,795,2251,1161,879,2984,2859,291,2394,985,937,497,985,1931,35,2190,2194,1948,1424,2388,2673,888,2669,2661,2700,1411,2124,957,2740,1678,1901,2224,1500,1367,2662,2640,1701,1944,2640,2285,1669,63,2701,1895,2984,1433,487,2236,877,1386,1500,122,829,2365,888,2518,1400,1739,1145,2822,2474,2274}
Returns: 40804.76073538205
1000
{2664,2324,1853,2536,2865,1747,512,745,2579,2628,556,36,473,2895,1269,2808,2228,1230,287,457,2869,773,2157,2566,1265,2822,1624,1902,613,2940,1435,2501,7,2389,817,2347,1429,309,798,1606,2786,1923,687,1091,1803,1094,347,67,2569,682,783,1411,575,997,1386,1383,230,2039,2151,28,2848,2253,79,1771,1965,2761,508,969,1897,2122,1158,2806,2160,193,2726,2725,2626,1313,1667,1222,1174,1815,2068,2897,2431,626,2576,2072,1575,2437,573,2234,1180,781,2364,933,2749,385,1438,204,1577,371,1437,1015,1361,1598,2090,2973,351,171,259,174,1614,1263,2765,1488,2558,240,105,1746,1010,1470,696,192,26,982,816,2946,47,591,2105,509,57,1433,2533,1805,424,1125,1367,2544,1348,1508,1276,855,1139,1395,1256,919,1410,2482,1882,1677,31,2790,1676,1661,445,306,154,2535,2444,2055,2411,2841,1839,380,1214,835,1725,2188,2799,864,647,2859,229,2591,1744,322,2889,1041,1528,2201,232,1749,1466,2745,1100,2407,2208,637,2108,2170,850,1083,812,943,2876,2985,1250,2758,2927,1620,2729,2757,1566,1144,2590,1099,2466,2917,999,922,1748,551,2930,1476,1416,1399,2119,1765,584,2953,558,2180,1414,2661,1073,2478,614,854,1317,1355,414,87,2406,61,1849,2744,1415,395,2331,1056,2992,1593,384,1675,885,2654,821,2446,491,1549,2802,48,1817,194,123,343,1043,446,1200,433,1644,2225,1229,2142,1103,1900,697,1407,1880,1986,1564,2575,2014,1121,2572,2259,2316,1691,1053,717,784,2618,2456,258,1385,1821,1032,167,1690,2252,2354,521,170,2764,1418,2660,2690,1012,441,2131,19,611,175,1171,1023,2743,2521,1665,1716,640,905,397,40,2486,2735,2257,1068,2035,271,676,2176,1643,1006,52,2110,299,1861,693,574,802,2232,2771,1666,2140,1664,810,960,127,531,257,432,2311,487,2643,237,2111,670,1014,1445,2289,2948,938,1441,182,460,681,2592,523,2363,2101,1518,2296,2710,877,2185,612,553,251,1239,547,2949,1060,185,949,498,365,1954,145,2658,2939,1338,489,2339,1209,1982,1679,2775,2815,1031,1525,201,1674,1188,1467,2043,2491,1605,1143,2477,1878,2001,1842,2970,685,2420,2168,2908,1854,1490,2545,1446,238,1054,2885,2114,119,1908,2843,583,234,303,1860,337,1996,1215,1305,1895,1299,2956,2206,2507,1374,1814,1064,2381,1402,198,2933,461,2352,2196,1159,1726,1712,873,2809,338,746,1928,2033,1989,76,881,2379,2904,243,440,405,2724,751,2905,255,144,497,1558,1975,811,82,1501,755,2839,268,1820,510,599,2209,1505,2803,1207,1662,2873,2467,2428,317,468,1430,2767,499,383,2189,355,1952,2817,2681,431,2828,888,1576,2847,1369,484,2236,882,1654,1659,2258,1983,348,1475,42,2712,1739,1178,1279,9,1086,1024,2475,1431,1474,762,2931,1927,1120,184,1194,1542,2779,1300,1613,1543,1896,2487,1580,2937,1176,166,1452,1011,604,2400,2371,2458,789,2288,1554,529,2944,469,602,1552,2460,443,479,1610,1123,1140,1296,2309,2625,357,1463,1062,1122,2181,876,1635,711,2899,54,815,680,1444,1126,2896,421,1252,2056,1217,1804,2492,1785,538,2266,2702,698,1903,2705,1548,353,1244,741,994,2980,2962,2564,1949,1330,1019,2585,1601,1242,2271,846,2013,2147,2559,132,1287,2776,1233,1786,1065,1471,325,2194,1731,3,2438,887,439,86,2981,2340,2150,1625,1050,753,963,1424,1859,2461,227,995,1840,2276,525,326,2200,2987,2233,1724,1722,354,2833,2315,2245,1838,2442,664,474,2972,1315,1255,2844,345,2958,2567,341,767,1453,2031,2002,1381,1076,932,1893,2748,364,126,1458,2069,1868,2004,2384,1098,895,1773,1956,2298,2305,2936,2915,1077,1465,1484,141,646,1351,2468,38,1822,2256,407,2819,427,1237,2320,1228,958,1710,788,1191,1449,2856,2894,898,1978,305,1462,2191,2202,907,826,285,1323,420,2541,2923,794,2081,782,4,2858,1718,1901,819,2881,1742,1262,1634,2891,1134,683,2906,973,2616,1007,2025,2024,1780,2286,301,2882,2880,2109,279,1088,1257,2169,1881,695,2722,58,843,1406,1544,403,1591,2152,1210,2532,1074,902,1329,2385,363,318,2118,65,754,1993,1998,1112,1915,2351,653,2964,714,1033,2522,2578,1966,699,373,2996,113,411,120,2646,2123,2011,716,620,329,2133,2862,1274,1943,115,2961,769,2703,239,2759,1863,1203,1599,1755,827,1534,667,2912,272,1198,1104,2760,2512,503,532,106,506,135,2534,2314,2159,684,1844,766,2128,2281,514,2285,117,1111,2978,568,464,1486,942,2582,2449,1166,492,760,1941,2052,752,2303,1334,2655,1778,249,1192,2349,2909,1439,1308,1061,601,1162,478,896,2614,892,1646,517,1563,2580,286,814,2358,321,1450,196,2662,1671,661,2537,2300,1583,1264,2657,897,2235,1711,2624,2480,1568,2680,2329,2319,747,2642,2696,1195,359,2526,1819,2900,2727,1496,671,2510,386,2989,1273,718,1135,1285,733,528,1699,1846,1953,1888,823,2506,2827,2115,1067,1570,792,1779,1270,2872,914,1743,1026,875,673,1892,2488,200,2156,153,1292,2763,2543,2306,1886,548,596,470,220,2781,2283,187,2615,940,2215,561,2639,2699,260,94,985,1855,2647,1249,1955,2629,2796,158,269,1694,1075,316,968,1809,1794,629,327,516,1377,2222,719,1705,1655,526,1727,2832,2432,651,793,1912,1571,912,1511,1142,2166,393,2417,2554,1057,32,124,248}
{2345,2003,1147,2165,517,1612,2165,2234,1067,2165,517,520,2165,532,329,1160,517,1147,1078,2834,1147,435,1239,1185,2139,2368,1051,2814,992,908,2888,992,578,2673,2555,2149,435,2258,532,2665,2580,1213,45,158,1462,1245,2003,1147,2888,2912,1147,786,1239,492,404,2234,2372,1045,2002,1147,2165,2834,2071,530,1354,544,1066,2834,2536,2665,517,1159,1938,1239,850,1149,2912,1257,507,2618,1279,2635,1002,1213,2139,2834,1612,639,2283,2411,2046,718,2149,2165,2557,235,25,1074,259,1757,2005,2592,1589,2834,544,2968,2002,1895,1795,912,1895,1160,1678,28,18,525,1147,2360,1502,2004,749,517,2478,1938,108,399,2165,912,1577,1734,1678,1185,527,818,1895,1335,2557,355,2588,1645,1430,300,1553,1895,1066,2586,1763,1668,750,2010,197,2003,2494,2637,27,2564,2165,818,2236,2402,108,1147,582,2522,172,1806,2810,73,2261,2283,48,1829,1115,1051,374,2234,1182,630,1645,48,2673,1058,2841,1149,363,1182,990,1497,1044,1078,2003,331,2635,596,1616,990,2834,532,507,2457}
Returns: 40820.30908886231
1000
{2712,2649,1573,391,2739,2275,472,404,431,986,2229,1201,850,210,2503,707,1562,1702,2224,31,348,2095,2826,2213,510,1722,735,167,1107,2571,2816,135,2653,2121,2534,980,2878,2963,1745,2012,1463,1208,660,2855,749,1908,1914,929,1332,2705,2134,1154,583,2301,37,478,2334,1734,2992,1843,1055,136,323,2596,766,1690,2665,2625,1581,2110,1719,654,1175,720,182,1340,2676,498,2204,1181,18,2516,1856,1283,2734,1676,434,1677,89,2435,2383,1364,1085,1601,2149,1559,338,1972,2560,1412,798,1827,2346,1426,168,2821,626,2899,186,1390,1792,2083,206,963,2988,964,936,1693,1409,7,2036,592,2174,2211,441,2982,2028,118,389,2955,792,176,1450,2118,2533,1244,1981,1927,1735,782,1879,1015,2310,1095,676,1160,1643,709,2133,1494,1278,2303,1865,2636,2352,1788,1217,1806,2617,2215,2956,1082,1317,2767,2217,2914,61,605,2261,1350,1268,2721,1931,1346,2059,825,448,2917,2928,1747,1326,1184,1081,110,1653,974,1888,972,2580,2355,288,447,1408,1213,2601,992,1202,2096,1233,2578,1309,916,802,1832,2584,1705,2682,77,2225,2791,906,2675,155,897,873,1672,2991,1770,2337,446,631,2188,1855,350,2393,853,1351,580,695,2912,888,1169,2238,2386,2344,2967,899,32,6,1352,1465,2937,1848,2614,252,1759,2525,422,2048,1206,22,2138,1125,1637,771,1826,981,68,2255,1604,2469,190,2527,393,2807,1495,2763,458,1480,1002,2203,1661,1019,1916,1870,2498,215,750,2804,2820,1727,2918,533,1093,587,72,211,2663,304,2727,1992,425,1925,550,409,1126,2236,1295,1930,2572,858,2089,737,619,318,643,1811,140,2063,2741,1883,2868,1336,1542,837,2455,595,15,2296,1868,786,2637,1302,1851,1924,1617,561,1980,1074,337,2981,1746,1032,1330,1786,154,1819,2193,1787,1959,2692,2896,1988,995,961,1130,1894,208,1640,2168,2328,2595,729,2233,1087,461,2545,2514,812,2577,1348,1313,1196,1164,2659,315,466,1641,2935,958,738,2881,1197,2563,490,2342,82,2710,1353,1649,971,1605,65,2632,194,1459,1609,293,2341,586,1567,618,1721,2305,2124,413,800,256,2922,1983,2909,2905,2198,1069,426,2787,2782,2378,180,1090,1266,10,2838,1339,638,686,144,2738,2084,2641,1211,1345,1398,1478,2199,1990,2376,2689,17,2189,2300,123,1027,283,2916,2660,2958,1535,778,153,2879,1900,1895,2208,2605,952,148,1800,2440,2778,1596,2364,2232,254,518,2764,340,64,644,1685,2025,1838,2116,1668,90,1024,230,615,12,559,276,2071,397,2054,2579,2422,1775,382,1365,909,195,1994,1219,2125,634,297,715,1438,830,2670,2837,491,931,2678,838,1508,2884,1000,769,1360,1163,690,702,277,1665,914,2996,2487,2729,2551,1633,1433,2661,273,1067,1073,1751,965,2990,2159,2103,1656,951,1586,1791,2200,1667,1929,710,1137,274,1030,2989,1739,1537,1493,2588,609,896,1422,1077,2209,2027,1784,1290,442,2347,1088,484,1418,1540,847,149,2239,1695,1470,2743,1471,1541,2779,2262,2852,677,907,299,2986,316,1327,2776,781,1050,1566,791,1156,1372,2693,2643,2858,994,1423,924,863,674,2979,2808,281,2162,746,1153,1725,2283,2178,229,465,100,8,2426,2457,1937,2585,851,1178,2060,2806,1497,1060,2609,43,145,2644,2717,1863,2286,653,796,866,241,1876,476,237,1963,1354,1658,1569,1226,2720,439,876,36,2773,150,1341,1185,1960,2433,591,1580,2098,2259,2295,2801,2205,1507,1669,2430,2943,1889,1857,2109,2640,1262,385,1301,2106,1182,881,1117,2822,2994,1018,901,2569,1072,1145,2544,2382,408,1212,982,1094,2017,212,1589,500,612,429,1228,291,2592,905,983,2350,2237,251,537,2294,1536,2877,1008,1466,1952,1373,2119,2586,1814,641,1660,1366,2846,41,937,1014,925,1235,2536,204,1229,284,680,3,1527,1871,934,1367,445,2349,2265,2354,553,789,1810,1195,1951,341,584,405,1420,1859,264,1323,2306,2166,452,1144,164,2558,1836,874,2311,1602,2288,1783,607,1406,401,2258,1548,1624,955,2357,248,656,1022,1369,1875,2401,2541,2730,777,2854,2761,1267,1084,2003,1936,1152,1116,1381,2269,504,1801,2760,495,1288,2474,332,2677,2810,2436,1042,142,415,387,1322,2014,2713,1606,1697,1473,2939,420,201,1630,813,545,2308,1146,1655,598,1680,362,514,371,2131,637,2079,342,1187,599,688,1874,549,2072,1688,2567,159,2850,2576,2828,2322,414,1461,2949,2466,331,2699,2379,2941,2423,1173,2066,546,2055,1635,2894,575,1128,1591,999,2803,2450,1261,266,1858,2735,1701,1039,630,2608,1279,1204,741,35,48,651,217,1384,265,262,1029,864,783,161,367,2518,577,774,410,1619,2445,2634,684,1086,574,2756,380,1277,628,2931,751,1805,117,406,427,953,181,1456,941,2796,2191,63,2980,2220,2270,399,2112,597,2987,872,2813,2574,582,1584,1455,2244,2827,1080,1674,2206,560,1538,1821,1998,1628,2530,468,88,175,1812,928,166,1615,1106,2679,1999,156,2467,60,1389,2348,542,2814,244,220,1884,2669,1878,2714,2795,506,760,2985,1837,345,1419,990,394,623,1451,1221,1286,794,361,2615,1053,2281,1131,52,2811,2765,1281,1481,2965,454,2100,1744,120,2194,2690,1968,2210,2312,593,1850,672,967,1334,58,2105,187,893,2192,2915,1833,383,2234,312,1772,1882,122,1531,2186,1886,2844,1189,890,2035,116,733,2425}
{2940,596,903,1854,404,943,1854,1452,2639,2394,1607,805,2367,957,2254,2251,2545,2022,2326,2545,2761,2418,1287,718,1287,85,2803,223,1551,1106,2367,2297,160,1287,596,1998,1825,208,161,1941,2981,2577,2442,2545,2021,2969,787,2021,2683,1375,1543,1854,1551,346,988,2554,351,2683,2268,1887,2520,150,1926,2219,713,859,2241,1507,2296,551,141,991,2313,149,2803,2336,2288,1926,2691,1662,2776,1280,747,2803,601,197,1926,2418,713,625,1663,70,2296,1435,1727,2411,2250,173,2652,1571,1950,337,1571,2545,561,661,1624,1926,1445,2545,1133,1121,1255,2324,1866,2268,2526,2044,1607,346,2940,2384,377,2911,1019,911,143,2048,1498,1111,2297,2518,285,1540,1454,1492,2442,1693,2749,1331,2213,1411,1711,761,2493,1240,2021,2068,747,2583,620,596,346,1906,2429,1716,75,930,2583,2068,2379,2127,2272,1525,561,1411,2302,2635,1329,1255,365,1807,372,1133,1866,1711,2485,508,156,1926,2181,1211,258,551,755,1133,1329,2882,2021,1910,1711,1739,2911,142,365,2015,1662,903,2890,930}
Returns: 40755.51677363249
1000
{1155,2913,836,913,346,2305,2653,1699,1322,2024,2165,2643,2989,2068,1464,1941,2965,457,239,2991,159,1229,2102,2302,23,2076,708,1323,576,2367,2274,2004,2945,1269,2992,2480,435,1887,258,1718,955,649,114,721,88,2344,1429,2133,1459,259,1714,2793,2282,1688,2623,811,2032,1864,2998,776,2759,2132,1747,932,2161,1204,1012,1703,1735,2682,548,1775,2660,1850,1886,2258,102,2475,450,330,2765,489,2891,1796,992,11,1340,27,1122,393,2444,876,2738,1882,119,206,1692,17,1617,2220,1998,777,1921,1529,1018,745,1292,2447,503,795,1799,747,1893,2052,2065,2376,1793,619,1911,2884,1486,446,112,722,752,583,22,1803,605,2513,1217,2786,2119,351,2093,1541,729,1482,2064,1083,1281,1147,1983,1021,107,2455,1304,1164,873,2186,1927,2295,15,1717,141,1758,2199,2825,1868,1818,2332,1830,1192,566,2886,2796,1447,1141,2554,2606,2421,2947,145,2204,522,2238,1333,2156,302,1341,1065,2689,1779,505,822,2515,1855,703,2365,372,2257,1100,1877,828,2051,1226,1296,589,2573,2787,2223,1367,573,1760,1509,2807,1892,2607,2532,1303,122,384,1078,270,1870,2918,1357,1298,2318,817,1516,2147,1834,982,2550,2059,666,1091,846,255,723,1244,2326,97,2744,2038,2072,2609,1853,840,1258,1127,1084,1782,2196,104,714,211,272,1708,1579,68,2714,2210,2385,2189,2718,1103,2188,1019,2698,758,2888,179,2543,2762,2170,541,1919,279,2635,295,1515,2370,2248,972,606,1462,2434,2572,2260,2492,1120,2172,252,2254,2671,2006,2963,636,654,2622,1496,281,969,1558,1785,2832,2386,2517,2628,1970,1182,2249,2663,2845,1058,2619,363,1489,1276,465,2910,578,1274,656,2951,1434,1872,364,1880,1772,6,1479,64,1863,1672,146,2157,667,2889,1979,469,2010,2461,2700,1189,2735,1385,1138,2420,1430,2919,2897,1642,2176,685,2402,1689,899,1272,1648,508,652,1337,2668,1370,591,2379,1805,1598,2215,494,2211,284,2558,531,2959,1208,766,1503,1108,2893,1002,1400,1062,1721,974,1652,1854,2971,201,1044,2684,2771,461,1894,2083,2310,1555,269,1135,2639,1846,2601,2874,1773,2208,2312,1725,1245,2468,2702,2596,2757,1396,1460,2863,827,1820,126,1840,340,1815,1073,26,2829,261,2697,2025,2250,2665,2740,565,2967,1669,689,39,45,2803,437,2957,2599,569,2571,2715,2453,2193,1958,1823,648,1960,1611,36,425,2074,1354,1745,2276,2151,2409,2975,1441,504,699,2348,2066,1154,131,162,391,2036,218,1888,1913,1806,1261,1536,2797,1047,57,2929,2289,2722,1800,479,2245,2511,1900,1537,2713,1440,2534,1765,681,2839,2121,2233,2674,712,120,2610,2134,1079,2442,860,1781,2080,2650,2579,1832,2952,1014,2549,753,1740,34,2809,194,1439,744,2380,791,1662,987,1729,132,1171,1584,1422,2293,1978,1559,999,2692,484,1369,2530,1339,116,949,1041,1904,2026,2978,1410,1426,620,1816,2997,2272,886,2162,1807,1096,2491,980,930,1391,1827,1571,2467,2749,1404,40,1030,687,2535,1683,105,942,2613,820,792,360,470,164,2857,2853,62,2307,2265,528,493,1224,719,1319,2664,1524,476,2181,2624,2800,382,835,2345,1445,524,2375,613,1563,1346,2883,274,2284,1603,50,2719,275,925,813,2021,829,517,885,764,1195,1414,1031,1814,962,2741,2015,948,2209,2506,892,1902,2495,32,845,2200,959,2369,301,2820,1210,2488,2253,1749,2246,1366,935,1712,1201,1647,2655,760,1467,2950,2533,808,1838,1225,2459,1817,1179,389,1289,525,1636,1151,1739,1505,2287,814,751,781,1607,2707,539,478,1327,582,940,1043,1976,2654,1262,1844,793,2604,1538,824,1920,490,2262,2736,1397,597,349,1619,2496,711,923,1074,904,20,290,688,2242,24,230,328,973,2150,19,455,2432,209,242,2555,2063,250,2112,2634,1283,553,331,380,1448,91,2328,1248,1146,2003,2099,215,2401,1581,2417,2067,359,2701,2728,2443,1178,2881,208,2627,804,907,1376,2723,890,2288,2016,1924,1013,2279,1586,512,47,92,48,2482,883,1419,2235,2661,850,2842,394,631,1599,1417,1076,1487,1150,413,286,1413,646,1268,558,2557,2815,2766,532,707,431,2834,946,2117,1751,1170,783,1986,2774,2976,733,1540,299,2396,186,78,417,2426,1202,1008,802,1627,1709,2924,2518,2527,1684,1520,1029,1297,1562,1305,2084,1973,2100,1746,2895,2244,1618,2805,2529,190,379,2868,2631,1964,2077,1693,1380,720,433,2962,564,1811,1089,1250,642,350,1560,1384,675,432,202,1790,1839,2387,1939,2521,536,552,1675,1959,139,2582,662,854,371,1106,2999,1198,2810,1592,2840,175,2819,2125,1801,2528,322,1756,2395,1653,308,2256,1810,2350,1946,1260,2608,2485,728,638,180,2371,1446,2943,224,2213,1972,727,2448,76,1518,1121,464,1363,184,670,2657,2677,1428,2352,306,1373,1673,2286,2166,2033,2466,1985,1453,2553,353,1907,2996,2275,152,2990,1022,2828,111,1028,118,2764,2228,1351,1539,2384,1452,1481,1734,1697,1345,1004,219,1036,2139,2501,2830,1661,934,1908,1875,1153,580,1594,603,2621,96,1156,2576,2049,2406,843,2987,1294,857,2970,2389,1497,93,1744,2410,2175,1990,772,2898,1035,195,1591,2494,2887,2512,863,2768,1175,998,1176,1876,2041,1230,326,1267,1066,1650,1891,1776,1842,2089,877,2933,1680,759,2306,2237,978,2633,611,2481,622,866,1931,1583,2769,916,1306,1759,75,789,2753}
{588,2103,2508,2675,1894,2634,2429,1323,2508,1511,1320,2634,2675,1440,1434,1381,1073,103,2368,1405,2716,1769,1605,2023,1046,2462,1870,1293,1440,2634,995,2863,742,1762,464,607,2580,2204,1870,1664,2204,2552,2097,2091,1141,1671,2891,65,167,1440,2023,1511,1986,1870,1552,1492,239,1381,2640,63,1511,1735,63,1738,666,2552,1072,1735,103,1933,2933,2037,1933,1440,403,1663,1605,2337,1663,1320,2037,1046,1276,2127,1331,2176,1727,2675,2572,884,1046,1894,175,2354,2357,2416,356,1140,1907,249,807,1870,549,1015,1434,2040,807,727,138,582,1714,2570,455,25,1762,2560,738,1200,541,2389,1530,1033,742,289,2863,1303,2588,1961,1653,2340,512,610,1054,693,2634,402,2087,1807,2581,1806,2004,2097,1080,1434,486,2518,1964,898,1140,2634,1381,857,554,2675,1613,946,2733,1440,1839,2685,1854,401,150,251,1953,196,22,1861,2964,859,333,1218,275,2508,366,2933,1005,1552,541,1909,402,2291,2813,1821,2958,2902,1762,1605,57,1169,2521,781,2733,1963,535,931,512,176,1228,2137}
Returns: 40792.58525678431
998
{242,703,2804,1079,548,2537,606,2852,1853,391,203,2956,1575,1191,1991,2502,1336,987,1430,1739,1047,2353,425,2810,656,1090,487,2967,2846,1589,2811,2918,1577,1371,1961,2942,576,1243,1389,1543,1873,101,2022,409,2412,2461,2329,2830,313,1469,178,683,88,350,2909,1282,574,2480,1679,124,1219,1169,1289,932,994,540,1728,637,2860,1769,1912,1814,1883,2144,713,189,2058,105,431,1129,736,1043,491,2679,715,167,411,1157,2964,2686,810,2407,2621,48,1964,1916,1232,343,1322,674,1399,2004,2587,2051,1272,368,1797,190,2895,2972,1544,2825,639,2551,1915,2422,1615,78,1035,1755,1599,1923,433,165,198,1211,529,997,634,1556,1339,2252,2884,56,2650,2636,444,2017,2612,2262,1970,2989,1566,2091,443,998,577,1467,1067,212,1783,1288,349,1763,2528,2883,1119,2317,2515,1327,300,584,2039,1299,2490,1699,2028,682,367,1416,2786,2688,302,2959,479,611,1622,2478,2016,1321,1012,1650,344,1782,685,774,516,2710,65,1806,1945,115,2913,137,2277,1111,284,386,2398,1583,1114,201,2314,1987,2560,2100,216,2698,2543,1325,348,440,1553,1261,1485,644,2455,2179,2164,982,519,686,980,1830,2508,152,372,647,2878,1712,1921,2578,282,878,422,2316,2250,209,1093,691,1725,828,2232,876,1670,2336,608,739,2874,2429,1025,1496,726,2854,1954,497,570,1236,1081,246,2693,2673,1201,1899,941,2384,1265,2877,1675,438,2443,1735,1662,849,2278,1721,1071,321,221,2438,2605,1528,956,498,2902,931,1701,694,2716,1621,59,2789,977,187,1942,2882,249,2518,671,2512,1010,857,963,701,605,1495,775,2069,534,2458,1223,2525,2198,989,2156,1440,393,1603,1641,1673,1020,1859,2342,2222,2216,2514,2064,82,2629,77,1260,1989,2866,2953,2542,339,711,870,911,1510,781,381,2141,2790,2231,1884,1434,1532,2459,761,1484,1680,2839,2267,10,1358,1459,550,2607,2052,2220,2025,2488,1524,780,2626,2570,1698,2133,1097,1082,874,398,243,2915,624,317,1291,2740,1170,2145,1296,2282,1631,2620,2667,2704,396,1503,58,652,2808,2870,2534,1784,1656,1785,2044,2391,1694,1423,1245,144,2047,1364,2151,1309,325,1294,1086,1560,2379,1257,2493,61,2449,492,2575,808,37,1448,1803,2290,255,2968,1605,1009,2098,2833,2373,561,2445,250,2083,802,2977,2437,1140,1676,525,833,2296,1582,1872,754,1500,70,1197,169,2375,1051,575,601,1357,545,1283,1333,2978,1781,2549,1326,909,130,771,2723,1568,263,182,1881,2150,279,2253,2238,1766,1105,1089,1268,2433,1001,1203,569,2666,290,345,1652,2926,568,2590,717,1584,363,2173,337,2732,2887,803,1815,2872,1449,90,2410,1241,1186,231,371,2785,1625,2281,2430,1183,1195,1287,1155,1765,2923,1927,690,74,2820,468,670,1452,617,1215,978,2829,2504,2318,1247,2787,988,2324,432,217,2644,2781,1734,2472,253,1394,752,457,2845,768,2415,1099,238,1118,1616,824,501,1671,2170,2843,2081,1204,2735,698,1840,2230,211,118,2904,661,399,2048,1738,2397,1705,962,2174,1606,494,616,21,197,552,394,351,968,2078,995,2871,877,1992,2380,213,2354,161,1314,2335,2013,2803,1768,1328,706,2522,2857,1141,2759,902,91,580,2510,495,2203,376,1462,2319,1707,2960,2358,1230,2524,108,2879,482,2015,1736,2778,2385,2463,235,1277,2489,1411,1374,1667,364,2284,1868,2757,2010,1007,1729,1279,194,938,2435,746,2339,60,2818,882,2332,473,860,179,1639,1218,2652,418,791,1902,1900,1486,1017,2547,2370,2523,672,510,177,1181,2540,2550,2035,2916,1177,2121,359,2822,730,2288,67,589,1061,2905,17,2289,1345,1909,2212,1971,1022,332,2703,2055,1076,287,1507,2185,2962,404,1224,240,750,1607,831,2330,1602,2056,331,655,596,1002,2274,2766,207,23,172,99,1805,2672,735,1993,406,1460,461,757,2566,1666,16,434,1776,2573,219,1171,1539,1648,2737,2594,2873,2661,731,2509,579,1167,270,477,1262,2396,131,2885,1908,933,2003,2038,2369,1210,1807,521,1976,388,1612,1226,1275,1800,2834,2835,1958,1343,2898,1308,1353,1710,1045,475,1744,542,1771,2473,102,2148,2371,52,2876,1095,1131,622,1848,2404,2935,959,2724,114,133,1458,358,1611,1143,1,191,2793,1655,801,2602,2555,1635,1597,2221,2576,798,1926,2814,370,1330,2165,1651,2699,355,662,2836,1563,100,1968,530,2241,2945,1403,2847,20,1202,1390,782,1925,2974,2669,1896,1793,271,2176,1892,2565,891,2126,518,153,986,1470,2584,2012,2955,636,1231,823,357,1264,1415,2934,1678,1540,1619,1412,1851,738,1313,673,2355,2618,334,225,97,1278,2921,62,1558,2209,53,2448,725,380,2947,1580,458,2225,2326,2591,1519,1334,208,87,942,524,1893,786,512,2971,2275,2586,2032,1253,2855,2705,2917,790,462,935,446,1877,1685,1295,745,1130,72,2146,236,2249,2113,913,581,326,1225,1516,2134,953,869,921,1372,929,442,2227,1379,1359,660,546,2707,1222,1790,2041,1690,1963,2592,1917,1551,397,2193,140,484,1617,1117,587,2019,265,2416,1217,2062,2182,1483,499,2791,2702,1949,1740,718,1058,1753,1924,377,303,1894,1573,83,2805,1826,1565,2651,2957,702,1342,511,1832,2313,2907,2408,32,1420,1113,502,1069,2060,94,922,1153,1722,2744,2240,296,1677,855,230,2070,1966,1585,1533,1792,1490,176}
{2914,1703}
Returns: 40665.34113330508
996
{2190,2748,1972,2906,2037,574,1453,627,2223,956,1823,740,2024,498,1668,849,1959,2510,396,2559,1148,2708,2949,2162,2057,1915,859,896,2524,2722,2474,2443,1135,1510,425,301,434,2935,2417,1387,1395,772,302,2765,347,84,2509,926,1922,2435,2349,2965,2590,2811,2065,1199,240,110,2561,821,2467,2623,2080,2930,609,2062,1499,2003,2322,2832,2215,264,1365,1921,1557,528,1570,2088,1648,1426,58,2414,2670,1000,1168,2788,1586,2543,66,1887,1680,2772,1735,2477,1995,2626,27,1093,1544,2034,28,1869,657,2907,2164,350,212,1271,242,1128,294,1022,2450,782,1185,2481,2295,2607,1756,669,2793,2952,787,1415,375,687,796,1920,2778,1849,2984,38,1706,2785,454,227,916,60,338,952,526,173,1541,703,1002,615,2637,2737,1726,370,2249,1914,1009,2086,1608,1383,263,1356,1284,2073,2701,2627,2406,1840,2753,1694,591,2594,2173,2679,2909,2551,407,1278,2161,1434,1997,891,1164,1237,2566,1258,1712,409,1967,12,1715,2898,1523,846,2842,2554,1423,663,1957,655,2421,2124,2388,2013,2302,914,1046,1989,974,940,1054,1287,2485,1354,2614,573,1464,1547,1601,1812,19,2157,1637,1025,2865,137,132,773,1446,1248,1139,2877,1262,2787,416,886,2664,511,1070,524,2713,2739,522,149,870,2246,2572,2792,460,990,1078,2187,1951,2326,2721,2313,1320,1133,2412,906,473,1956,2289,1252,950,1486,2870,2693,840,327,2807,273,2742,1399,690,643,2475,2569,1529,2285,1470,468,2308,1191,1450,387,2751,2860,1017,2433,2126,2291,542,2895,1897,2638,920,153,1098,1542,443,801,2660,2858,1618,2512,39,1846,2914,1766,386,1763,2415,1372,365,1171,968,826,596,599,1417,2158,1940,2601,1543,2619,168,732,2962,358,2702,2939,418,1325,502,292,209,1445,1230,545,852,1050,1477,602,2226,1848,531,2253,1829,463,2953,2118,2200,1033,888,2967,2668,268,40,521,2120,1222,1493,2834,2517,2563,783,2653,1981,2624,811,1561,2843,1144,415,90,147,2469,597,1217,138,2937,2288,235,1472,2229,654,1856,767,2061,1553,834,2315,385,405,2420,2399,910,1963,1811,2511,2195,699,1249,2490,2045,1614,2335,610,540,1526,1116,1629,1366,2582,2703,2857,1838,2869,1200,2648,1837,747,2075,1346,872,357,679,546,518,807,1501,785,985,2700,2257,1308,2206,2500,1065,1973,91,2773,1306,2468,1727,1293,1661,103,154,2944,1198,2891,2207,848,1944,428,2413,1336,1485,2498,26,2010,911,1836,2373,348,1202,1754,962,175,553,2076,459,1942,424,72,744,2017,125,2584,934,2078,339,2975,2987,2354,355,2183,260,2884,2006,982,93,1718,1001,197,461,2397,1132,1928,452,236,1504,2123,784,2940,2878,1595,1393,2659,1328,701,806,2361,763,2318,2974,953,1751,388,2234,2327,1339,2539,1301,2586,946,389,317,1239,1927,436,1525,1197,2827,1416,1290,158,2454,2494,1798,1114,1549,1968,2828,2030,2705,1793,2681,2755,179,2630,608,504,1757,1900,604,336,2300,1045,702,1628,2896,1375,713,1067,2802,1841,2813,1452,2978,739,1776,2863,1647,1760,1512,2726,2568,1418,2121,1896,2194,2890,2815,1227,455,2541,2455,2969,662,2570,2687,2546,1934,535,2933,945,2093,313,98,21,329,1998,475,2069,1034,1407,247,894,2000,2377,1238,2724,142,1883,1213,2317,2883,1717,1007,1964,1277,2345,2513,640,1463,16,714,76,2830,2058,1536,1312,1097,550,288,2116,532,2836,816,2928,1575,2645,1707,2151,1313,1624,1402,464,1327,1265,642,2574,1388,2188,2917,838,2924,177,346,151,2316,2297,998,2852,2515,1550,2501,2734,185,2115,866,2391,1917,440,2657,1023,474,1136,213,1119,1145,1074,2230,2970,727,1567,552,970,1651,1458,966,2571,509,1886,1205,1165,854,2471,432,2273,1714,2497,2592,2899,96,1484,978,1822,1577,259,2213,287,1560,694,166,1992,1503,73,290,1789,1655,118,1539,2237,2496,1435,649,2799,1226,2177,681,632,2514,2404,46,2378,1349,152,2255,1698,362,2201,2360,354,1599,534,422,1010,48,828,2801,1129,2470,1294,1961,2048,2612,364,2110,2344,1500,1324,1343,1801,360,376,1932,1909,1158,1469,1194,1758,1990,2001,2925,1348,2611,1696,2934,441,2386,1471,1381,858,1106,1443,2181,145,551,367,2522,2111,2112,312,584,2882,2154,2028,280,2156,831,1784,2771,765,249,1384,2254,2502,2440,1448,1787,1039,1146,2142,1630,2431,2184,1281,1468,585,2929,2105,2943,2131,1166,2319,1716,1392,660,403,1280,2676,1400,1821,1431,1580,2366,1938,2263,445,2908,2868,980,1658,1969,284,2018,187,351,1955,2579,124,87,753,289,1071,2715,865,700,2761,122,1773,1652,2506,2274,1101,2459,155,1305,303,316,735,530,2818,847,2099,170,1379,1026,648,1673,774,510,1440,2244,938,1110,1279,246,2655,395,61,737,1691,902,1030,1140,2806,1457,1456,1481,2790,1096,484,683,922,1159,2919,1743,2242,688,1059,2593,884,86,2608,636,2350,1875,2193,1195,1015,2066,117,641,715,814,2741,823,2479,991,1654,2056,2171,183,1389,2775,1762,2540,2293,1589,2740,1710,571,1556,1515,85,398,1730,2816,2176,2026,1041,214,1578,1425,1385,344,1103,748,1695,2885,449,1562,36,554,419,24,192,1925,2635,488,1985,2143,885,82,2673,1295,1489,68,549,525,1772,581,299,2275,1670,2380,2418,2231,2482,136,693,1111,2210,164,2487}
{961,56}
Returns: 40571.87380923503
982
{2505,1504,97,158,1404,1804,769,2420,957,1500,2566,2756,2874,2214,1818,569,43,545,1594,2020,2184,2865,768,149,33,500,1627,1738,382,50,1936,497,2152,1487,286,1883,1801,2916,2617,1281,61,2765,2862,1742,471,1568,858,2739,2570,794,2241,1118,815,1837,172,2770,1736,219,1405,2873,2476,180,2600,1116,2460,1922,1606,1429,2606,2118,654,1288,90,358,1650,1394,1469,2393,2675,1691,638,2295,1149,1375,1036,2000,1105,1747,2234,2058,2943,2528,1401,383,89,767,2686,128,1655,1757,1423,504,2479,1207,1910,777,1362,192,697,1380,1355,2409,714,2596,1085,2826,2183,717,2786,53,1836,49,465,2696,2055,2928,420,1151,874,2683,1257,2609,1463,712,2368,857,493,352,2521,1089,1517,2090,2902,2872,1477,2587,1291,1414,955,749,2912,537,2156,505,1878,2481,444,1540,77,1433,432,1895,366,2389,2166,1671,849,528,787,153,1934,987,672,339,413,548,1274,1802,1635,40,502,302,1625,1940,1821,1937,1453,2395,674,899,1176,292,1881,1617,1262,464,953,2303,2801,1876,2465,379,2249,2761,1615,669,781,2245,838,1093,2001,926,2836,690,1320,1356,1070,1310,2759,1418,1619,1620,215,1336,615,842,2337,1575,1168,2558,2651,343,1265,2161,1129,1811,141,883,114,2057,86,2195,2742,2892,1555,2240,885,840,1365,1403,200,1038,2511,1014,2299,1343,1307,2548,1432,2750,765,2544,2574,2713,178,1369,2626,2496,429,882,2154,1809,23,284,1694,1358,323,2015,2779,929,560,2736,1711,2122,2364,31,1344,186,1759,2238,2932,129,2689,625,565,93,667,1545,301,1814,2738,513,908,1710,2229,2549,194,1482,923,917,1445,2944,829,1210,1595,2123,1892,2497,1170,2652,2167,2218,34,1953,994,1182,2552,2704,272,2284,481,167,1096,2424,218,7,2762,1398,2628,2448,1790,1378,499,2162,745,1902,1914,2924,1455,702,608,983,2371,2842,2914,1180,2572,3,2674,913,1033,307,237,1994,580,708,1695,2039,988,1278,1861,536,1624,1172,2658,1302,244,2522,1332,1352,1248,74,1938,2828,1860,279,329,1156,1127,689,532,142,2745,1566,901,579,1898,869,2209,660,1768,2884,1399,1956,295,736,1771,817,2517,431,2111,2246,2741,541,2327,2426,1249,1185,1465,2462,2290,2271,91,236,1582,2791,888,2273,2488,640,2785,796,744,88,2642,1847,2427,2457,2048,930,404,389,330,2900,2349,1214,2197,2378,816,1189,896,248,1282,735,766,328,1035,2446,740,825,103,2189,2336,786,29,428,1208,2843,487,250,100,1393,2694,2115,2333,2539,1132,2875,435,725,811,2376,1187,1628,2361,1823,1529,706,1693,2036,1753,80,2373,551,623,2405,480,644,995,2593,2288,1945,598,775,804,683,2510,792,2615,746,1439,1383,1223,320,595,607,1864,1549,2621,151,111,873,836,2023,2599,1347,76,322,737,2397,127,945,2509,728,1186,1481,779,1407,2504,1573,2934,1233,455,2360,2069,1600,2053,2726,1744,1531,364,2711,2175,214,1746,351,2500,1709,1996,1674,2810,38,657,852,729,2319,1120,2269,1907,1372,1470,1231,2314,2411,1824,2311,2749,2217,1598,1783,782,1492,1460,949,1526,1446,1905,2657,2279,96,2103,582,2125,2155,490,1065,748,1664,904,2879,1634,959,2382,2869,1872,1247,2113,1277,2230,2147,936,2257,2038,511,1117,1855,1337,2833,661,2468,1425,2412,2473,1755,1450,2450,2108,1381,592,2114,10,1828,2464,1630,2306,361,2398,1660,1327,2852,2129,1103,2408,2639,2498,2789,2799,2461,1099,357,58,2525,2524,1479,946,734,1638,1376,1178,1722,1377,2624,1845,1396,2724,2080,2660,1219,2823,903,1765,1719,2074,1289,2385,133,1977,785,1468,232,1163,2072,2841,1581,124,1556,1724,1644,2153,2595,135,1010,834,522,809,2643,1519,1328,698,1577,249,1221,2343,1602,1899,2782,826,1803,1340,2672,1988,2767,152,2921,1544,647,5,1563,216,15,1147,2754,2737,1853,1449,2824,2326,2078,1840,2341,1424,1904,1420,1822,2520,1366,138,1042,2764,1779,921,2859,1777,1139,2732,863,2351,2630,668,411,1562,716,1920,656,1532,425,606,1708,1547,1506,1250,247,95,1933,315,2891,45,850,2698,2681,1202,2005,2199,14,758,741,11,542,771,331,1751,1323,2925,516,881,1503,363,1974,2,2151,2252,1546,113,2388,386,1261,325,2198,2447,1552,554,514,2106,369,1641,1239,651,1119,1960,1454,2296,2835,2233,2625,1908,492,440,933,2482,170,2049,21,1928,2417,2730,2292,396,1088,2603,1616,2219,378,2173,2437,1177,2019,1961,240,2140,670,1076,593,2086,1775,1808,886,1181,763,131,1285,353,2028,2646,1827,260,637,2372,1466,2196,761,1363,2444,997,4,1640,2608,2535,208,263,1973,1209,1043,912,1939,2423,655,384,1083,2611,2182,2618,1192,1373,1436,2339,841,1410,1512,535,1946,2946,2507,992,402,87,373,342,1830,47,298,451,631,1967,547,2150,2413,2631,2044,1023,2939,1121,1680,36,2633,494,1090,2889,2927,195,42,2930,531,2438,222,508,1699,1539,977,663,2159,6,2772,1142,2416,1657,865,2719,552,456,1603,1782,568,762,2377,1838,2567,1740,1978,1057,543,806,2472,69,1587,1021,2224,700,1741,67,1916,289,318,475,1798,63,2501,2560,1226,2709,1259,1972,2697,2825,801,2808,1982,2483,1712,524,2888,2323,2805}
{191,440}
Returns: 39921.27975682663
994
{807,2014,1308,2246,1229,115,2494,298,412,2597,2958,119,2141,1989,1211,185,1971,2156,2397,489,586,858,1212,167,2177,1620,2523,2434,1417,161,2949,1436,1573,1314,128,1707,536,233,1216,1076,2517,2821,2284,447,166,1630,159,1697,1107,2275,2202,1230,956,571,1892,2933,2974,2513,1622,1974,1693,784,266,1368,2604,138,1702,2662,2922,1445,405,934,1824,1572,224,215,2553,1717,2496,2021,2653,62,2893,1082,1302,2915,2520,350,2505,1687,1472,1584,1678,148,204,875,1735,1723,2557,12,1431,1403,1318,1360,967,1414,359,687,499,1086,2581,401,2034,2795,691,2591,710,973,2887,1221,2266,1679,805,2820,723,1010,2625,2463,127,2608,2760,1609,236,441,1052,747,757,759,1806,1602,668,2888,2174,2063,681,1337,1486,2742,1159,1763,1369,1219,926,758,411,2421,1664,2294,2685,263,2639,2954,2925,2154,1505,1683,2281,565,1154,1106,2709,2234,2321,1500,2111,1446,1611,885,1890,1501,2121,2455,2292,1520,1968,381,2864,2785,299,404,1932,1789,1394,2195,717,256,2645,2110,601,1488,2050,988,255,863,1802,1359,1804,183,2845,1294,2602,2719,1456,2074,1090,2107,2978,1399,522,2082,1353,1860,2500,2401,2006,529,2216,1612,32,486,1020,1756,75,2242,1672,1876,2838,526,706,391,2843,1588,2796,761,1494,208,1827,2162,1392,2023,1685,1577,437,1335,2191,2367,709,378,1713,1146,2151,1667,1139,40,2852,322,477,317,109,1158,2466,1253,1568,740,170,2835,1130,995,1347,2125,2099,275,2839,385,2078,1543,217,1705,2487,1648,2193,1135,2478,1915,2490,616,402,2504,484,1537,2040,850,2462,1304,1119,1889,1988,2306,1739,782,2862,79,1783,979,1849,755,1882,2507,1138,2350,230,2079,1966,1833,547,1438,2891,1897,2715,2781,1725,2456,1005,2898,2153,506,1738,1422,1100,846,505,213,2648,2272,969,561,191,966,2654,908,2061,2215,546,981,800,2460,644,1917,707,2406,2390,1364,1233,456,1298,69,2930,2168,1947,1037,2814,173,508,1109,1578,162,2155,239,2846,2714,473,2805,797,905,352,1370,1196,2534,1626,1782,2611,422,615,1077,869,1984,582,18,1766,824,2963,2880,2794,2278,2058,791,2548,291,533,674,751,2116,1473,1250,643,535,2913,2297,474,1758,2959,491,2680,2052,76,961,1296,2140,1340,2165,1065,1655,2041,1798,1223,1637,240,257,2163,742,2769,862,2317,428,2606,1558,821,2169,752,1190,2676,2073,716,2418,1847,1205,1015,877,2726,1834,1292,2039,345,2788,2556,1061,1951,2669,803,1338,1070,2761,1289,45,360,272,2436,1275,2171,302,1662,1411,1964,2900,356,1753,963,635,865,226,899,1963,49,1647,645,1257,2694,1350,749,580,1269,563,2682,1345,525,1855,2509,2113,1441,1365,2197,1027,2038,2356,930,2048,1840,833,2551,920,2464,297,1177,917,1795,454,1547,1496,1202,13,1132,1218,1562,1283,98,7,2876,2167,2735,2615,735,1706,1864,2441,1946,2759,2616,2349,1224,1934,2574,517,975,2525,259,844,933,488,123,1128,2117,970,276,884,507,2867,330,2982,2850,2708,331,1749,2618,1046,23,2328,918,2567,1710,664,354,2881,1424,2667,2569,2780,117,620,1594,714,419,1385,2152,1885,358,376,108,2751,2400,498,2219,1845,292,2939,1565,2033,1163,2865,2326,1722,1837,1357,414,1936,727,2842,2239,1962,398,1656,1001,2263,548,2442,2161,2637,2392,1586,1079,2231,2457,2799,2322,1145,1058,990,1374,1183,47,2635,906,1181,2975,458,1998,2873,2011,843,729,1554,1527,1333,1828,2087,1675,2405,772,1188,820,2137,335,2260,1846,978,1880,2875,314,261,1110,880,762,1914,2878,647,2383,209,2644,1740,1838,89,1510,2955,945,2186,652,1093,1538,641,1148,2043,1160,1970,886,485,1034,2131,1047,513,1291,8,1000,2631,1293,1152,2768,150,2953,1634,1865,1429,1911,2722,2381,788,1427,724,399,17,2001,602,2573,1050,1877,1285,2632,27,197,2307,2565,2752,607,1761,495,1794,2877,2396,2296,574,2524,2894,1796,471,2357,1420,2324,96,2118,1506,2650,2095,928,2812,2139,913,2213,683,882,2512,2385,1140,319,1225,2190,1895,90,732,2205,221,2389,111,295,493,282,1391,2905,801,812,2811,1396,726,2420,562,2732,1185,2829,1522,68,916,1653,1996,1743,78,2837,1011,2749,845,531,1888,341,308,2243,1108,2948,2683,567,2728,639,581,2158,593,2257,904,577,539,1703,998,1264,1669,65,2248,387,510,2358,2316,2675,2059,1552,2089,2065,2554,787,1826,1463,826,1069,492,559,2727,105,2935,815,37,300,540,53,2283,1095,307,1652,959,1113,2088,2051,1938,2388,2127,2340,2289,700,2642,87,2067,347,31,1750,2495,362,1395,1390,1817,911,1690,2647,2980,253,449,2659,2069,1531,1560,1495,2285,1719,1035,2854,1943,2815,2132,748,951,1306,16,1684,1235,305,1149,2810,1997,431,968,1955,1222,864,1994,336,1383,1155,2486,1848,2393,2128,638,220,2150,42,2725,2560,1041,258,1986,1786,2256,88,2346,1482,1019,246,1447,2147,2626,2706,1807,57,1993,338,475,743,2745,1668,188,476,1206,596,1048,283,770,1511,855,1267,2535,2687,2170,925,2808,144,2849,984,1663,671,1182,2652,2237,2773,1886,228,2765,2872,2404,1247,1016,816,2377,1062,1400,2711,2603,686,1045,147,2716,1625,2175,461,1781,623,2119,2126,1919,2364,2819,1316,1532,389,124}
{924,1798}
Returns: 40481.43045254687
1000
{2945,2817,1413,2439,2366,2833,2527,1495,182,2631,62,2513,2798,2405,2302,2154,228,1688,1420,1740,1504,277,1722,295,89,2188,1095,429,1785,744,1119,414,1694,2143,560,1713,159,250,2083,748,424,2747,603,932,2550,334,1511,1394,714,2582,975,2575,2299,473,2386,672,994,2202,325,1986,2500,2243,1854,2819,2208,701,1953,2748,2519,1035,2125,1238,1889,1964,2404,437,2104,1015,401,2071,2864,493,363,2398,2940,2855,2796,1741,38,900,2261,1829,1111,1603,1697,307,7,171,1750,1956,1449,2619,2580,2914,706,1520,822,2435,879,2246,1878,845,1335,2900,1253,980,1065,1787,2111,55,2064,356,1612,283,1275,1406,1365,2372,2364,2865,2067,2959,2844,1853,1333,2295,1893,6,2707,2265,201,631,1225,697,2353,2005,2524,1033,2979,2074,2150,2024,2367,266,2603,2234,2876,2989,1011,2027,2559,657,2944,94,2904,2930,142,2244,2089,2483,2689,2887,1589,1137,386,2303,1684,1910,1779,2698,1938,1554,2765,1005,2160,366,2564,1064,1091,2683,651,1182,844,1400,530,2317,1191,2552,1755,2787,2990,2808,2695,2549,2679,996,2285,2802,481,319,2705,1451,23,460,379,915,501,2241,1931,2910,1571,2793,2096,2021,1229,769,2351,2948,2348,2736,878,1993,2774,545,1226,537,689,2832,2040,491,179,433,1358,2978,766,548,1212,2319,2839,503,1802,802,2087,1214,2072,519,1693,1209,227,1909,675,2100,354,2987,2168,2464,1574,2503,1634,2416,1743,1700,2859,2429,1294,559,2049,431,1325,1752,843,2174,868,920,1161,2547,2321,2596,2753,1398,1979,2977,1653,1532,1396,305,2994,1955,539,1057,649,2506,18,1588,385,730,2782,2490,388,2389,2610,1359,1395,2807,1104,2754,1217,2494,246,1377,2381,326,563,646,2044,2820,2877,2142,470,1865,633,369,2026,1055,536,114,2441,2648,453,2123,2228,263,1559,205,512,419,1448,1756,2060,1038,393,252,2110,382,1298,2539,2124,2792,2075,2686,696,222,2362,2515,1610,2332,1472,1062,1575,778,254,922,1566,121,2001,1482,2488,337,488,1453,538,75,740,365,2647,2394,2298,261,2216,1082,1134,681,1174,1881,2593,1000,1480,1131,2675,476,2560,2357,2146,2956,2644,1732,245,652,2493,1240,2387,572,1972,77,2112,139,872,669,2767,1234,2268,2009,2257,458,1518,1136,1844,1267,1707,1820,220,1790,1666,1369,1384,1009,52,848,467,373,957,2248,1677,2484,1733,611,568,2221,2395,420,1291,1096,2875,2863,1115,502,1607,265,91,589,1109,604,2336,124,630,2729,625,281,2134,2008,614,933,1010,2371,2069,531,1686,322,2856,1468,2179,235,1168,9,547,1764,1220,1591,1042,166,998,2354,2130,860,2880,2585,249,1757,1043,774,2934,508,976,1392,2533,794,2604,199,410,320,1729,198,2412,1859,2831,961,1006,144,2449,1567,690,1273,2902,676,1512,1580,2860,1169,1125,1773,161,1416,2805,2407,849,57,73,2509,1008,2313,2598,966,1179,806,1403,736,1655,482,804,2447,874,534,2537,165,1572,70,2681,2215,1907,2320,2943,2637,1672,1378,1452,1935,1804,2278,750,1875,1349,1832,312,2128,2291,2938,423,1843,1303,1132,1799,1648,1978,889,2038,2061,809,2086,517,2891,1330,2719,2403,2890,1930,917,2937,561,2548,1942,981,1295,1101,53,1754,1539,1696,1620,1150,1806,64,233,2230,588,447,1598,204,2251,977,1550,1411,2947,2474,1899,1002,1735,1444,1919,698,2895,875,40,2629,2226,2376,2534,435,2746,1857,1629,240,2653,1705,1254,2459,19,1484,1088,609,2198,807,2609,2600,885,1279,555,253,1304,1582,564,1116,2136,338,345,1774,50,2118,2857,1222,2201,88,882,1675,2297,1788,1825,1145,695,1542,2409,333,2886,2207,993,2714,1652,1428,1,269,404,1385,168,1924,2444,1423,2311,2750,1262,290,1114,2558,820,1474,1991,2155,1783,1830,1368,1640,1840,466,1372,2046,413,2731,1438,432,643,793,2279,2255,1667,650,700,2995,2033,1970,1819,231,1022,2908,399,1026,1110,2467,1440,2190,238,2305,2041,1668,2960,1493,2344,1086,262,1422,2936,2293,1205,1897,288,1839,1716,1376,2426,332,1447,1863,1508,2314,2152,26,1961,578,1329,2932,1866,2738,327,500,1822,2252,2806,406,129,1903,392,331,1081,1577,1441,2730,1814,941,973,1599,1021,474,206,2451,950,725,1494,113,880,2022,1776,2732,1175,2518,2482,336,2773,294,2590,1622,1882,2627,1282,1974,1374,925,968,1817,655,187,1176,2743,2615,2918,2811,1274,2373,2440,2148,982,1404,1231,800,891,2339,2077,1375,1815,260,803,2460,2557,1758,2662,1286,484,587,2607,324,1842,595,2893,1792,2084,1305,3000,2159,632,1682,1467,1139,34,95,2391,936,2968,1211,200,1324,360,2181,1808,1424,135,1891,2115,2700,1959,715,2120,1080,956,893,2892,574,314,156,2740,2852,678,2374,2133,542,1934,2841,1186,2165,2709,2196,81,1130,1464,2551,838,2991,771,854,2328,1872,1845,2063,1236,1112,1001,2682,1614,1491,1431,2338,2193,1028,954,992,1216,497,2781,823,712,1100,2436,2667,2301,584,208,2963,546,357,2501,836,2219,773,623,648,2951,902,801,2907,1809,2762,101,67,597,2816,2933,1315,2210,190,835,1162,1678,183,27,2117,582,1664,2639,1803,2588,1322,119,1312,13,1719,164,1409,535,2139,2665,1419,1040,741,90,2182,2783,280,157,1190,2280,2770,1435,2751,2053,1650,1401,217,791,1613,2180,2692,455,358,1457,1432}
{1426,1722}
Returns: 40761.83237723601
982
{958,2393,1244,2219,82,1958,2243,859,1703,2864,1189,1319,536,2871,710,720,1825,1168,395,423,1317,869,1690,1020,1267,1523,2591,1528,1879,365,1789,1829,716,892,817,690,1200,1716,2476,2729,463,1291,235,563,2641,2494,1961,2695,1307,951,2589,537,1702,2683,100,2145,1869,300,498,1866,2899,2403,1353,1354,1826,2253,1980,2915,2528,486,2301,208,518,1698,1362,1171,656,2504,1583,3,778,754,1092,771,1041,239,1983,675,1601,975,646,1065,579,723,2007,2681,963,1134,1653,791,2183,2141,1376,2270,262,1625,2015,1312,187,2390,1828,1938,932,2116,1594,301,2535,184,547,946,2266,1348,2249,1290,2437,480,2460,820,1739,615,673,1912,669,1926,1999,418,2621,2773,526,2492,2815,937,756,1906,670,2406,1530,144,327,1853,1490,1303,2800,259,1776,1064,1039,1261,1416,2224,58,2730,638,1688,1346,1584,402,627,2265,2654,1326,2086,2482,1315,110,2868,1815,1850,2094,895,567,2298,2152,2875,282,708,2051,1746,340,2011,1209,1663,2121,113,2261,1729,1673,1278,1522,721,585,2475,1225,2469,2602,2530,89,2004,1907,1706,516,431,1799,2066,1731,1006,2317,2734,2362,1712,948,269,1279,957,2236,2002,1440,1662,2780,1104,815,2772,2526,2580,194,41,359,1943,622,568,2156,7,168,1340,666,746,355,1336,1329,387,2084,556,2788,1096,2457,2471,2661,472,986,1037,578,2045,1846,2763,1059,1482,1079,203,2676,2459,2768,1666,2284,1321,751,1427,2442,1819,1464,634,605,1622,2478,1952,1919,1259,945,962,1380,151,2288,1462,1412,882,703,2673,2908,906,2369,1193,857,1379,1751,443,695,1863,2164,139,2652,2089,2660,1231,738,1276,2125,896,145,1115,1486,2302,1947,1979,1237,1972,2870,2816,599,624,595,693,929,79,1971,1677,1186,1888,1680,1361,37,1498,625,2750,2603,2698,2037,2739,542,484,2422,740,2173,731,1148,115,2237,228,1406,1233,2185,2627,1156,1567,1816,1823,292,1472,109,61,2397,2786,27,978,934,2353,1915,1151,1034,1934,1442,219,412,2331,1783,2640,488,170,334,2533,2891,462,618,1204,2147,901,74,658,970,783,2356,2252,1711,2132,175,993,2931,1274,192,768,1177,2877,587,26,816,866,439,2885,2694,1383,134,1016,1628,1953,148,1807,2696,707,460,73,1726,174,2167,1509,1075,352,77,2223,2498,2158,2791,794,2395,257,2527,1302,1240,2826,1381,2484,258,2373,1621,1767,1077,2707,1365,1283,2735,1670,101,376,2701,795,1475,1112,733,1725,1341,1116,1471,1349,442,2620,2022,2181,1813,2644,2928,1754,384,583,1908,521,2225,2297,922,1552,732,130,2720,1667,1709,697,180,530,2932,1202,2189,2218,1598,1740,2732,2688,2499,974,167,2138,1194,1047,2917,1281,1028,2745,2093,2455,855,2179,1611,702,1223,531,2645,671,1111,2717,489,22,2432,2279,513,106,1262,908,626,2407,1836,1062,557,2449,2306,137,2431,2113,1273,2625,1377,2240,179,190,2106,790,2139,684,2445,121,1017,494,976,1308,2571,1098,532,900,1798,1891,936,2241,2053,284,847,2115,1129,2542,1555,243,1463,2438,2474,1083,2834,1996,2822,2575,1772,1057,2281,1396,1167,1997,2716,2467,2316,2553,2177,1757,1242,617,1693,1790,2065,1865,1067,223,1837,410,213,2293,2706,953,565,861,2519,2377,1449,2425,1230,2559,2010,1387,1350,78,570,2639,1280,2884,821,1126,2777,163,230,2841,554,2276,456,2851,2204,361,2505,1730,2462,1022,803,2556,2333,1541,1785,303,2452,204,1117,1025,644,763,2937,2280,1185,2590,2785,322,2380,2195,1001,503,2347,1389,371,2464,307,1000,584,1602,2737,1426,683,2052,304,1778,92,744,1192,1234,1388,69,750,2229,1203,207,871,636,572,349,2787,1570,1933,582,2376,1955,1761,2920,2137,2693,357,2597,2595,514,1905,1392,1500,1573,437,2555,1792,2895,608,1245,31,96,576,372,473,918,393,2411,1561,840,2944,252,210,1747,2618,1103,457,2806,1835,910,1422,2866,2728,9,1627,2398,1759,1492,2798,2124,2408,1535,1431,255,2927,642,925,155,2723,1411,2038,1890,1710,540,713,1009,2825,2441,1123,1824,426,796,2247,1578,1295,416,2215,555,2546,1469,2378,2726,2246,770,1820,2294,1180,2848,1656,1564,621,2440,1607,2481,949,1157,649,2255,1632,2061,2080,719,2562,1146,2812,1921,2120,2935,2050,575,831,1158,611,2172,1510,660,1548,1363,748,872,2239,1575,550,1484,132,2342,1102,995,1503,2712,1707,965,1969,593,1285,1769,2222,548,854,606,2389,2263,2404,2018,263,2402,1479,2365,2111,2857,729,1163,1992,823,659,1429,590,215,388,415,1671,2140,432,2632,2626,120,2039,2485,1520,1100,1046,1803,632,2068,2117,2134,1780,875,1217,1122,981,1248,888,2638,1574,2257,2807,1165,401,227,2130,2040,308,1432,1219,474,280,2067,2427,1154,885,1951,1868,53,2833,784,297,1722,2803,2878,1437,143,914,712,325,916,2861,1900,1514,2290,1920,968,2818,1738,609,987,1428,254,1967,313,1176,1333,123,1911,205,506,353,295,161,224,515,1657,833,1818,2433,341,973,64,2615,1752,2557,613,240,1294,2663,2254,2267,544,1861,482,417,446,1056,886,921,2381,2903,1635,1606,2914,1043,496,2687,890,2340,273,2073,2436,1124,607,1292,117,941,538,2727,453,272,525}
{2256}
Returns: 39919.77982061314
994
{2080,866,1287,1435,130,399,336,971,2233,1120,3,1353,550,389,814,2694,1096,2050,278,779,810,1463,2673,848,2531,1591,1667,1780,1901,2968,1638,863,1167,902,2801,1808,1763,2328,755,204,457,412,320,773,988,756,593,970,2603,2167,714,156,555,2024,1456,1163,2075,825,699,1759,1320,513,2246,615,552,1059,2906,2674,1049,471,2390,799,377,226,1254,639,1297,1787,2232,2027,1494,1174,175,1014,736,201,1767,2823,2717,2851,1855,2489,2952,1015,2439,38,783,1241,1200,2269,431,1894,2128,1524,623,1381,872,1093,2185,1249,1493,2797,445,408,2356,585,1950,2157,2932,2607,980,2523,101,1758,2462,1248,2554,1160,2082,1997,2604,1580,2251,1699,918,1386,1293,1527,345,490,1885,2628,20,2573,787,1550,1161,2472,1508,846,2129,1284,1617,426,708,1902,1115,2930,2608,829,802,518,481,2409,280,870,652,2691,587,230,293,1158,2855,1818,2421,2175,1269,1863,1302,717,2770,1814,1419,2216,1766,1775,605,1195,2769,2903,1427,535,777,290,983,1741,1190,1448,2148,1730,2309,2412,1273,1616,460,2422,50,998,1123,387,2380,187,1768,784,1116,1882,2066,2053,806,155,2025,2974,1322,538,2516,1169,321,2568,1829,2423,1802,833,2503,189,1598,1850,123,2921,1272,2299,1499,239,2514,2452,1509,1652,1881,2612,790,1659,519,271,1484,134,2710,1396,2330,1530,1970,1938,64,2373,1359,1122,653,2660,1798,2085,356,2432,1370,482,1288,1175,2816,1410,985,1495,9,2052,430,2076,1625,2675,2805,2005,2955,2225,1756,1764,2838,1708,932,487,2434,2865,1106,1702,2703,2436,834,2962,968,703,632,2107,597,689,1879,1504,2197,2544,771,1034,1088,1641,2661,1830,766,2142,634,2496,2919,695,1237,933,1132,1121,2479,879,1240,114,1429,1028,1627,2741,1585,1548,637,191,569,1936,2195,1683,2725,886,1973,1903,2165,617,577,1383,196,2302,840,2518,2774,397,2856,1647,1100,551,712,2509,2713,1315,515,557,2853,1421,35,428,371,2697,1412,2048,507,1692,941,142,440,2935,1662,1673,582,854,1924,194,642,2186,1751,1467,1794,298,1582,1592,2254,171,1342,1046,713,1986,2775,450,117,1076,2744,2486,63,668,539,61,74,465,1430,2884,2190,2632,400,2861,229,1944,2017,479,2605,2755,62,52,1266,2546,170,1776,2304,2971,762,404,2241,299,1612,1569,572,2381,2237,2275,1843,2252,943,1114,2897,1395,1771,982,1011,242,2704,1858,2454,2793,2939,1005,2690,2389,1164,1281,1971,1634,1540,2158,1839,735,2657,2812,2046,360,2411,2803,1862,119,2543,76,2326,180,669,677,1838,1529,145,2374,1658,243,1926,2150,1961,1654,959,824,2663,997,1815,2678,2826,1853,1464,1023,2293,1861,1639,2714,2015,277,571,1246,2622,2512,1361,1834,2445,164,395,1423,696,392,2566,208,591,2520,2094,2960,1089,1232,2153,1308,1831,1824,2274,2352,2670,1436,1532,1496,1223,1972,952,664,2211,347,1738,2161,1490,1577,610,326,2346,2450,2377,820,1773,1709,1083,2772,594,2156,2857,1192,2202,797,216,340,2589,1357,1770,728,1188,2646,143,2368,1522,2265,1721,1441,374,2213,2314,1367,1664,1534,1578,1077,2351,1447,1415,2586,1976,1856,1078,2169,1737,1285,1462,1250,869,2332,181,2905,1278,1707,432,897,1656,520,317,1305,1347,129,2922,645,2630,1042,1980,2584,608,1426,678,2592,2214,1554,2633,2765,2679,351,2731,2392,2594,1685,396,743,211,1565,511,2336,2640,760,2508,2839,2266,2621,1608,1454,238,628,780,2747,1520,2134,2923,1243,2498,2551,650,2560,1165,2658,1459,2778,2487,1222,1819,1147,2617,270,1960,744,2912,2126,1004,433,2505,691,2491,2303,2386,2720,839,2259,1772,578,1236,1941,436,2742,1948,804,127,2413,742,2684,217,2925,2914,463,2103,1443,1086,1138,1185,1930,1821,2441,2517,79,59,67,1919,2191,451,56,2535,2026,260,738,2814,1298,120,41,151,675,2249,218,146,1827,190,2933,2613,2659,1489,2400,1389,838,168,1334,132,15,2334,219,265,2882,1193,2980,442,602,559,2637,2561,240,1159,1166,2260,2569,2321,417,1268,2888,1888,1173,2002,1796,2917,1682,1946,1671,126,2353,2347,261,1696,2779,1872,1968,1242,2623,1739,1092,1797,991,37,641,575,517,305,2920,1637,2206,2828,835,2792,2537,1346,115,906,2449,2644,1928,162,2410,245,2242,361,1058,1317,2848,2577,484,686,1898,1148,927,178,334,2666,2384,1126,1925,1871,1953,2558,656,925,2428,1029,2504,710,1105,2188,2458,2187,2131,671,733,288,905,2306,2391,2705,2723,957,1995,1743,1566,1045,565,1460,1701,2910,822,232,2553,174,2119,2250,31,566,2664,1196,1500,205,40,2315,2722,1109,2515,711,485,1719,2229,2139,47,2023,2718,955,2943,223,1208,2090,2016,2416,1471,2639,1384,2333,994,912,1307,1594,1842,2100,630,1154,235,1752,212,1724,2902,1964,1982,2155,800,2130,2963,1514,1337,574,421,2499,1071,2291,1939,1992,1340,2196,1245,1324,993,989,951,222,108,1977,111,4,2465,1723,1573,2072,335,907,1599,1104,1900,2239,1482,136,1424,1952,149,2184,1458,1615,1784,215,358,220,2114,1897,2979,1408,603,2207,1118,2842,1546,1024,2677,958,2576,2308,2068,823,2891,549,2056,1234,1675,772,1391,398,974,2008,2342,1257,529,1609,441,540,1209,1143,1355,1965,1791,568,1468,2358,438,1867,544}
{817}
Returns: 40479.93051556183
986
{2083,1640,2809,2428,1497,1631,1223,1789,2943,1447,2815,2085,2674,2149,2594,186,1237,1207,776,2888,2555,175,995,1587,571,95,768,2033,1191,849,2499,1955,349,982,2393,2190,591,1962,354,2098,1396,662,1557,2444,1529,2803,672,2519,2939,833,2548,1148,687,55,92,2159,1663,2954,961,1581,795,1255,664,2211,2932,152,1699,2524,1488,2064,191,2855,966,1796,326,1864,923,1656,572,271,2202,492,2394,1906,859,1171,2265,2316,2004,1397,1515,1120,460,809,2324,2916,1260,469,1903,697,2692,943,2435,1411,1055,562,2520,1880,1620,498,2143,1883,1301,1888,356,1103,2082,1039,448,2504,894,551,1872,510,274,1666,2533,2709,1580,375,2203,2342,2742,2629,434,1192,2952,1601,759,2357,1651,569,585,2734,1037,2021,1725,686,1001,131,2349,1451,788,754,1114,1946,1568,2439,1049,2345,2465,592,335,2729,2421,2833,4,841,2897,1782,2408,219,1616,2338,1768,2112,1538,970,1025,2604,1545,1482,2934,1428,1956,2660,557,2182,495,876,113,2587,1401,1504,1821,2470,2008,1264,2101,1271,998,2936,2795,2255,2270,949,1924,450,2917,2569,2678,2698,1000,1010,2029,1647,363,76,1691,1240,706,208,2279,2913,2616,2335,2602,2137,2455,346,44,2693,805,896,2573,2096,1147,2276,456,218,1302,1084,1567,1300,1583,211,298,2161,1992,811,1176,993,459,2301,488,481,2225,1635,2647,43,1221,311,439,1721,2610,51,1063,2135,767,2259,1196,2521,2059,388,1311,757,37,2304,2251,1268,802,2433,2125,1130,1421,1664,851,782,262,2857,2046,1020,1681,2652,2535,1165,1824,1700,1460,2811,703,79,1947,72,2030,1818,1723,125,2531,2699,1863,2218,2414,2417,1392,2690,2069,1965,351,1813,2160,1694,1337,1254,2655,1927,2611,2390,1290,2473,369,1522,2344,233,2457,838,213,2946,2402,2844,244,1184,2150,596,1299,371,633,1440,145,2177,2239,1127,2278,790,1141,1181,1446,2636,2166,1131,843,806,2677,764,842,2258,679,2174,584,310,1033,965,70,2663,1822,1960,1167,808,1086,1558,1350,1819,1890,1284,2061,1043,2644,2664,872,1306,1729,146,725,2384,2026,1847,237,1971,2931,944,194,632,1097,501,947,1905,1856,2322,875,372,2697,658,2582,424,2589,107,2175,1351,2836,630,2790,2065,2671,2215,2780,268,2341,2618,783,1599,22,2886,1964,2351,2919,2329,446,115,2935,2901,357,2760,1932,216,678,2153,2858,2186,2010,673,1682,345,2839,36,394,1334,2744,931,692,507,1481,2733,2275,1145,136,2334,463,950,47,1231,1553,252,1762,2256,1164,856,599,1190,1391,883,343,655,1117,2717,2816,321,2050,1075,977,18,1134,1634,1954,1283,1512,2890,384,873,1535,1333,73,2704,332,2494,797,383,2442,1108,320,1938,932,2109,509,2510,751,2722,1263,2802,1650,1756,177,273,1195,87,1711,2451,15,2386,2422,1107,1287,316,1186,566,911,2176,2823,743,2840,1826,1733,1732,2739,738,2025,1073,2866,511,1136,2327,26,882,302,2543,855,1737,2588,637,1878,2271,2556,1330,1933,1204,1742,93,640,2191,1042,503,2201,277,46,742,29,306,956,1588,871,85,61,2612,1914,2242,1910,1442,1833,1507,1498,2767,1140,861,2841,2814,1405,475,1045,2500,700,1931,2657,390,1873,483,2567,1921,763,1877,2199,2624,1839,1596,1600,524,992,886,573,1660,80,1811,934,1468,680,1321,1076,2209,1339,129,2862,2834,657,1575,1298,1275,2566,2756,2366,563,960,2903,2537,2485,2459,2506,1950,1775,406,1661,2665,2773,2859,1354,1951,2799,2213,2831,845,1058,2656,1205,441,823,1261,2874,694,937,1579,122,324,1226,917,381,552,427,1156,2763,665,1386,771,1736,561,2475,408,2429,234,1639,2377,2467,337,1774,877,294,290,185,1945,2725,2243,1576,2700,1544,709,2824,1213,2367,182,103,292,1559,296,1690,1510,717,1832,1054,1137,1252,929,1090,2115,1565,784,779,1173,9,1030,231,1363,942,2544,2009,1859,869,2513,2023,1934,1170,2776,2016,1381,222,1198,1706,1633,2131,1201,735,719,1763,1752,586,2044,1320,1836,2124,2267,1718,2154,1757,554,2249,2712,641,2476,2189,451,1414,1295,1294,13,2014,2583,137,1808,435,1959,2163,1641,431,2340,1900,1142,367,1614,2425,1270,1246,567,1133,988,132,904,880,2364,2287,1347,1007,1353,2907,2571,1220,2372,1993,40,1172,671,1243,138,1644,834,400,2038,2294,2797,209,1303,1412,139,42,1983,2298,2409,1573,1307,1044,1967,2578,436,919,2562,1845,478,2728,690,212,2545,837,2870,387,164,2842,785,792,1166,2669,1948,1376,2536,282,2370,2445,184,422,527,2639,1415,2539,2710,1241,1046,2758,2070,1177,1991,223,1380,2732,407,144,844,595,602,1194,2564,398,1436,452,30,2012,2505,1853,2376,466,2347,1123,1016,1088,1002,2226,576,2627,1228,386,2821,240,819,1526,2280,520,81,1987,487,1232,2542,1686,124,2893,1670,322,1665,1506,2210,2374,564,99,1322,1082,455,1296,2339,2808,2918,924,1304,226,2171,1178,828,2838,2003,617,2667,2632,2155,1777,748,443,669,1454,2164,2854,1327,1904,2646,287,813,2248,1891,1274,1356,827,1357,1525,2737,2139,2778,1508,89,2130,1688,1842,2906,2312,23,317,1461,1901,1331,486,1394,907,2075,2133,2022,52,848,605,791,887,491,1366,1674,701,2310,2331,769,1143}
{1949}
Returns: 40106.39949888782
997
{1762,931,2508,1966,1111,1106,506,603,2370,529,715,2602,1362,2757,1731,41,2104,1086,2416,295,2858,1156,2524,2879,1527,1285,537,431,1118,2203,1473,2297,1214,2768,95,1797,1144,2506,2293,902,1710,1388,2059,2098,1704,1088,341,449,2027,108,2123,1885,716,2837,230,2682,2664,1320,1340,1737,1283,1561,2120,367,1384,504,2679,1790,2802,923,1367,1380,1926,1575,2724,389,404,2012,2428,2783,1207,2032,24,1774,1134,1237,593,2820,124,77,2276,1959,849,2535,1181,978,463,1209,2053,846,669,1603,2907,2931,1074,757,1571,253,2928,1489,2090,2728,1687,2725,2707,786,1354,2916,690,130,809,2943,2055,122,934,957,227,2144,511,2367,1888,2715,2853,1748,2443,1405,2134,2130,65,2804,359,2270,167,2380,2675,1456,2,2867,2231,2334,210,2150,2713,2756,2271,1229,1812,205,1511,686,154,973,2318,903,1360,1194,805,926,2633,2223,1832,1696,516,2375,702,1398,627,2854,1912,91,1321,583,2286,1087,2896,2100,1686,1464,2558,1539,1521,413,1401,1007,1359,135,2478,1147,52,693,1983,1806,985,1338,763,2876,1192,2740,2217,1372,656,1099,2412,2705,2984,1280,11,1119,2355,733,1663,771,396,2954,631,372,1120,39,789,162,1056,2874,1018,2696,2787,2311,1726,1066,2329,2830,509,779,475,1055,2862,1258,1642,1948,1062,536,2181,1913,2906,2957,1604,2405,2252,830,2985,1932,817,782,2227,1903,507,2333,773,1345,2347,1221,1950,2016,1163,1266,1562,1708,467,2591,2110,2661,1855,1365,1619,2314,2180,1629,174,2744,1471,2399,741,1706,2096,1344,505,1385,906,922,1028,1982,289,924,884,2761,1759,2041,150,665,2676,231,2483,2918,872,2764,2718,567,1675,1241,2118,1085,2866,2317,852,188,2551,2548,149,2115,499,971,1030,374,982,173,139,868,2160,288,2624,1063,1552,2006,36,1518,747,6,1202,1778,2829,959,2798,1723,143,2865,1921,1592,1410,991,2183,587,2627,1353,547,2080,1681,998,1188,342,1810,2128,1924,791,921,1492,898,2729,2948,2170,2779,2748,1185,2988,2637,2212,1389,2544,1658,955,617,327,1852,1462,1995,560,1813,116,427,447,1463,2491,1835,1738,753,2547,2290,1784,601,2899,2991,2455,2117,270,1042,1611,1964,554,2084,2353,416,438,2254,1554,1102,724,1303,970,2060,2125,2803,1307,615,2848,1545,1158,947,2018,1061,2248,857,2173,348,878,1566,2023,250,2527,351,1907,471,1304,1172,2349,2528,49,633,2585,2521,1311,2686,211,2712,1310,974,2738,1225,1402,1458,1301,897,2612,1047,1953,862,2397,2656,366,1366,1553,2606,495,152,1920,1490,2163,571,765,818,394,2429,2185,491,532,2592,2383,561,1219,284,680,1875,1143,1352,589,1802,51,1075,562,2531,1654,96,2860,1137,910,2153,2101,2690,841,78,2309,2404,854,586,2198,2166,606,761,513,2093,683,1684,115,2175,350,1786,831,5,1155,2598,2698,2189,1601,2064,935,804,368,12,2439,1916,1972,1949,1718,1701,1873,2073,2337,1224,2275,2500,988,2649,1112,2733,398,2643,687,1758,92,1502,2833,1572,2795,228,1751,2941,125,2456,31,653,890,565,2000,2365,2143,1461,478,1811,212,2573,1781,2774,2826,1043,2501,2902,1822,2840,578,968,498,689,590,1298,2384,760,2225,2901,2683,482,2514,1152,1752,1656,2976,1725,2324,2082,2009,2302,1930,2366,1095,94,1757,271,264,242,236,1764,2211,354,2645,1218,2344,883,1175,1341,466,706,362,1476,783,1425,1355,2743,1695,2923,1077,81,252,1082,2897,14,2552,1318,287,2636,2564,2072,2727,2660,319,1624,2409,1635,1530,2010,530,677,1272,2742,1247,856,1426,1944,1674,160,355,265,147,1189,121,1886,1115,2530,2800,1276,1717,74,1988,1524,2782,1291,497,820,2291,1625,2864,1578,795,519,2411,1005,762,1973,2464,1968,233,636,1627,1532,1331,2447,2357,266,1029,2095,2972,592,2427,2272,2075,851,1433,2177,896,44,2872,2533,1429,1632,1315,2155,46,2233,2595,914,1053,2161,641,2373,1690,2580,2043,1878,315,2823,1665,333,1929,580,2619,2394,1904,723,13,605,533,552,1378,2124,2812,1108,165,2880,736,2232,1339,320,1255,2781,347,176,2622,500,1230,101,292,2940,1250,1054,558,425,53,117,1248,2283,2279,1481,574,110,649,10,2021,750,917,218,1792,2752,2821,975,1765,2422,1606,483,1306,1094,170,428,2670,1937,2335,2360,1542,2199,576,2711,144,866,2735,363,1125,905,1565,2737,2845,2249,2560,1412,1073,625,758,28,1711,2244,2597,2426,1467,1014,2174,2103,564,1080,995,2469,2838,2640,577,718,2111,1622,2538,1688,836,1850,2091,100,2910,1980,545,213,2827,1448,1721,255,1933,2751,1350,2057,384,488,2025,728,2442,2546,392,196,1791,816,2978,2401,2944,146,2219,1020,1130,2188,797,613,1676,190,1479,1488,1016,2033,1220,2251,1243,2811,722,920,1083,71,1242,2325,1470,1179,1990,2850,2989,1558,1939,1060,1238,588,470,1322,1845,69,929,1512,369,2693,1254,40,1296,1755,1010,2794,2190,668,879,2895,698,2316,618,2631,1265,2259,655,1183,2468,810,645,2828,2568,1332,691,1614,1037,1501,2651,1534,1834,1443,2567,919,1516,305,2396,2448,1858,2883,1196,442,1140,1327,2678,1217,97,1506,1525,98,863,638,2460,2145,1971,1416,1979,660,1712,1954,1052,1569,2242,2342,1211,66,1422,133,397,2195,1059,2868,2888,2308,2108,2474}
{2977}
Returns: 40620.10439978955
999
{2619,351,654,903,706,184,2193,2168,2347,579,2667,1323,1853,384,2929,2117,2580,1991,2152,729,2135,1721,2725,1978,2570,717,181,566,2987,1176,2442,1552,1579,1535,1693,2525,1783,2567,1178,1513,1303,59,2192,2789,734,178,2682,1220,1673,2553,2054,1659,1577,662,1628,279,283,2927,1740,1052,2178,407,607,2973,1199,853,1605,2952,1955,168,733,609,2482,1458,157,2780,2147,2552,125,62,480,467,513,870,946,2954,844,1035,139,2480,2392,2885,1420,1148,699,1004,2701,2156,2737,201,716,1731,1511,1450,2720,115,1099,830,295,2208,1025,709,303,1916,2006,2702,2269,938,1562,1546,971,2739,1344,377,246,2376,2698,2212,1653,652,166,994,1143,284,2050,2541,643,1282,2759,762,397,840,2742,175,2514,1141,2861,1818,249,1014,642,1975,1369,1108,1351,1173,913,2633,90,112,1751,65,2163,1736,2472,1726,1530,1029,2550,66,113,2683,2187,2302,1476,553,1283,1332,732,1180,2628,1631,1877,2047,681,2085,1947,676,1708,940,930,327,2415,1923,1815,450,2520,459,2971,1548,1832,263,1541,2304,2409,540,294,1662,1032,2842,2118,2813,2188,975,517,1792,915,1436,2526,2459,370,1626,1844,374,2951,430,715,1138,2412,1301,2335,854,806,2260,1290,2769,1411,2230,345,2274,1684,2361,214,1130,2432,1899,2437,1490,2801,772,142,823,2397,2270,260,1583,1682,2747,261,2149,905,196,99,1074,1896,1608,683,572,1397,2527,2175,1181,2805,2410,186,2591,409,335,2323,2280,1586,1,2271,401,1443,1461,808,2350,1371,2848,1270,961,31,1192,937,1418,1977,1698,803,2898,2032,1009,2046,774,2681,1910,49,2020,1050,1451,2555,2738,1724,121,1613,2510,1284,1646,1120,1246,2308,907,2581,1911,2283,2209,1460,221,1017,1320,1041,560,953,1069,1427,545,369,956,832,2201,800,2111,1612,361,1312,2024,1980,758,1042,2722,763,939,2243,375,679,1376,2284,904,2531,2026,1169,1610,1730,2512,1497,2344,445,885,1859,916,2202,1413,1398,2579,524,1728,1213,1125,2079,2418,770,1409,667,569,2924,266,2179,841,2812,2073,478,2231,1836,2452,386,2023,1201,1763,630,991,670,1505,2096,2021,1903,114,2095,2429,2990,333,1098,1652,1296,1547,2417,330,2862,1175,2918,1571,1738,1525,231,1788,2060,1710,1095,1680,1777,1377,1483,2320,977,1217,2626,2219,1837,2891,2131,1897,972,2858,2563,810,2218,451,594,559,2290,1817,923,1566,2616,1744,1048,619,1531,911,872,2936,2599,21,1510,1333,1040,2666,1488,2405,2818,1210,1359,912,1308,1139,416,1037,1198,2434,2451,1357,398,816,2522,194,312,1595,2564,587,2779,1905,1539,2399,1093,2596,530,1533,32,1936,2250,30,2766,1191,318,1292,2013,1447,92,85,1350,1167,1121,570,996,2015,1829,40,1047,2446,2523,641,33,2872,1697,906,549,1922,725,1015,1868,1386,2585,1406,1622,1328,2164,2109,255,183,2471,950,1865,1240,1395,1337,455,934,664,2939,2967,210,1542,983,1912,110,2395,1151,393,202,2895,1516,2439,2286,785,2884,268,501,2625,1056,826,2594,2061,899,1391,243,2902,814,2771,2595,711,41,2815,104,2281,24,2371,2313,1831,394,2317,1570,1746,1140,599,1996,109,1449,1353,984,35,2315,248,1253,1426,2207,920,1299,1648,77,1669,1611,2637,1503,1604,275,2385,1133,2787,960,138,289,1044,882,486,2282,2668,835,702,187,2557,1230,786,2825,1400,174,799,2828,1184,1805,1514,2473,1128,435,2882,2016,1399,2319,232,1459,767,752,205,1053,1144,2110,98,358,1703,2303,2142,1360,1563,807,2645,2678,1917,2428,2454,2125,2172,1691,2811,834,2074,2731,2986,2332,1118,134,1927,1984,306,1211,2889,2346,34,156,698,29,106,476,532,1076,2752,2225,2048,2907,604,2368,1310,1262,2947,1030,831,534,1723,446,158,2089,1208,1071,1063,2982,2236,2215,2381,2903,2856,23,1272,2700,1163,308,2530,1658,677,2877,38,2671,2653,859,1862,2449,172,827,1006,2873,1317,2528,74,976,498,2384,769,1215,1439,2674,1686,1790,489,1202,824,2339,925,1833,2312,328,1765,2425,1083,355,1849,1643,2663,2690,2360,443,2615,209,20,2435,1285,721,672,558,671,1553,1590,310,989,2322,2507,621,2069,1085,2676,2597,2463,887,1260,2732,120,969,2083,2652,1878,2630,957,2560,1251,2753,1062,427,514,2038,2122,378,2712,605,869,1507,2775,2977,2837,1649,1331,2718,617,2433,1068,492,693,2694,2009,1219,1549,1247,982,2640,2022,1000,1498,1010,597,1860,1315,2224,922,2278,1942,505,1156,1840,1408,788,152,1887,669,1617,171,2826,2004,1081,436,2900,1716,2740,1801,1126,2000,516,2237,1722,2329,1012,1276,985,576,902,458,518,1565,2098,2816,2246,2251,1527,1971,433,1674,970,12,2730,2844,2298,1189,44,1935,2926,1685,742,2115,2604,1644,67,454,2485,1480,2483,2843,466,1528,1116,1471,1380,80,1090,136,494,1968,564,1856,2084,914,2516,2515,395,2734,75,189,2326,1678,334,2922,2184,2561,2948,1532,55,1160,1890,2062,1147,1403,1110,2356,2254,2378,898,1281,2139,373,2806,2136,2864,684,2493,593,1747,1521,1345,2056,2053,794,1781,1672,1594,2153,302,2213,692,272,828,1904,129,1895,1367,18,2513,1607,743,2751,2504,1854,966,2920,988,861,873,258,1735,1405,2365,2407,2790,1983,768,479,2762,563,992,638,1884,2457,2396,2170,1803,1197,1438,973}
{1422}
Returns: 40713.583752574086
980
{807,2411,2018,224,527,2304,75,1352,2232,1613,2382,201,50,1111,1722,2334,2639,556,497,348,2719,114,1082,1428,815,931,104,1964,1837,2306,1181,101,560,1971,762,785,2321,2513,930,2004,504,686,1788,1381,2650,2548,802,1526,645,1628,2461,19,2133,2183,2627,1327,1702,1675,1264,468,714,659,1691,1546,2892,1851,1686,2249,2226,1208,2707,2297,975,273,2599,752,2743,1873,1571,325,1771,2686,2254,1612,2802,1512,668,2920,1766,218,1614,799,337,493,787,2519,2518,2642,2277,1792,958,1210,1242,1950,324,653,2629,1150,1543,600,843,1920,1864,271,893,2023,2631,2579,2468,1521,460,2503,1146,919,649,2080,1831,933,403,625,2364,1748,2930,2768,152,2257,1764,728,2932,2782,928,2534,2757,2750,2632,1258,2487,1129,960,1238,1639,2595,1902,1679,1563,2194,2785,1462,1124,1703,1002,2106,1533,357,175,544,2081,1517,1069,564,513,1185,2035,2149,2125,2065,2395,2459,583,214,1706,2170,144,2913,2540,329,1834,2612,2800,1073,1916,2648,210,682,362,1735,1584,997,694,558,1218,1267,2897,1232,522,2504,2758,586,449,1104,2637,2042,854,940,355,1901,616,82,1090,2621,1987,2711,970,1360,2598,180,1877,2544,744,1061,1115,681,584,536,2248,2603,1954,951,183,2470,1553,2679,2075,766,380,1052,1557,2745,2843,1708,2884,2349,2201,587,664,2400,2923,2329,678,1132,793,2458,2270,1808,1994,863,393,2654,2674,1769,1368,1583,1662,1455,2501,814,2423,249,293,611,1001,1308,1561,2555,532,809,1485,829,486,620,2764,296,2739,372,2611,1753,1640,666,3,108,1463,1426,2736,2620,1407,733,831,2355,1027,858,1066,1997,2191,2653,320,1749,425,1588,409,617,1280,1910,161,1540,1048,1858,1473,995,1620,2522,1967,1948,251,2827,1710,1783,585,1367,2788,2857,442,1560,1770,46,633,2193,2908,2886,518,2891,1494,2911,597,1315,77,1835,2236,465,2474,502,2448,2589,1432,1531,178,1488,1694,206,531,345,282,1961,2422,596,957,1839,2868,782,2717,2045,106,2765,2781,2481,1741,1815,2906,2790,965,1108,1039,2120,2606,392,1505,1589,713,1214,2727,1833,2692,926,2384,2530,2926,2294,2673,719,2929,2596,2040,1098,315,226,1995,2666,2250,1297,2147,1963,1012,1893,1866,2854,1558,291,1353,2020,1402,698,334,680,870,1609,1087,1767,2890,422,499,1522,2074,103,1187,654,689,2520,2619,2794,1155,576,447,302,569,7,1047,220,2723,1711,1040,1506,1120,2050,2224,2145,1219,61,642,267,300,1637,670,2492,2714,434,1336,2052,2128,374,316,143,328,1337,648,761,1677,1329,1362,2113,2185,1285,828,1491,2558,445,615,1932,1421,270,4,2887,1236,512,859,223,276,2815,2822,1032,332,2780,1323,2160,2756,1962,753,880,245,1892,1351,1064,113,2865,905,2682,591,74,2341,850,2845,797,921,938,2938,578,1376,463,181,2574,2836,529,1600,1290,987,1909,1431,339,309,2787,1528,1919,2905,1095,621,1936,2401,1446,779,538,1216,868,1030,805,1093,1028,834,1234,2880,1333,107,433,1744,492,314,2263,2038,2814,1599,2431,189,2803,2478,2316,631,2495,1123,2554,417,1507,1705,1673,2635,1646,1319,2797,2345,2735,1934,100,1915,69,2571,1357,1173,1253,221,853,2659,1918,480,1085,247,800,2582,1406,31,593,1775,2066,94,2746,1757,2523,1413,2502,1645,1541,737,2300,261,464,2410,2533,1656,2056,1690,2000,1713,2441,2239,1304,2587,2460,1791,2371,1469,1804,288,208,1213,736,1464,1100,2092,2190,1389,783,283,1200,1475,1731,777,2195,830,1222,129,20,1347,1604,287,1958,2332,2895,568,1117,371,1897,490,1051,2505,1926,462,2076,1401,1379,729,2233,1147,2315,96,2385,1704,165,878,438,1940,1823,1996,1906,1884,2390,452,2783,1887,2197,1777,1014,1433,257,1322,277,1156,450,1933,1794,190,1780,2477,56,1502,1520,2326,1841,1580,2156,2340,2292,855,186,2760,1151,2107,786,794,10,146,953,2200,1508,1418,2535,241,2175,1259,2282,2014,1029,1617,204,2585,1739,1576,1364,1689,983,1287,2733,1387,2710,228,76,2566,603,2497,1627,2759,2276,1382,1378,1059,2583,359,2769,1768,1861,844,1409,1761,533,2542,222,1186,2102,2009,2489,592,1193,580,685,312,1080,2577,2344,2561,2117,1054,2266,272,609,2022,1330,1425,2634,1201,2246,1602,1666,405,2531,1732,1683,2912,1828,2077,639,1707,2447,1785,1371,548,358,294,2399,375,934,2114,2086,1607,2308,278,423,2335,1435,1183,622,43,2324,1573,2809,1497,1746,2729,1840,187,2093,305,791,869,1738,1942,1930,1857,750,1338,2917,454,1215,137,16,1989,1197,1803,2192,1292,528,179,846,1377,1481,2105,1010,663,1149,2721,131,30,1089,2203,1760,1727,550,1990,2269,962,2529,366,1555,2907,351,2150,2826,1049,1050,2413,2694,2708,2645,2427,2429,780,1460,2526,49,641,1723,1471,582,1257,795,1524,1597,2446,1542,1055,2514,671,2870,2261,1789,1618,2237,1116,2712,1189,1825,2012,1812,1513,125,2366,2656,185,748,1784,1544,167,1729,676,2167,2813,2036,2919,172,2146,2633,2469,2874,2630,520,2664,389,1141,2607,1943,1133,2494,2852,646,1529,542,169,1975,856,1388,760,683,1778,1300,1501,1265,406,2352,2356,2594,2786,1037,1538,2466,2442,2189,1479}
{}
Returns: 39826.506611931174
980
{1977,881,1581,489,196,2223,429,2045,2007,2900,1498,610,501,1174,754,2847,1728,151,1501,1283,649,122,1420,141,387,1499,1147,622,475,219,2232,479,389,2437,836,2115,2158,2929,2004,1823,2582,353,942,271,1615,148,2810,717,677,2461,621,394,2688,1849,2591,2706,2155,1347,2834,1418,1140,1704,2352,575,1538,2514,917,2436,2793,970,1815,2508,1590,1867,680,1917,2692,345,2097,2247,1473,1036,2645,488,281,865,2830,1611,518,886,664,1725,2780,53,40,2911,2646,2552,1991,1384,536,1763,2927,1732,2000,1749,210,1276,578,285,1954,118,1493,2002,1636,1766,293,1367,1715,1897,1404,243,1679,1450,1644,403,153,2303,1795,288,2091,2236,1213,405,82,2311,620,2883,1997,808,733,69,1349,1200,77,410,2655,2854,2459,1836,1129,2563,1555,1238,49,2308,897,707,862,121,2058,381,1154,820,623,1145,1449,2458,722,1569,2474,1832,1007,205,1104,80,2577,1136,2496,192,2464,406,2321,1634,1196,436,2594,809,2391,1452,2653,70,2696,1,2079,1272,2307,2630,2843,85,2763,1796,1467,478,2912,969,895,1928,2190,2590,992,2188,2462,362,2537,2151,1516,1099,2171,521,1039,1976,2245,2083,1735,2825,2528,735,2416,1717,101,1989,2105,318,2426,384,1707,891,35,1434,1202,2129,2520,2853,2500,432,2313,1262,2831,2088,2925,10,1049,2370,165,1423,1607,1978,2669,746,2359,2641,1840,1195,2797,2767,1629,1894,1240,1046,1641,1557,238,2017,2870,1170,327,446,1103,467,546,5,606,186,1217,138,1852,878,228,863,2196,1169,1786,2118,2396,390,2121,1743,815,1294,1791,1189,472,2632,2065,1627,2665,1983,204,445,2560,946,2795,691,1370,190,1121,1172,1431,2374,944,2933,2255,380,2242,2372,1160,291,2829,391,1779,755,1260,167,37,2856,879,1695,1073,2282,2576,1946,1487,2080,971,607,1390,2048,2378,2735,212,1091,2312,1568,2580,916,1081,1419,2766,2589,1417,2468,2788,1087,532,1871,1013,1355,776,2545,1165,1639,1776,2090,1246,1985,2612,2637,843,2587,1806,759,2361,1597,1181,1960,1863,34,2268,1130,451,1197,2625,1144,2064,1126,1719,1232,1515,1122,1661,54,2629,2246,494,1550,1738,1316,2420,1334,145,2782,2776,2873,2435,2266,2671,1543,2063,1741,2482,1535,705,1676,1041,2844,1694,1123,2730,2513,632,2470,1053,1424,2562,1058,180,519,2784,2187,1858,2785,310,1541,2481,2099,2144,1810,1720,2685,830,411,2918,2861,719,497,2664,14,2165,1489,2693,1192,1563,2259,2297,52,51,2888,2547,1553,980,968,2863,2601,2804,2828,2886,1387,55,1248,1211,2296,2796,570,2541,1416,1953,1062,558,810,1643,2124,2414,1655,2413,2153,455,1042,1092,2865,19,413,1966,75,1645,1396,2559,1011,797,748,1937,1242,1510,1296,692,738,2650,834,2815,2592,1851,1913,1826,2638,2570,257,764,2736,412,1684,1591,2722,1631,169,137,1586,2050,559,1330,1638,1944,2904,636,2164,1135,1650,847,1236,595,1093,2848,1117,634,2131,301,998,376,98,2031,1369,64,2555,2087,198,1968,670,383,2551,1825,1095,2273,1761,2611,605,2126,1235,2711,1312,1654,1560,1884,2054,2506,2180,344,2250,84,2762,2740,2845,2544,170,2330,1696,860,1143,1208,766,1085,2037,326,2534,136,2876,39,365,2542,1988,321,1265,2877,875,2323,1004,2483,2794,780,714,225,1190,1261,749,1069,1801,1911,1149,156,1921,2901,994,1657,966,308,1329,1540,1325,115,1056,1729,2875,2885,569,1146,425,2280,134,1491,2125,1906,1805,1887,1376,2783,871,1020,1247,1742,16,1168,1471,734,1640,514,1363,1576,561,816,1440,2133,1289,2635,1750,116,1892,2832,979,908,1831,2287,473,2862,864,1483,361,2724,499,1068,185,909,2639,120,718,363,1975,2460,357,2754,229,160,143,333,1987,726,2387,2710,1218,2290,1210,319,658,493,61,1847,2410,435,1184,1539,1019,1071,874,1405,2100,2503,2168,1890,444,1386,1371,392,2557,1979,2807,220,981,583,461,2075,409,1111,1051,841,2751,1619,869,1531,1333,2523,2161,990,382,1758,687,709,637,2937,679,2456,2233,2309,2938,1270,784,1901,1746,2936,428,1314,934,1153,2249,2787,1307,2484,2499,1070,1850,1957,1674,904,2535,736,111,785,1769,2518,1630,2369,2855,1414,2397,1226,762,1029,2172,844,2907,1023,1413,125,2568,287,1447,1842,2733,753,654,42,2681,355,522,468,2277,30,1131,2899,1273,1596,2206,563,1839,1259,2111,2749,1379,2884,2349,921,18,2015,1159,693,1949,124,702,2615,2491,1594,2565,1733,1592,96,1868,1496,983,2366,474,2140,466,683,663,2395,592,2284,2734,1517,1582,1685,1793,1882,270,1291,194,1562,2756,1632,112,779,2519,1373,93,2906,1971,555,2055,1554,1453,2716,2340,108,460,2618,1006,375,2337,745,1950,62,1112,1086,2322,1428,985,2701,1014,1671,166,1843,805,1264,1784,1096,814,1800,1604,1804,240,2123,2310,1918,1577,1872,2109,2014,230,2890,1814,1723,2116,650,71,1237,1366,1748,866,296,2465,894,1751,1873,1257,1511,1559,1341,2798,2597,1675,699,2404,2822,1930,328,511,1703,993,1175,739,2939,2808,1504,2643,1642,2346,531,1754,1065,2738,2392,1778,2614,175,2074,962,2475,132,848,1482,1345,177,1904,2864,716,1995,1194,1519,1231,2529,1819,1155,1935,2261}
{}
Returns: 39826.506611931174
981
{1359,2455,1599,33,309,344,1009,1996,1029,69,1214,1769,571,2030,1235,1104,388,627,448,2877,368,1370,2660,885,1275,2020,2359,2524,2527,2324,49,1618,2187,1028,997,2598,2584,429,615,1348,888,1805,347,1317,2253,2685,1634,581,1831,257,451,318,2827,2823,2151,1485,2267,340,1339,711,905,2355,834,440,1711,1581,183,364,596,2309,2351,1366,971,2446,1304,438,30,1820,510,2563,160,833,1921,1970,2429,2637,2259,511,1624,303,399,2641,1568,604,1810,2391,2469,2149,1558,1264,1461,910,950,1252,2231,1544,2805,2122,1427,2930,2580,1041,2191,124,978,2280,2704,780,2109,1883,972,800,576,1019,1858,1263,724,52,588,688,705,200,2013,514,2179,456,2517,1796,645,2325,903,111,2680,1674,2468,2908,54,1819,428,299,1855,1234,1369,708,176,2148,4,912,1566,1288,1240,2105,1579,233,2696,2615,2697,2100,238,1758,1373,2476,2943,413,72,2796,1881,763,87,861,2235,1207,1047,2333,1404,2045,1460,2134,1735,697,643,1564,1801,692,2225,259,2289,333,1777,95,1042,656,1661,2085,2679,1238,1198,2400,1940,1383,410,2193,1973,690,419,684,1909,2666,1968,2098,836,1345,1885,1477,2809,2801,1882,2710,827,1385,2914,1212,1754,1151,1456,1728,1560,1049,535,922,2585,2553,648,1800,2556,668,2503,1569,1916,255,526,991,86,901,1341,878,404,2596,1620,358,2878,2228,2155,1872,517,2813,559,2363,806,1593,254,1823,1064,1803,865,1087,2308,2700,1582,2375,1670,1403,1500,1276,2882,1837,881,406,17,577,931,2305,2140,2262,1971,1753,1430,258,2220,1309,1836,51,1665,2651,1672,2846,1398,2530,1756,226,1896,359,1280,2091,1442,132,1890,2619,2374,338,835,2706,119,1617,497,2770,751,1647,1684,988,2669,212,414,976,1918,1340,1967,1880,2304,1365,2038,2024,1408,229,114,1114,641,2798,2674,818,2893,1364,37,1224,2911,2354,2379,2137,1668,2215,1732,386,1899,2173,306,750,1025,1571,1511,2758,2529,1478,349,199,2233,1930,2298,2349,2890,2276,1604,2491,1959,755,2196,839,1875,1709,1394,1865,2695,1784,567,237,515,42,2586,2074,1412,1980,624,485,2835,1062,1825,886,36,464,2168,1205,623,191,251,285,1080,2794,1849,1935,1616,593,1559,894,1932,1396,2902,897,2219,1257,784,552,260,2746,2486,2342,777,2292,2008,809,241,2707,1142,2111,1841,57,2766,2557,532,1434,1952,2489,1751,2886,2542,1795,1223,2116,1856,219,211,1904,820,2771,129,1643,507,2924,1656,2675,67,2572,13,1944,2622,612,2183,1957,1141,1175,1633,2494,88,454,859,350,236,1829,1747,509,2203,941,1230,12,1553,2614,465,2500,2037,1495,2816,2734,1103,1219,2748,496,740,2001,495,2213,2129,1037,1330,323,1744,320,1546,152,2781,2293,1555,1243,2244,1117,447,2618,1266,945,1525,1300,2048,353,1644,717,1977,204,148,536,1044,394,2800,2413,1031,2785,939,2499,2257,2720,2569,916,2462,1015,113,2358,1851,876,2323,2472,2603,436,995,345,1186,990,1247,2073,2268,1225,873,982,1163,2139,2834,1508,1515,2492,2653,382,1792,2434,491,1847,1115,220,2392,1075,1406,1590,2838,2300,1993,294,1063,1480,94,1742,2895,432,1658,1939,923,1232,1229,2232,2285,145,1635,143,524,2042,2624,1679,828,518,2652,1720,1781,1556,2383,242,2722,390,475,620,2528,2786,2107,715,2737,1343,2380,934,2843,1928,1479,637,476,1884,154,2136,2727,2078,1282,223,2673,1538,202,1148,2484,2070,2299,964,548,2350,1066,874,1231,1154,1958,8,1292,2343,611,2779,890,2928,1297,2356,2287,2103,2497,1133,2426,1458,218,823,1879,1718,2543,683,636,653,2656,1997,1018,2131,1492,373,2060,2942,123,2555,1891,2160,1328,2837,949,59,1415,2123,1423,2848,322,1729,10,2918,2241,969,261,2906,1039,2747,15,2295,1750,986,116,2327,504,2127,1014,1312,9,365,1005,676,1170,1204,1894,1380,1791,1446,1417,669,461,446,1310,2176,681,1594,1248,1342,2457,142,686,1714,680,1268,2935,2039,2605,1746,1956,1256,1326,794,936,1963,1418,2346,395,2904,1765,2625,2479,2236,2901,268,1992,993,2736,295,1338,1501,2658,2266,987,1760,2425,149,2441,2028,455,811,2106,470,2683,1475,1741,2867,1294,1000,1121,815,1136,2361,1036,1876,1673,858,848,2849,880,2613,613,458,411,1149,2623,2422,2560,291,402,896,2456,2621,2270,84,11,271,2822,1898,850,1654,1577,2807,21,2777,1487,513,789,2126,2018,687,1924,2286,2204,1591,1001,759,1089,1703,1601,1274,1213,1710,1126,2184,2382,1421,2154,2847,774,156,2005,1962,2595,287,731,659,2570,1788,2687,2281,1102,2728,1131,2802,1687,22,166,2080,2731,1271,822,1724,2002,904,68,107,554,101,2929,348,1947,829,1585,492,439,992,2326,1592,2681,360,2533,63,787,300,366,908,2640,1892,90,1169,762,816,1743,288,1083,2626,2197,2938,1269,2714,467,103,2089,2082,1168,2873,449,1201,346,983,1664,328,1739,1249,771,314,2606,2004,1638,1989,2424,155,2910,370,2428,58,2589,2177,851,1978,1982,2735,2143,574,2616,1550,2741,244,647,2762,250,389,1551,301,1794,1733,1504,472,231,2879,367,1983,1010,1167,1766,1216,1846,2033,361,1324,1120,2104,1155,2133,2897,1459,1696,2096,1090}
{}
Returns: 39873.140158553055
999
{2100,278,1886,57,140,2059,333,1306,364,84,2692,2930,438,1411,2448,205,1851,1307,1225,1542,344,2015,2785,1096,810,2933,1572,913,1834,702,1727,778,480,2360,331,2925,110,895,1526,2894,687,2379,2312,370,249,226,704,1991,162,1308,64,2189,2584,1281,439,1604,813,2675,2313,1854,2044,1055,416,1394,1624,1490,932,2177,339,831,651,2890,2321,1465,1154,2134,1284,1997,1497,2519,1187,1538,2036,70,2153,1395,24,2853,2694,1569,566,2923,1441,2295,2260,2560,2740,2027,2201,1920,1512,274,2693,1063,1896,2451,2445,137,215,1712,2049,2620,2482,2115,2772,1669,1049,1243,2914,1698,1583,2106,1584,2649,632,429,1644,2671,1840,2810,1044,2938,350,236,1114,1765,1858,2493,2460,2926,2329,1959,2205,849,2557,1626,2368,384,2073,374,982,1646,1892,1275,1048,434,1629,389,2967,1508,1258,1022,1271,2673,2238,2589,2624,356,2769,2488,811,551,2996,1689,505,59,1006,553,1303,821,382,1564,172,857,216,2886,2181,1194,1573,1038,243,343,1244,86,129,2650,689,2178,2474,2877,2908,467,2438,435,1240,1252,1837,362,322,2041,1352,2095,953,1543,2174,950,1976,2403,191,9,2554,2768,2749,1890,192,1197,1122,2866,1231,663,879,2129,2150,2992,1578,2318,152,36,1349,96,2537,2123,2240,1830,372,763,1498,1568,1758,992,1658,108,1069,1042,2547,2903,1683,705,2776,1987,2729,2795,563,2721,2885,1146,2670,1927,2453,713,1065,2154,394,1344,681,2227,2821,1628,1409,242,290,1299,2898,2187,1192,1544,544,2245,2746,1304,1216,988,2048,1932,223,142,1141,2239,859,1916,2439,1338,1289,1156,837,2634,1505,959,1287,936,2818,1767,1751,1773,38,1236,701,1178,706,676,570,2541,211,2348,1356,2819,1860,1424,2627,2272,1480,2208,742,2032,2157,484,1605,1121,1838,202,440,827,2517,1994,255,450,2752,2101,828,475,2688,2469,1871,1553,2944,2559,20,2068,490,677,2945,2366,633,2283,2830,2856,1905,552,158,1843,51,2233,2436,1847,124,2462,2715,159,169,944,388,2588,1484,391,2807,1950,1362,2565,2324,593,468,2719,2114,2860,1200,2248,2509,2849,775,635,1921,614,510,1070,56,47,2709,1134,1443,1405,482,2739,918,433,30,2017,2216,1632,1230,2511,2718,1164,5,2042,564,1083,2824,1112,2347,571,2806,1268,2501,2632,864,573,919,1612,156,409,2608,229,1984,1783,2835,2302,631,731,1614,2358,613,233,1549,2257,1566,2939,692,1577,1771,592,2429,1714,1651,2212,2684,688,1681,2139,2562,323,2722,2524,755,2305,2556,799,1483,2182,792,1174,2662,1160,712,938,1,294,1340,2292,2336,2745,2218,1093,2782,2994,1250,1108,1237,456,1358,2874,976,2959,143,296,739,1224,1710,803,1085,213,1760,768,2919,1034,1855,2514,583,887,819,1711,491,1260,801,1470,2728,2954,277,2653,2354,288,2621,1220,2213,732,1509,521,2076,2946,1537,1704,2043,2677,2707,2686,1328,1190,2277,599,1814,264,2889,2418,13,379,840,2891,1562,2489,1764,1812,882,2455,1599,1222,1795,1685,1274,545,1014,2780,1012,2121,167,785,269,812,342,1186,2355,1471,1897,1985,276,335,911,418,669,17,2440,402,1361,2857,1037,2915,758,148,2091,678,577,1745,1462,1940,1245,1388,2864,408,1752,1171,1472,722,1951,2334,665,528,2093,1125,1283,2147,1724,1379,103,2523,464,1555,258,1099,2726,685,2977,2550,630,2791,830,899,977,285,820,2478,1128,1491,1774,952,984,2652,1713,146,2345,927,2464,645,2259,2103,2982,2774,531,1368,2763,1318,2794,1657,1986,1364,2097,2596,1923,2457,1949,2298,2725,2431,100,824,2394,2799,2326,2426,1214,1086,1393,1463,111,2931,25,594,268,546,2475,2720,1998,58,540,2963,1290,1982,2916,2096,734,2274,1030,2492,2936,193,772,1401,2190,634,860,2534,2244,2080,1020,2247,2846,1501,321,1054,648,487,756,437,581,320,1990,2025,587,925,690,2081,1687,2191,2833,1630,2447,981,2467,449,221,99,403,1209,682,79,2204,466,640,1026,29,181,1276,1653,807,1656,2063,1386,444,2841,1665,940,891,133,295,197,2870,2845,195,1223,2267,596,1548,2640,2882,1784,804,1551,75,2034,324,312,2271,348,499,494,2771,2538,2362,2623,904,1314,1170,1382,2964,1285,715,200,2146,2234,2461,2071,245,897,1791,716,425,574,2995,537,1090,1750,1021,1576,800,1058,291,1127,872,2176,1072,2875,2085,1701,1763,2499,214,1645,2120,609,782,74,2253,1232,1607,40,1707,719,377,2369,1184,1866,733,1201,754,508,2088,2708,2416,2001,2452,2396,2328,1989,380,1793,2000,2050,2540,2883,683,2786,1111,1479,452,1532,818,1297,991,1253,2506,1937,1263,1387,2741,2365,115,1381,2723,443,1591,2192,2631,575,519,392,806,2854,2972,1023,1931,1810,2155,502,1092,446,119,1098,2427,798,776,1136,2587,7,270,2583,1969,224,1820,2802,92,1805,2004,2118,326,781,2809,1946,1507,1648,922,1262,783,2070,1205,2046,1103,796,2021,520,2209,49,1056,1720,1936,1115,1326,608,2851,675,2602,1883,1145,465,31,1137,2991,483,2409,2072,1598,2490,32,1797,1444,1221,225,1446,906,2193,1550,1613,1286,1410,2521,1015,582,1423,2691,2287,2804,990,1874,1884,1655,2678,2375,1829,2308,2293,2767,62,2773,368,1342,419,2053,2843,2311,2985,903,1833,1436,695,2801,935,1786,2094,2359,1536,1835,2376,1330}
{}
Returns: 40713.583752574086
987
{1244,1747,1607,2310,2592,2018,1652,967,945,507,493,1235,2614,1923,2485,1040,737,1591,1209,2562,134,1374,2491,1174,1201,1841,2412,2523,1094,2213,2161,2273,2533,832,1122,2748,1323,2632,338,13,670,862,528,1617,2154,841,611,2,292,1854,1788,1926,705,439,1543,2418,2119,171,273,1175,29,524,1717,752,566,1261,671,2205,1601,5,1891,1906,411,2386,1699,1026,2813,480,1133,1469,2643,2356,2807,1439,808,1917,1567,1669,325,71,2207,2584,547,948,2828,834,2788,1311,2935,93,1452,2423,1015,2277,883,2798,183,2148,1546,2609,936,1109,1141,2304,1810,541,467,1971,1790,1833,1991,1848,1434,1355,2857,2931,1734,2884,1275,2295,2715,2399,1254,2749,1029,2274,2219,2797,2128,2363,657,1895,2118,2936,7,1300,2016,2591,2396,2451,769,86,874,1334,2397,810,764,702,65,372,283,2229,1181,45,2714,1343,413,1862,985,177,1851,639,66,651,516,1735,677,1551,1482,1241,2945,1665,1930,2774,1685,903,1600,2624,245,2842,2211,1376,1020,2661,1071,2472,1283,2206,2825,1888,1773,582,581,2582,1265,2804,1725,757,986,1400,579,2156,2264,1069,2597,614,1939,789,1612,1050,135,1873,843,1838,1011,2027,36,1549,1897,1176,1522,1671,2882,2819,1378,2389,2951,1677,16,2093,2507,337,2903,1087,1650,1537,1381,1798,1759,2623,1713,2417,1111,720,1065,1192,227,241,1470,1427,94,1892,1352,387,2158,340,2107,1137,2791,101,2178,2873,2650,2060,725,438,672,2312,2172,1157,910,786,1405,77,316,2234,1263,14,342,599,929,2812,615,380,1008,2376,1309,2197,1722,1929,884,147,2500,1690,751,1260,529,1429,1972,2122,649,1820,2364,186,1173,307,1826,1755,2001,2765,2319,1584,2938,2034,2317,170,1757,2847,2404,218,76,1045,113,977,352,2601,2160,1621,2912,1768,483,1294,1966,2654,1102,1372,2307,2642,2163,1651,2681,1488,2316,2621,1901,2255,2636,1996,1204,2943,1106,165,1661,1726,2127,2254,1625,305,191,1558,2498,538,122,167,829,110,213,1517,1215,1269,2544,1316,2133,2779,824,2392,1385,2340,749,25,1039,1443,633,2768,141,2554,2244,282,2583,2930,494,1123,1389,2486,2832,856,1226,306,250,2631,2448,586,1445,2469,1358,62,2037,2941,496,2836,182,1338,2092,1513,1956,1856,2835,359,756,2734,2218,2956,2241,593,310,479,2138,1973,345,921,2925,1117,329,2129,989,514,30,201,1057,2684,168,356,1595,2479,1246,2560,2005,97,872,290,1314,1088,1256,2737,876,108,1831,1869,2415,217,2245,877,2510,1990,2322,1496,851,1683,2103,1886,1406,924,1349,1318,315,2098,2724,2722,2720,747,1448,1965,2848,285,1811,2447,2134,2009,82,296,1579,1207,2740,1247,2587,1312,374,950,1547,1812,1373,925,1021,1390,1684,160,1003,1118,1887,1899,1540,2665,1715,261,1723,2003,2372,2252,1703,1711,308,104,2726,2008,1639,873,154,427,560,526,594,23,1758,739,1689,1881,1080,2687,505,2537,772,624,2094,1411,1251,187,1604,1473,1876,2754,1277,1382,1582,500,2212,449,743,364,1843,1221,753,2546,2595,2099,485,839,1580,2782,2735,2390,2055,1555,723,1306,351,1327,393,2703,2662,2227,2079,1662,2233,525,509,2318,2072,1359,1830,837,1637,1786,125,1481,1066,782,32,2678,2196,2276,1782,2914,1126,2677,2928,711,2410,162,1872,2281,2039,2531,2020,1019,763,2949,1232,972,1299,1113,1908,87,1166,1280,2656,712,2627,934,527,2256,1368,430,1179,2062,1477,2762,2429,2454,1611,4,2877,1139,2407,512,787,1577,434,2260,2111,891,429,2667,1981,73,1910,1446,349,1414,2403,935,2960,1569,2777,259,818,85,795,963,1135,927,2548,2333,947,2011,1267,193,2911,2200,1095,116,2647,2669,247,319,2817,175,403,236,2409,2221,1074,623,519,1792,2575,1708,1919,1370,391,450,1779,1868,294,1018,1161,235,1653,984,632,1704,2168,107,1932,990,530,1392,2916,470,1248,1468,412,417,2321,1127,952,2458,2909,1954,2861,697,354,956,1351,2024,1461,2540,456,1968,2534,1093,1647,1198,2635,2478,1741,2101,1568,2944,207,1333,2337,2315,791,53,1945,98,2015,545,151,1457,2784,770,1589,1997,2496,2033,1271,2856,1319,472,1880,1934,2883,2736,488,2898,746,112,2301,2880,2341,1081,2795,1829,1986,2494,1288,2235,2058,324,2838,847,447,402,459,1610,707,550,1905,2236,998,1365,580,2683,1675,1394,2718,2080,915,1999,400,2473,1332,966,1412,714,258,2600,892,1497,1038,724,1396,1016,1182,630,1803,2547,190,798,2690,2613,478,2126,238,38,2442,2466,1542,1874,232,1237,713,2280,643,1004,320,508,2626,229,2852,136,455,34,805,1670,92,2772,1857,2558,1762,2194,2845,2108,2007,2799,1626,255,654,2032,957,2806,2942,2731,2853,1951,2468,1672,460,1096,612,779,89,1341,2467,2878,2549,1609,1853,2957,1307,453,1274,2450,123,1771,2611,1550,299,1295,10,2375,119,2927,28,2173,2121,2680,180,2190,1515,2525,1044,2460,2270,129,806,2869,1272,735,2829,78,2854,1937,1696,465,813,1819,124,1471,2165,766,923,262,2790,1809,1493,1416,330,390,574,457,704,2921,2513,980,625,2291,2405,801,132,819,1504,2420,223,2477,2054,421,2028,1913,2430,1962,2730,1707,1566,790,774,327,1160,706,2742,1289,2202,2605,603,2117,1970}
{}
Returns: 40153.06964499064
986
{547,700,2281,2521,2887,2047,1299,2144,1631,2284,872,2826,2478,1439,1392,2505,1403,2023,151,2599,1991,655,2319,1777,1066,2514,1123,166,786,2617,2537,2346,756,2426,1102,1440,2517,1463,1838,453,299,137,1023,2452,2559,1331,2562,2600,428,398,835,1956,2163,2944,1894,687,75,2034,1036,2017,1559,201,487,1241,1445,681,1683,1200,2082,1726,79,1918,1803,1759,861,141,287,2012,376,1038,2830,390,997,2775,1141,373,257,1633,1967,311,2632,2343,275,515,576,1214,449,2550,1848,1518,664,2922,1028,2958,300,1030,1913,2896,2670,591,1294,2372,1410,2172,259,158,955,1705,478,2700,399,1772,1273,2757,706,333,365,1093,2875,1666,2305,762,2160,650,1180,2585,2667,1707,2442,2927,2404,2597,2453,2282,1878,1472,867,649,1962,1148,2396,2892,603,282,558,431,2668,525,825,469,934,2290,2276,281,1456,2730,1383,447,363,1702,1005,400,1027,1159,2507,2337,2268,1547,569,1771,1782,2381,1246,1877,179,125,1828,321,1501,1016,1755,352,2005,402,456,2022,2249,1734,2458,1133,1184,2042,1124,2121,55,1586,1696,1234,2393,1012,2049,1216,2894,2785,742,1229,1787,289,49,573,1503,669,868,1453,2428,2326,779,954,1681,351,2650,2046,1795,2355,2740,147,366,2518,2745,998,2840,2055,820,437,599,1830,782,20,1669,1818,2728,889,338,2544,1505,853,1062,1211,1892,1113,1384,699,2294,962,1219,2273,1599,1639,2886,2880,149,2669,1551,1597,2067,1931,1001,1,2315,885,1264,230,2340,1647,2167,765,1794,1295,17,1177,2819,2173,1004,353,2584,901,2790,2747,1954,2833,1376,429,2129,1000,2132,816,685,2581,1486,2583,2037,1921,944,2519,2192,334,2848,638,92,2254,2045,2577,2265,1905,909,809,1209,2387,863,814,2557,305,2335,2260,213,2187,2530,1764,968,1881,2239,1715,337,307,1688,2611,1060,2186,1304,1479,666,640,445,1083,1761,1157,1934,488,2448,1624,234,983,1077,1875,2640,2365,2889,1558,416,1275,1899,2233,1806,501,2156,2440,1509,284,106,1465,2431,2301,2225,2104,563,1368,2735,2895,1867,1387,1737,2084,963,2175,1634,173,1750,2939,214,1883,2300,153,355,1220,2648,2304,1904,985,1336,702,188,1976,788,1820,2607,2325,2443,451,1207,2615,432,1724,1416,1525,1740,1781,1179,1955,862,1646,1329,142,1245,994,942,851,585,1989,1130,123,812,2943,1807,1691,1928,1555,1699,1512,1405,2956,2510,2245,1101,2200,1285,57,2177,2115,1115,1540,533,2469,2610,1519,1498,2713,185,2363,1810,939,2883,2436,1885,231,2778,2940,2586,1340,2466,2746,1401,973,1026,2677,6,140,2902,454,2529,2814,611,2149,328,2601,1835,2542,1556,548,26,1602,1046,1451,2314,2064,2705,1618,218,732,1695,2847,2183,879,2856,2083,1745,1208,384,1353,2299,1303,269,794,491,2416,1106,2092,2686,2699,342,832,2388,1161,121,833,1951,2383,90,730,41,116,1464,394,2079,364,1706,1259,2029,2158,967,1938,1075,2754,1021,2252,2791,958,2624,1320,817,2787,920,1719,1240,112,187,2128,966,1193,1940,521,1800,2696,2864,2203,1224,1879,1187,2258,194,790,2900,2933,1789,2051,223,865,2655,2642,2271,2052,2718,2312,1441,764,2849,67,2488,1388,1680,1489,2044,870,247,1767,707,2644,2409,1855,2515,2091,565,348,2296,826,692,256,964,2914,2915,1765,1094,1995,2033,1231,1111,1735,915,1447,516,894,2741,80,2742,315,1758,1086,493,2248,2138,2137,2569,1517,2348,2575,2871,2671,1850,29,2074,2950,2938,2724,2162,28,1763,1186,2450,462,775,251,2496,2573,2877,2760,1024,2119,1979,1529,1651,935,2753,1752,1009,1029,932,1067,2495,1402,986,789,2701,2339,1382,1419,254,1092,2765,1467,2226,2116,2710,988,1506,2059,686,146,1890,2214,1667,1175,1181,2402,2907,2821,100,2242,193,795,2230,1930,2421,2707,1783,559,2942,107,590,1413,1396,2234,1549,1684,19,1571,270,2408,1653,1612,975,1689,271,291,356,1605,1140,2793,200,1081,771,1328,805,1302,1888,720,1342,1553,2369,2020,2459,2866,1322,2627,2114,117,2679,1363,2205,1939,2095,1582,2817,264,2088,2110,380,615,2259,33,2639,2124,2934,866,924,1511,2929,735,2002,2949,882,1277,2277,1237,39,1730,211,263,783,1843,1711,2155,1488,767,298,1687,367,43,1367,628,2054,382,1775,858,749,1827,1172,1594,2417,1114,85,2727,2217,629,1364,301,2881,1370,1477,2842,1424,2269,2568,2330,131,1584,1513,2327,2854,1386,678,1462,2414,574,1657,1655,531,704,239,2743,1037,596,1872,318,439,212,827,511,2179,636,129,1430,1530,2198,15,2468,430,217,1054,2593,746,1824,1550,2219,2553,1676,1166,1742,2395,1780,1361,777,134,1596,802,425,2693,2232,2127,2920,1831,1120,2928,393,1626,369,1644,361,2446,713,113,1898,538,219,2646,2527,2336,1712,2868,1119,2334,857,2804,1317,1105,2813,2432,1138,1460,1257,479,1139,774,1164,1635,846,903,2142,395,346,1900,1073,1926,2788,2241,588,2729,2479,1725,410,1736,2069,325,925,320,1536,1541,435,457,1455,2631,671,418,503,1974,2293,1152,758,482,1143,403,1034,2666,2147,1425,736,546,1308,2309,2763,209,1286,216,2491,1678,2389,1154,2100,2075,215,1608,286,1254,845,2085,191,552,627,709,175,1337,2135,1262,945,919,2720,2912,2261}
{2828,2914}
Returns: 40107.89943536059
963
{822,419,2761,1407,659,1039,2030,168,2475,1849,2207,782,751,2214,118,289,2729,1173,260,471,1628,1022,1870,2427,465,2549,1482,296,890,2836,1744,2858,207,1694,1596,138,1443,2482,1766,747,2398,399,1976,1521,1705,463,353,2692,2578,1265,2467,386,1835,2705,1620,546,1051,2624,668,110,200,120,1374,1226,1777,1659,700,1300,31,908,294,561,806,2810,980,837,2446,2657,1254,1880,647,524,152,1362,334,1933,409,1738,559,1137,2258,1808,2286,1537,960,77,2767,1854,1115,1057,2765,880,1192,1049,1999,666,2288,2635,2567,2677,633,1073,646,66,618,455,1322,48,2599,2656,862,1879,888,840,242,1205,1957,2123,1412,1845,863,1428,437,2882,1376,2418,2783,83,1813,649,2583,2494,2255,2739,1135,728,436,530,2709,2344,1645,972,803,1490,2201,2787,2134,258,2509,2539,2554,1461,938,24,2592,2553,2697,701,934,1860,1609,1149,290,2659,333,2573,2199,1713,2516,1824,1740,2132,284,1301,1514,813,1611,1494,825,871,1164,2844,881,1078,800,1194,2700,1122,1914,1599,1384,1826,1182,1153,2803,1717,849,2811,2672,215,1601,154,129,1047,2550,1954,513,2817,2377,784,2503,2121,1812,572,711,836,2107,2049,2388,2098,2670,2826,1974,46,1858,2295,1570,1233,976,2828,1037,754,548,786,1970,2391,1633,1378,2260,2154,2628,358,2294,599,1675,2618,408,1861,627,1040,517,2841,84,950,2649,1062,249,39,270,2846,2266,2712,1932,1930,1958,1232,2584,2188,2523,2228,203,329,2234,479,2486,2146,2152,2014,637,1955,2246,2806,1856,2703,2805,1527,339,1785,177,267,787,192,1844,323,2804,9,1979,1394,2353,2751,1649,2105,1440,2117,2702,956,1680,1335,1167,2346,752,2373,2028,2468,341,2727,432,2781,160,1556,1593,842,2441,2251,2450,2354,366,1757,1345,2545,1605,827,2643,570,2476,2601,2126,595,320,1819,672,681,1278,2212,790,1187,2252,2741,1259,91,233,1532,1890,538,2351,1411,2508,2001,2722,2616,2451,1834,1982,2428,2291,111,2505,983,1905,1279,1264,1321,1963,1500,1965,2375,272,1631,2414,875,1181,2323,1196,1212,903,1019,1915,458,1908,2038,473,1995,1614,1369,1347,1141,398,497,2885,1883,2561,321,2495,662,1802,717,2093,1843,2821,2478,797,995,2074,2823,2648,2431,764,172,2148,2496,1944,853,477,882,1145,2875,2548,535,422,2090,2668,896,1245,2072,1598,2500,519,2259,1973,1780,1634,907,2397,44,1294,1125,1786,2779,2336,1807,2772,2484,68,12,889,2537,1692,256,2784,184,1746,748,1737,1410,1574,1316,2125,1814,1198,2603,2006,401,575,1227,1721,2511,1010,959,508,2389,1273,204,1247,2586,746,5,1140,2522,1325,2552,300,2524,2634,2730,1356,858,1131,2339,1231,804,388,607,1857,610,1043,1236,830,2460,1691,544,2640,1142,510,1191,1495,1228,504,1027,979,1,2514,231,1926,1847,469,165,1519,1966,1011,149,1530,1085,1101,2564,1925,2036,1044,2615,1104,384,1896,2753,966,2223,1319,709,706,869,1202,1749,1253,461,2660,1520,2627,957,975,2717,1179,1701,2440,148,1204,581,796,210,692,167,2547,229,486,1150,1742,1679,1379,1924,2835,2869,604,439,2337,18,2865,1868,1309,263,2777,396,897,426,1224,1591,1543,79,970,1877,132,1816,1463,1725,1669,381,2493,2226,2880,176,750,2859,986,379,795,948,1522,1075,1339,1052,2372,1025,1697,69,1916,1664,82,1215,2168,553,2816,609,2551,1207,819,2642,1962,2743,201,931,542,453,591,1185,2370,860,1066,1105,588,2399,772,194,1743,616,466,2169,1806,1990,2248,1341,275,2261,2726,1756,1830,793,814,1569,1799,1563,1385,1732,1324,2032,1297,722,1086,315,2407,518,1174,1943,2358,449,1542,2196,2470,1426,2750,2165,1822,1687,2235,1055,1803,42,1147,626,2342,1989,1471,2089,850,202,369,955,573,2735,654,916,327,1787,226,11,2055,1252,1748,1054,2605,2796,205,2746,2304,414,899,2225,2857,1332,731,2054,892,2662,126,2587,864,1359,2070,1895,2588,2271,1438,2789,2061,562,2027,568,2140,2596,49,1250,2029,2665,1409,2000,1070,234,1839,1797,1401,2757,1635,824,191,474,1333,520,1573,780,2840,1118,2101,832,306,400,136,924,2531,1445,1200,1772,736,1700,2138,2044,664,2785,2715,954,1671,1612,631,1763,1238,2048,598,76,2675,2520,2745,2287,109,1560,2310,1539,2512,303,1665,2430,2010,2298,629,2771,1432,164,1211,1606,1875,663,2257,1373,781,2124,1938,498,37,1007,2331,1133,767,817,1386,2661,1436,2115,1829,1568,2083,1518,2299,166,2224,2434,2696,2650,574,61,1230,2798,680,838,1267,749,59,1355,1818,887,1825,2341,2632,2755,112,1068,1554,1761,667,1030,492,2829,446,1098,2861,1791,1124,8,2009,1372,1946,108,485,90,2383,2241,2883,81,198,770,1348,2277,2685,1234,682,2888,425,2025,2770,1003,2855,1881,2195,1629,80,885,1159,1956,195,459,1157,2593,2171,1969,844,23,2210,777,2340,1567,2679,2595,1111,250,363,1505,857,75,2267,2604,630,2158,2541,694,312,2081,1353,277,181,2711,1383,130,2157,2292,569,364,331,2233,949,2731,280,1564,2350,1392,1533,710,1540,1455,1720,1177,2108}
{969}
Returns: 39034.678077263015
965
{2569,1570,822,182,2208,257,2228,1416,2308,524,2006,2132,2455,2745,59,2597,2398,1313,2875,2645,2836,2644,2377,198,1379,2803,225,1368,2655,683,479,2273,2753,948,1961,2363,195,931,2153,537,2407,641,261,2237,947,949,644,862,2326,381,2470,2025,2293,1100,1426,483,2480,2084,164,249,1360,1595,722,1993,1748,1072,232,2566,2747,2215,2202,380,866,1592,2588,1609,2098,1037,1383,2567,343,559,1480,2796,2794,1971,1497,217,2114,2770,646,1935,1114,435,436,460,2251,2139,779,1540,1136,2166,102,1597,2247,1044,1255,2652,821,2124,995,2341,1544,1318,80,1292,603,1470,8,2452,39,1824,472,144,2125,2631,1838,135,1795,2206,988,538,1346,2481,976,2638,428,1264,464,1234,1737,1717,1818,2464,405,957,1701,500,2657,2258,2541,260,1,2134,152,2570,1977,2824,357,208,675,2563,1436,1199,368,109,1525,2838,2622,707,2366,2412,1437,1969,2032,651,1206,1419,1778,201,1181,2683,2852,1548,512,2853,2844,431,938,1242,1511,1400,2782,393,1581,1028,2467,339,1014,883,213,2278,668,2674,1700,877,2604,2492,1296,237,887,2712,2474,2532,2447,1897,2812,1476,2096,1523,547,385,418,1316,17,637,1928,1445,1354,2863,615,38,1107,1080,1484,328,291,1394,1740,1409,1004,735,1823,1974,1793,2626,101,881,2658,1203,1265,2672,1192,1195,1665,565,2039,758,2518,897,1278,449,2709,591,294,696,1069,1380,788,1720,969,1115,275,604,2576,299,2623,2154,1456,556,209,1216,960,549,298,178,1211,2164,92,526,2809,1568,2583,1001,2121,1339,2415,1173,1356,1618,97,56,1371,1475,2610,2547,2144,519,1718,2514,2856,1174,1999,1828,2460,579,1798,1631,454,688,477,1166,2550,2181,2651,1260,732,2527,1469,2393,2192,901,944,1929,90,1117,1495,2751,2,1804,2016,1465,2018,1569,2477,2715,482,2830,2427,2240,878,42,2360,1955,2698,1246,1963,119,2508,465,386,833,361,1446,1583,1342,1864,1715,2163,1367,2647,1846,800,2197,2141,273,1516,2565,2305,1931,990,506,342,2391,2416,2766,2333,2148,2699,1439,1649,2818,911,1440,2466,1535,1050,1761,2656,791,1040,1020,324,1162,118,2872,2690,699,2068,1350,1854,1982,1126,2822,2055,2270,146,664,2414,678,836,401,1197,577,1553,1578,2609,2742,597,2704,2496,1853,790,613,2038,84,1157,1936,1781,1820,958,1103,391,2417,2600,721,1646,1337,262,2772,2314,985,1634,2874,2615,2234,1208,2857,1636,846,747,1009,534,543,825,971,402,1435,1142,88,1494,2284,145,1389,1378,1834,734,2720,1230,1321,2052,2088,729,2584,2618,1358,2765,326,2664,610,337,1376,1131,1010,1997,1365,1366,806,1787,1888,647,447,892,1132,2774,2882,2379,863,1912,45,1006,983,521,2005,660,923,2371,2246,1066,916,2587,796,2420,27,1084,739,1866,1315,2764,2695,430,2386,2883,2424,2813,2509,2749,731,1545,81,1925,649,1120,2361,138,2780,2851,2869,2572,62,956,2707,2058,701,962,1180,2008,657,2028,2662,2612,394,2620,1035,1575,49,1579,2722,1762,1878,1625,548,193,2534,1512,1153,154,2291,1984,348,1881,1085,2112,89,2769,2311,1786,330,569,2221,497,1407,2011,1333,1249,493,335,1942,773,638,2475,855,853,2804,2077,468,1311,1698,1250,928,1290,1283,2581,2439,1381,129,1461,943,1519,427,1845,434,2422,541,599,1087,188,1892,687,2546,793,2118,1507,320,2368,805,1442,581,1431,2543,2641,1991,639,300,2779,189,1582,1210,1967,808,2437,1968,2397,2891,1185,1668,502,762,708,499,2740,523,2839,1444,1314,1505,1045,2446,2680,1253,528,631,1074,1152,1163,2696,266,1300,752,1228,2493,2007,789,175,2083,2432,2602,2069,1063,2614,1921,1466,1894,1628,455,2161,2791,574,2143,2339,2041,1822,96,903,2671,2425,870,2014,2180,2370,2034,107,1279,1603,643,1355,216,194,648,627,287,1536,1386,1889,2238,2495,2752,1765,2823,2506,2229,580,1176,1593,2283,2401,736,2060,2564,926,415,2820,829,1995,1990,2050,2607,1135,564,2292,772,1755,1183,2147,1474,469,1917,2461,1025,2320,1673,1385,2676,1758,583,946,1149,2295,2095,2322,1468,1449,1780,2705,323,2012,2478,2334,818,437,2833,494,132,2317,344,297,1722,1629,2430,1771,2220,941,35,1759,1980,1254,1090,1789,667,281,2070,1229,19,271,34,1175,2187,753,767,1958,1182,618,2350,220,776,1052,2459,2692,1218,2076,1577,1944,2558,831,1310,781,1471,50,1473,780,420,1528,406,919,2015,438,1160,510,566,2743,2071,1274,2033,2815,2795,68,982,2042,57,111,1777,979,2735,1194,2505,659,2596,1140,378,2732,32,236,2224,2319,1996,2825,179,2810,1899,2307,1317,1711,893,1757,359,1674,162,2081,313,1694,2155,2212,1590,2814,172,674,1059,1571,1842,2048,856,663,1122,2318,243,2555,325,1994,21,720,2590,2108,1124,91,2632,1532,2621,617,1335,1537,1070,312,2411,2183,373,1562,1683,67,2706,570,980,733,2304,984,1926,163,1976,1434,1477,1177,227,2259,1784,47,607,730,2325,2256,2860,1573,859,964,636,2323,1922,2881,1377,1105,215,424,1245,2762,106,1017,87,799,961,1190,2808,2469,222,1223,2433,1038,718}
{2725,846,2632}
Returns: 39130.74153856624
968
{2856,881,2515,170,2240,585,2358,1466,1387,998,2285,2569,1365,2606,1233,1125,343,1302,90,1359,2354,1651,114,1348,1197,749,666,2015,2615,148,606,2067,179,315,1958,1532,1126,1011,2476,869,2673,1141,155,1315,1891,15,1835,2519,2714,1043,2096,1544,2014,1623,2258,726,2493,2831,763,1521,826,519,2650,2849,2786,2275,436,1193,495,2823,2641,1317,771,3,1278,2002,581,667,145,2671,20,502,1168,2826,792,592,2079,2221,2130,361,250,2676,1471,2524,51,2273,1189,105,2591,757,80,1266,1059,2216,1606,1583,2196,1485,2816,341,799,297,38,8,2166,1127,817,1034,274,2327,653,1756,1213,1657,616,2349,921,2882,369,628,2491,404,1247,1571,2210,916,1765,2213,2401,373,300,1505,2390,2368,2731,1998,1806,2145,2175,478,191,2226,966,1179,1303,2204,2683,2403,1632,1979,1250,1880,2156,286,312,2544,1129,1923,407,98,1288,1007,2578,2887,587,462,1760,77,1872,1207,1155,613,1106,229,2633,707,699,1834,2256,2230,2737,1677,537,601,234,1504,324,597,2278,2805,1698,329,988,2186,1563,1277,2771,591,1908,1031,1716,1473,2085,1862,2158,1792,719,588,1865,116,2504,956,650,200,2531,793,582,1618,2542,1780,1408,2705,1165,2488,1230,214,2513,1491,2745,1178,2651,2305,1262,2833,1223,2534,255,2554,2662,2053,623,1163,638,2889,408,1965,2574,1212,2179,2751,1904,847,595,1457,428,1183,2150,965,1192,2149,1032,1989,2260,980,2188,2420,1554,1822,1673,2003,2770,2595,281,2052,2411,1545,101,1108,759,688,2605,1337,1668,69,856,1686,1899,107,564,2466,1830,381,672,2243,225,698,731,1049,2765,1860,1512,620,1584,23,938,2684,2521,1886,233,1030,835,2682,1476,2808,2442,149,2108,1294,481,1002,1350,1931,2362,2879,1732,1026,2237,2773,893,2080,2383,2333,2438,2069,1450,1085,825,1448,882,2886,383,858,1877,1221,2740,1148,1215,1793,492,110,2549,2084,2847,49,308,470,1628,772,2819,2888,870,1423,2553,1377,1896,1581,2407,1167,1912,346,1292,2462,201,4,2356,918,1077,2126,712,2587,850,2161,389,199,554,1803,690,1319,2007,1159,2208,394,2480,1853,846,1194,2365,694,1661,2736,2719,486,153,163,2162,213,568,1088,2140,2257,13,1723,1576,2503,876,848,189,2046,2172,894,2346,2639,330,1301,211,1832,2310,755,646,1607,1804,1474,1827,2654,181,2611,2025,1464,1738,2828,27,751,167,134,1343,1790,1764,1613,2572,2881,2397,60,2516,2379,2253,635,1263,552,783,212,2284,2867,1889,2121,338,2788,542,786,517,282,139,340,687,1788,1867,1956,2135,914,2400,2068,1851,2335,2063,2681,2777,1685,513,1296,1775,1124,413,207,896,2461,1306,2441,2343,2167,1036,1420,1637,2815,2481,239,2774,2585,1714,1642,305,1289,2669,2307,2252,2293,2742,1362,602,1592,2378,2225,442,801,500,2254,1949,685,46,230,1610,1907,1226,126,2319,1086,2799,264,1158,594,2118,2807,810,1565,1941,1529,2242,739,2081,2039,358,854,2271,2102,865,363,2798,824,89,2027,1857,1976,683,1763,2120,1708,2421,1762,1824,111,1897,1797,684,2129,1953,1831,1595,2248,1076,1752,2698,50,2165,1852,1378,1770,1945,2884,1201,2259,1734,1591,1550,1809,922,1507,374,2430,2323,2451,2514,251,2265,1933,108,991,2575,1837,2655,756,284,926,952,1069,17,2649,2283,541,868,2732,1462,1100,1647,1992,1695,787,402,2176,656,16,1526,2215,1333,456,2342,2180,1347,2494,1638,2589,133,376,2123,546,2152,2261,1690,2092,449,830,2706,142,651,2032,2694,774,970,2386,2593,2893,562,971,2294,2414,2376,2268,1553,1821,1692,387,1131,459,206,1412,382,1441,294,1434,112,977,1307,1009,2350,1791,2467,740,405,1314,299,2728,1152,109,983,1033,692,1902,1696,609,2004,553,482,2636,1864,477,770,2560,157,393,1761,1971,570,612,813,498,1099,412,2607,1611,2872,1153,73,2318,1825,151,2613,86,558,1374,2290,1057,1681,1224,2098,932,289,2274,900,1325,1209,1006,2281,2159,1243,527,2163,2722,1706,2546,246,1229,648,967,1119,2622,427,2124,2317,323,2255,2198,271,182,1042,960,1846,1297,828,2602,2590,494,1568,735,72,2454,452,636,1188,518,2111,28,2440,1506,2838,2865,431,2432,1895,2200,344,2107,2688,2670,1269,2527,1285,1202,1836,2220,2314,2627,2050,794,574,2019,457,1766,1381,820,2011,678,2489,2155,730,2366,2567,662,555,1199,827,1426,1910,66,1840,2089,2110,1346,1451,2402,1305,806,2601,765,1679,1630,1335,2456,951,388,925,262,37,425,2141,1600,2116,1424,809,175,2190,2193,1327,1557,1682,1035,223,76,1214,2876,834,2439,778,2753,434,1503,32,372,659,2686,438,146,352,1372,1072,1927,1952,124,169,2374,1884,773,2463,2571,2577,2511,1689,1819,1691,2904,2082,2277,862,1614,2784,423,1669,892,2600,2280,120,1926,637,1334,818,2341,399,2665,260,1721,469,364,1620,2308,1963,1386,2875,962,1352,291,12,2526,2444,2638,1054,2409,1666,195,141,81,1349,822,1468,2100,982,567,2336,1717,680,2779,1328,1234,2298,1249,2363,540,2287,963,162,1050,1406,1066,1959,2878,2392,1549,2716,2347,565,1493,21,2279}
{293,583,938}
Returns: 39267.38269351833
974
{1459,287,943,1817,2526,2468,2155,298,6,1972,2294,392,2603,2394,1477,2076,2497,2226,1252,1737,2587,1255,2431,1412,395,2246,2794,938,1265,1331,2841,2245,1866,2026,498,205,2639,17,1581,1350,274,1529,1297,1495,1624,1499,2009,112,30,2283,2673,1054,2519,2456,753,320,2495,312,1122,268,1091,1372,1596,2113,939,1717,1402,2309,1541,2922,1039,517,317,2719,413,1610,640,1577,2557,2156,240,2305,1237,720,2741,1970,1230,1766,360,2011,2455,2819,2393,700,757,1411,1326,1709,2100,2466,2486,2227,171,2714,2805,2766,656,1549,1776,2894,156,695,1000,2641,2160,1991,262,447,464,988,1645,2500,1319,2152,471,2599,1863,822,801,1996,2072,1888,1366,1702,2728,331,2050,870,2510,2472,2676,7,414,1543,1123,1922,2627,1758,2899,213,1327,544,557,2168,1927,1081,1655,1417,1037,1394,1198,388,1086,2400,467,1190,1887,1896,2672,1334,2399,1257,772,2271,2578,401,2275,682,505,2539,382,630,886,1975,2586,1038,421,2186,2249,369,2380,2594,1439,2047,1364,405,577,2029,685,1615,398,2360,1712,1949,238,2404,798,2353,2642,457,2535,72,1516,1557,349,1303,1770,754,2836,2044,747,1794,668,34,1633,556,1705,820,563,1361,2555,612,1310,1958,1110,2786,2377,643,2504,1848,1068,1891,1932,1260,2610,1031,2085,264,1187,1008,641,1104,2136,1532,1367,956,2020,1894,1711,1369,1264,628,658,550,1695,1129,23,1999,2024,949,1765,999,1571,1256,1965,178,797,1469,2493,1789,1810,2592,808,385,2875,123,2363,1465,1873,2195,1961,1020,208,1515,468,1530,75,859,1396,1132,217,1266,1072,1525,1231,2343,66,1116,626,341,42,190,1352,2727,508,629,428,1472,2122,1414,1490,1274,2035,1273,1921,2731,1263,883,1682,2007,2917,1444,2098,2711,1458,1106,2521,54,142,1070,2491,1395,1584,381,1756,573,1570,1344,2811,2559,2799,258,1343,404,1804,2918,59,2740,2507,674,2750,2066,485,2842,384,1448,2868,1133,1590,1797,1233,717,32,2872,300,829,1329,1496,707,2476,180,540,362,796,513,1328,2542,2383,2042,1058,2313,1173,1952,1636,1732,198,1136,1418,901,2012,1248,1065,402,802,328,1481,2704,2524,503,2327,2150,1782,1936,2701,2134,1339,1007,1617,1052,1648,2628,1287,2425,722,1690,1333,689,1592,2699,1978,2658,948,1763,1373,1279,1219,1503,2556,460,51,87,2290,1986,2069,2529,2693,2508,2824,389,322,2382,2293,586,138,896,932,480,2262,247,2167,974,832,272,2463,516,920,1474,2411,605,1505,1681,637,2478,1079,2169,1675,2444,1728,1124,20,21,1816,1221,231,1929,339,844,913,1010,714,2021,2764,24,1903,1138,1939,1691,1300,1067,2104,847,1993,989,2102,1775,2551,1787,2570,1161,1512,2413,1389,2105,82,589,2288,1485,1559,437,2244,289,1400,794,154,624,2608,1594,1917,1215,197,788,975,618,1030,166,1151,1651,233,977,1706,1064,185,2817,1158,1390,324,776,2252,729,2648,1056,2763,1943,1544,782,114,2749,817,1609,2801,2291,1293,2392,603,456,1479,1676,1013,2527,407,2874,1235,204,681,2317,799,648,2073,1659,2489,591,751,2063,11,1036,2469,127,343,173,1159,2782,627,1446,1018,2077,1346,1276,2013,1714,541,845,284,665,2857,1218,35,2532,929,1162,2607,2304,1587,875,1246,2566,1995,1103,1701,1735,2121,1427,2385,687,2755,781,1924,1302,645,1798,1212,1026,55,2806,1562,2087,616,2116,1139,683,2706,2738,1307,2341,1589,2664,2025,1234,2306,904,941,905,371,868,2128,1464,546,728,1142,1071,1348,1385,1073,2318,1790,2040,2216,86,438,2192,750,985,1741,1244,1189,2511,743,1962,1332,2605,2814,2458,2636,653,1846,2767,2103,439,2208,1803,2331,99,1872,1898,2475,885,236,255,16,470,1839,966,1734,874,830,2194,367,915,29,2832,1606,1940,1371,1555,1428,816,2734,70,2776,2501,739,2709,375,2308,1386,1704,986,2451,581,575,1281,481,1743,2202,2613,1408,2284,1901,2632,2513,2003,691,2132,1425,1381,2369,4,2110,953,1278,107,155,1078,2410,1935,2900,2002,1489,992,1200,1998,1345,2224,2657,1365,1135,2366,1552,1006,330,778,1858,281,1637,865,2726,267,1121,911,2123,14,1520,991,2027,2088,1957,144,1977,332,131,521,1567,1521,1713,1488,2652,2575,580,2362,1980,779,1813,1759,1878,1573,2163,26,1357,2462,1847,2675,662,1960,570,1506,2834,981,69,598,1757,10,78,2391,1812,1462,2534,2307,2717,2144,1893,227,2620,245,534,1982,793,2092,1514,1588,2298,2474,488,755,2151,2001,2705,2601,2148,1635,2057,2082,1914,2127,1009,2378,105,569,2804,302,1548,2906,2465,1795,1861,1680,1788,769,2713,2333,2137,2633,1023,1117,2678,151,903,1461,299,1613,2234,2845,1764,133,2229,1578,1902,1649,27,2615,1627,1259,2036,1360,295,2048,1916,980,1238,1725,2618,1028,1082,688,1923,756,2849,2183,1134,2848,2460,106,1906,1466,961,2197,930,48,2201,1294,2893,2820,2528,2886,342,2023,1383,285,713,1507,1883,444,2064,2131,1556,1035,2470,1908,1340,1967,2760,2321,226,1457,2623,1077,2853,2405,1601,52,2278,85,1179,121,256,1724,1774,1290,1510,2093,2272,786,1370,1011,741,762,1245,1844,2376,1830,619,752,2818,716,290,2590}
{1355,984,1649,542,1428}
Returns: 39548.3341710104
1000
{2637,947,2884,1289,176,193,56,1294,427,833,2441,1177,1533,1885,2714,1161,1774,884,1144,1515,2458,2843,154,2466,1891,915,2482,882,1946,2398,2016,663,1545,693,1841,1651,2961,1612,2141,1937,1676,2628,2823,2184,956,1677,1789,458,577,1345,295,1110,2323,2653,1804,665,2921,474,1528,286,571,200,455,769,679,2738,2813,2649,372,1596,2053,114,1936,1625,1764,2070,502,379,2886,225,2775,1694,1416,1352,2755,1358,2492,319,2737,116,106,2725,2815,273,1037,2261,919,147,2371,2173,391,544,21,1541,810,2354,2185,1098,2406,1586,1274,1822,1907,1203,20,2557,18,89,539,2990,881,1621,2756,649,1429,383,2909,1323,1268,2046,667,1707,2224,1929,2073,820,1236,209,1228,960,1296,2139,211,1408,2734,2084,2782,2777,266,1165,1526,102,1206,416,1807,745,962,2057,988,1009,2069,2144,864,2171,1253,1524,896,892,1800,1595,2264,387,789,2470,389,1947,2,1690,245,1573,1663,2134,2209,1271,2465,2252,35,770,594,1509,1028,2424,2183,1669,587,2049,237,2464,1255,2479,2717,222,771,1432,2236,2117,696,2044,2853,2951,1405,1884,1084,1488,791,1318,2842,1916,1436,1146,466,2339,1911,2237,1354,2481,1016,2288,623,1388,1514,2408,1522,2867,2881,55,165,2996,832,1404,1996,2344,849,1590,483,1242,2329,1244,1870,1991,760,1723,2291,2253,1096,1540,1695,2228,2275,1277,678,2384,1185,405,2428,2971,2895,1193,848,2149,2696,1293,2133,1500,303,2997,1149,310,777,2953,2262,1058,2661,1254,658,1012,840,1082,1290,1086,2621,951,111,786,2663,2330,177,1805,1941,948,2129,1335,2750,1417,2362,711,698,1679,1631,332,2915,1930,1898,1117,2367,348,2899,2109,2769,2585,40,2385,1518,480,2177,347,1200,2514,302,2002,15,2214,2830,473,2612,2447,2125,878,318,1530,2250,2229,874,213,2359,356,2927,2906,2887,2257,813,2205,2146,1853,1059,441,2085,229,533,90,2187,792,558,2540,574,2569,2280,2754,2681,652,2987,2431,2979,824,1698,2335,1075,1053,2216,2268,2999,2102,857,2878,766,105,1551,814,712,733,2764,2789,4,2872,1949,838,2848,1022,2164,1264,828,861,1563,1482,1337,2933,827,155,865,113,1989,158,491,2304,1724,2320,296,910,2051,2770,1782,2234,2596,1198,2998,2000,1397,184,349,1462,1773,1178,2583,742,981,545,2917,2246,1403,2741,2317,1628,1461,31,1693,1899,74,1983,428,2731,1871,190,1070,357,343,2833,1992,2545,1349,2774,2443,298,1558,739,2563,47,1288,1147,2516,615,431,1295,2746,2552,2732,961,2715,1691,1537,1754,546,342,1457,1547,60,1265,1748,1195,2838,2194,2800,2697,1553,364,997,883,555,661,270,124,2005,1614,137,2693,70,453,306,2059,2342,96,2426,2293,1662,2969,599,1824,889,1661,2132,1650,301,2957,2122,2968,1607,1587,888,1486,1111,2905,2405,1725,6,1756,1788,1451,1328,781,695,2152,133,851,969,1876,1803,1170,2910,1538,2232,2943,2893,2240,2420,2803,847,526,1025,150,938,1517,2729,484,2361,2567,757,1917,2108,1730,2973,2955,2355,2097,202,688,197,942,1222,2111,2278,395,283,1972,426,1056,2981,519,2322,517,1224,288,1307,669,1278,2772,1101,1567,1806,172,2010,914,2762,1579,2312,778,1622,1223,1554,1020,2809,340,1365,2555,751,762,1105,662,1778,1933,330,1854,2866,1990,839,616,465,1877,2645,2534,2498,463,1430,2121,411,2733,801,859,2967,1458,1510,1042,253,2089,373,429,509,2701,1194,2451,1795,964,1640,26,564,2230,62,1827,2571,2524,2912,2845,2050,1760,438,1112,2505,1473,275,721,1467,2435,1995,2650,1602,1678,407,85,2340,2728,2799,1114,1233,2411,2219,1867,2562,2039,1952,717,1741,818,1479,236,913,2929,998,1994,1393,115,989,1557,776,2116,2155,1816,1611,1734,2723,5,724,1960,926,811,1971,1578,2190,1420,638,1389,34,2225,1249,2242,1959,2260,2837,772,2448,1513,434,1852,2944,797,1919,2985,1104,2600,2548,2056,1160,1769,2165,2907,554,860,1006,2811,1060,660,800,606,228,973,2844,891,1632,1441,2136,2211,565,2255,897,492,2568,2814,1968,876,1511,1491,673,728,170,2765,585,2537,1955,1792,2413,1709,134,1023,2592,2977,1671,2454,1912,666,1338,164,354,449,260,510,2473,1927,2025,2076,1448,2241,1638,2879,1164,320,464,825,1591,670,2147,2795,371,42,648,1475,489,321,595,1139,1744,2423,552,626,344,2639,512,490,1702,1256,2873,336,2539,2647,2263,2712,68,2930,1309,2203,1762,1239,2338,1498,24,1606,1704,729,1721,2332,2932,2573,2378,904,2061,180,1728,950,311,2808,1383,366,1977,203,2668,2066,2580,1857,2974,674,1370,2720,1080,476,1982,1855,2399,1575,2609,1125,2538,646,1924,130,1400,2161,1001,2001,1031,967,1171,326,983,1644,992,439,631,1969,27,1469,1252,1131,141,2064,2325,2818,1241,2305,394,2114,161,2442,2749,2914,2992,2520,2831,2166,1375,1856,1179,2364,232,1384,767,1035,1791,1643,1507,738,2565,2636,1399,2871,1428,1705,972,2030,2113,2457,1409,1322,1026,159,2210,523,984,2883,1798,422,2003,1657,46,410,1888,1957,1071,687,1119,1802,2727,805,1300,2065,1811,123,2682,803,110,642,39,2311,802,1731,1548,1316,32,1005,2891,1141,746,1568,2434,2869,2515,1953,761,929,1666,613,716,1742,843,905,1273,2513,1176,445,316,1523,1072,2233,53,2324}
{2610,1394,492,628,2394,235,1344,2132,753,2220,1775,1072,1799,2762,220,1589,828,97,404,8,1897,1246,1800,1243,1902,339,2137,614,1759,2072,1283,785,2530,2641,1418,4,415,293,2589,73,1766,687,497,2733,354,2244,1256,2146,2556,526,1020,2586,2546,1716,1809,1690,1530,2366,670,1058,1034,599,513,596,1406,2925,1197,1692,372,1838,1399,1107,2680,1155,1250,1683,2574,1062,1156,1627,585,2265,594,2076,1142,728,1859,783,1719,2028,2700,484,2109,2366,2558,525,392,2335,1362,2029,1171,428,985,1930,2650,2031,1927,789,511,2917,2469,1201,1917,1486,194,1200,2264,304,111,1294,1130,2039,917,610,961,178,290,2231,1185,444,422,922,1336,1117,253,2493,2288,746,2425,2483,318,1421,1156,1262,1962,2960,122,1966,925,2296,506,1667,861,77,1688,1016,2934,2869,1035,1672,1841,1610,2333,1662,1254,1044,1299,253,1163,1493,534,1359,2508,982,1660,28,559,2290,523,4,1065,28,311,2614,1739,517,2546,2973,1056,1173,663,31,557,2462,2212,1308,1884,571}
Returns: 40766.412661514485
1000
{1590,1743,2132,126,1816,1220,2747,1033,1746,2484,1426,2341,2291,1910,1182,44,2847,373,883,256,2755,2129,2671,2825,2350,1385,1316,103,47,376,13,736,2163,928,2444,2732,1495,2931,500,137,645,1742,2663,2335,1342,1147,1930,328,2667,1625,1277,2193,167,1263,2434,59,1242,1299,1044,1924,1628,1558,363,1042,2048,684,658,1986,2921,1685,1303,316,1632,2760,2203,2926,374,1211,2047,795,1638,984,1536,2084,696,207,1176,2554,338,1920,1388,1916,2763,2986,1944,1223,1382,1975,1287,1107,2532,401,462,1434,2655,2297,99,1047,1775,784,1456,1032,1240,425,1546,250,608,1067,1938,119,2192,1807,2774,1206,748,1088,2449,115,1556,1328,1957,2752,275,1204,2534,2264,2427,1627,1504,1460,2867,2294,2779,64,1837,2485,1254,2628,1393,2887,1771,652,1431,534,138,2322,1961,2022,2959,2199,489,2662,1736,2293,580,876,1565,78,2708,2278,1834,2872,690,2901,778,2194,2201,2318,1105,1386,2660,168,2974,851,834,1722,472,1830,2735,2670,911,2523,535,2915,2954,873,1506,1298,364,1647,2739,2469,539,2717,2918,1533,288,2652,409,258,898,581,508,809,1815,1193,191,1829,2004,1908,2822,460,1452,2781,577,1526,714,2897,2312,923,1464,197,1171,471,676,855,2935,572,349,1377,2875,2666,1066,2095,2513,2069,700,2710,2528,310,1828,428,1535,725,924,192,2093,755,2863,2175,681,1007,311,602,2043,2472,925,431,1667,267,1115,2604,697,1103,618,1718,2524,1756,1606,419,1550,1332,1372,2624,1036,383,912,942,2704,2240,2564,1589,1017,1730,2139,916,329,1326,1361,949,2591,1689,671,1645,1956,1926,1079,1084,2482,803,1892,432,2828,1953,217,2607,520,2190,910,1514,396,2102,570,556,2742,1089,838,610,1376,2013,1221,403,1179,560,2829,1040,1566,2176,2629,277,2924,2820,2171,885,2246,1744,1703,1525,2849,1327,1373,952,1543,2962,773,441,2040,2416,745,2454,1934,1970,512,1475,1369,2198,2189,1127,457,2502,798,1130,2471,2116,252,411,2812,390,2869,661,12,785,157,2288,1955,2202,2310,158,1510,1693,2873,816,2557,2481,1491,526,1603,712,2917,907,331,859,2101,160,299,1113,365,1988,2483,1003,2473,2942,155,1364,2956,1599,1600,2911,482,1235,2285,2673,1612,2127,2775,2443,1741,35,2876,763,2989,2456,1408,2966,1270,1178,1994,765,982,699,747,2981,127,533,1698,734,695,2045,2044,2019,1210,2410,2569,1253,2011,1083,1737,2635,227,238,2765,823,2368,633,2680,46,2188,2397,689,8,1425,934,1159,48,2977,528,2276,814,2938,2331,2824,575,2676,1841,1877,884,2090,1651,1860,421,2697,2134,1827,2345,125,1976,2078,1674,481,379,2118,2934,524,1768,1000,2148,1873,964,663,118,2549,456,2893,279,120,1810,2091,1095,2388,1172,1002,1497,123,1933,2166,931,2784,1794,2463,2790,487,1678,2594,2985,2257,800,445,2357,649,880,1710,2327,1708,1374,1447,2724,1782,1876,857,1826,2723,980,1061,837,2803,2881,2064,541,422,1085,1231,2813,944,1763,1055,988,2970,129,1402,1094,1893,2592,2949,1867,554,314,2316,1981,2059,2165,2002,810,2366,754,976,2214,513,639,2516,708,2978,2263,2174,1498,1804,2306,2461,1080,2295,1530,2347,1357,469,1450,2648,1021,476,902,395,1670,620,2991,831,641,921,1515,1919,2426,2642,2545,1974,561,2031,2379,1169,1336,384,240,2695,603,1318,2359,2204,2689,1315,474,2392,142,2650,2336,2507,1608,2305,2757,416,1493,496,1549,2254,2348,1576,427,906,1459,1037,1755,2186,2990,2207,1588,2600,2995,1604,2940,1740,2764,1883,2241,378,557,532,2622,1155,2352,473,1691,1160,23,1234,830,1227,1334,1662,22,244,1295,704,2239,97,1832,2727,16,2114,2792,220,6,106,1524,451,2413,963,2181,493,254,2585,2212,726,2361,1282,399,1977,180,1611,769,2311,999,2012,241,1567,1438,90,1449,2499,2067,2442,2355,2941,1962,53,2197,1367,860,2468,613,1448,10,1246,1191,303,2999,2590,1405,1164,156,1554,2364,1029,1928,2688,842,835,2955,483,760,2439,1243,940,1239,2996,2560,1154,846,743,2521,2218,109,2729,2396,25,2228,2030,1918,1381,2242,525,2351,408,2936,836,2236,2658,899,1230,2158,742,2859,89,34,542,1333,2320,2882,965,2690,2722,1571,2159,933,1005,2085,242,2551,276,2975,2601,1486,675,285,744,701,1925,1264,1562,2517,2948,1152,2253,1697,1866,1701,972,1153,2855,340,2061,1057,2143,2349,787,793,815,322,1992,2535,2164,1412,54,1813,1679,2052,2272,495,1899,749,101,1286,2255,114,2976,2577,199,1446,1400,2914,1488,908,648,1424,339,1292,968,2466,2621,571,1939,1948,2767,257,2817,1659,2625,2200,1800,1797,2247,2748,1104,2595,1022,1258,492,1573,650,553,151,2832,2856,1289,372,623,2579,1923,2302,703,2014,2418,132,2522,1673,937,1598,2733,2180,547,1353,904,203,186,888,1441,1146,1053,1621,104,1076,849,1658,2979,1812,312,1847,1468,2270,1325,2972,2024,190,612,2920,622,1132,245,1978,270,958,1669,1208,1137,11,1983,1194,55,1136,1413,159,2612,1069,76,362,2589,1656,484,647,2360,1875,147,1719,2216,491,105,583,506,354,1613,527,2826,1121,979,1951,209,2292,1960,1776,2209,2133,327,995,2584,2458,1617,404,2854,1337,1903,1290,2453,991,2491,3000,2768,594,1769,2916,2611,872,1422,320,677,2323,1637}
{1503,2727,1040,674,2240,777,49,1918,990,290,2873,2920,2988,2510,1450,1906,622,77,1963,2861,1086,430,2013,2397,2527,798,2243,1437,2475,132,1149,1131,1512,323,2381,2188,24,2500,12,2572,226,2683,1494,101,2598,2758,194,1292,1322,610,1498,102,2423,1619,853,2239,613,668,1693,182,1224,2569,123,2009,237,2701,2162,2268,213,1798,2735,153,2780,2297,2607,615,2584,618,61,2760,1712,2120,1289,2375,1398,860,585,2932,1926,3,2599,454,1002,2613,1552,1826,225,2812,628,1672,2011,1969,2386,1491,1358,1711,2086,2708,1060,583,98,1092,1273,742,2428,2377,532,2776,919,1208,1511,1282,654,801,2202,1318,698,2624,2040,1341,1104,986,2325,804,2179,2403,2193,2872,2907,451,1556,2464,378,16,2447,2858,833,1913,89,1402,128,1152,1105,1183,1372,569,193,995,1893,239,1633,2762,657,1882,165,446,479,425,2675,2875,706,1657,838,1118,1921,1925,2538,355,998,2350,543,2555,2951,2506,1099,1644,2494,1504,1413,723,1836,612,1629,891,1719,2123,172,2873}
Returns: 40772.56333505206
1000
{782,2231,575,2584,725,2218,2647,311,2459,1288,1741,2530,148,1459,939,1237,324,146,1626,1770,809,1959,1697,1630,617,688,885,603,325,580,321,2382,2513,258,1212,921,2617,2234,870,2653,1283,762,196,2508,409,1661,618,1599,374,1337,2788,309,2540,1721,2558,1029,1114,85,2693,2161,1924,987,2774,674,1262,2429,803,352,2099,111,2044,1531,93,332,2945,613,2627,2458,2556,449,647,851,2663,1314,1597,914,2172,491,2188,26,1068,2290,412,1276,2588,2716,1925,883,545,216,1991,2039,1612,963,2370,151,1504,1169,547,2157,2125,1863,1224,2262,495,2872,945,940,2749,714,2015,2718,2143,1094,2073,890,1499,2434,1200,2907,1609,1272,2023,1254,1545,42,1129,679,290,2624,2325,2423,2962,2053,1460,2632,2908,2411,616,107,2478,466,1999,1332,235,802,2279,250,800,1641,1049,2759,1842,2559,2149,2194,1569,1807,2972,1230,1176,2969,485,1087,2080,1990,1935,552,2862,2375,415,2421,767,1714,174,337,1432,2454,621,746,90,78,200,1486,2113,2462,728,749,1197,694,2837,342,2371,2849,186,446,882,2547,1946,1743,2783,2096,76,1204,101,1367,938,1385,2764,2017,2259,454,2621,1931,836,2176,1168,2378,7,758,1557,137,2857,989,1637,1045,1515,470,601,2175,997,1066,357,2003,135,1156,1394,937,403,1733,1551,1490,2140,713,301,1144,1386,237,659,646,833,1790,2419,1837,2652,2037,2223,947,2910,1103,1759,1894,1088,521,1093,183,641,2630,1418,300,754,1277,530,1514,1258,731,303,1929,1898,747,2914,2275,1401,707,1302,2998,2724,2052,134,77,438,249,685,2676,2932,1996,1605,1016,2526,1234,2917,2341,2288,1777,1682,1078,1824,2376,2533,1795,2236,1010,1028,662,2733,606,551,1331,544,1118,2270,2865,1074,195,2277,2562,889,1566,2273,2233,2519,2247,1893,1446,82,1897,1317,166,455,441,2644,133,2029,2444,1923,2407,1993,687,832,1082,1911,1763,2362,51,1181,773,2303,57,1565,1159,369,1530,593,1844,2465,1811,2884,2319,1447,2684,2415,2474,609,2046,2254,453,363,83,468,2856,2260,2224,1987,1778,2377,1484,1796,1384,410,684,2801,1787,1424,2418,1511,999,1665,117,1568,2690,240,2184,2235,2502,1678,1089,428,2056,2033,2257,501,2404,223,30,1726,274,2038,2950,1577,2958,2546,1729,1067,2206,2775,2708,2374,2719,897,2112,1951,2071,954,874,2285,331,1960,242,1285,776,920,942,1584,571,365,221,1007,1493,2398,2931,1828,844,1039,2428,92,46,2842,61,1182,1323,285,1948,1273,2682,804,1656,1153,123,2115,1587,1562,984,272,2180,2602,1792,2344,2213,2557,663,1318,903,366,1466,1776,1642,2964,2440,620,960,1772,440,2863,2578,2727,748,1613,905,952,1685,2098,378,475,1821,1433,2360,1622,1982,819,1064,567,74,251,1452,194,377,2834,1260,583,205,1340,710,1474,14,2403,1293,1138,1235,755,1503,2111,1130,87,1349,2769,2083,1308,2819,2137,1850,1865,2831,2710,887,2683,2739,569,2611,614,2211,1304,2812,2126,2745,2452,2086,634,52,2626,1098,557,2811,2586,1805,1543,1526,2929,1398,1079,282,131,458,766,2047,1265,1985,622,343,1766,2667,160,267,2490,1617,1225,385,2139,681,28,1240,2607,1400,2031,1998,178,2022,957,892,443,2495,1953,2854,2132,317,2042,2142,1621,2963,419,100,801,2272,2217,1561,2230,2777,2919,2686,1471,1430,2809,1239,1070,197,255,673,1868,2385,2133,2631,1267,1142,1542,860,1481,445,1453,2838,2050,2955,1902,212,806,2369,2878,380,1365,849,456,2286,1875,1111,2523,469,1152,2191,2013,36,2642,2381,102,467,877,2589,1814,1537,1006,2991,2136,2128,811,779,2327,1215,1833,168,2532,2159,1979,2204,893,1343,632,2182,2894,432,1166,2860,1737,730,2168,727,1669,1044,2205,570,401,1478,1292,2974,486,1598,2658,349,155,2258,1011,2431,354,118,1359,1831,8,1699,1764,1364,2511,1879,2551,2720,2614,1328,2700,2397,1901,2522,1310,1187,1916,2717,213,2880,1719,763,296,640,104,473,2245,2997,1680,62,1190,304,1316,336,1414,2067,1962,1294,656,2545,2885,1583,2280,2503,1529,1887,1219,175,346,341,1084,1149,1800,1885,112,2412,2620,2655,2265,49,1143,2420,1325,2439,2583,1491,1679,2760,149,2426,1782,1194,484,1666,139,1560,669,2263,1891,2563,2155,2712,2014,208,2973,1591,2722,234,1585,556,376,1687,2057,2971,25,2383,113,2131,586,2899,2467,732,1819,1071,2146,4,743,986,2785,2979,822,2292,326,2148,1112,2226,2358,1372,901,2396,2781,760,2612,136,2790,737,2479,2108,990,1050,1576,1914,2010,1983,56,1712,1888,799,1784,262,2567,5,2433,2975,695,310,1255,1217,850,210,2185,638,2787,1860,797,2129,2170,2755,1339,2311,2372,2244,2747,1738,2114,581,2020,2314,1140,264,2706,1518,628,1198,22,1933,2061,2704,869,1574,2443,910,2091,1692,2095,45,578,394,2041,868,777,1975,2282,476,471,1578,2841,733,958,447,830,144,66,256,187,1426,600,109,560,463,511,2912,122,2477,1242,1742,1008,2392,427,1880,2596,1259,2701,1443,1904,2903,2135,568,738,339,1090,1252,722,1698,2875,1508,2060,2725,837,391,2075,2379,2791,1095,2692,1783,2210,1910,34,388,1854,658,1271,2401,629,1676,297,1275,16,209,2793,2104,741,1105,2389,1671,2347,1315,1972,2147,595,1664,269,1639,347,1952,1136,1703}
{824,2699,2771,1268,2526,2705,241,1962,1384,293,360,335,1662,2849,470,1572,833,2122,2550,322,1923,946,1203,2229,1520,272,50,1086,637,2736,1324,2880,2448,1586,600,403,1019,772,1508,1319,771,2071,1119,2708,1142,386,2790,1204,1492,570,79,390,1904,255,2008,147,431,1771,1821,1741,2531,632,879,1312,2352,2339,2729,1368,1071,2062,2139,146,1376,2706,2036,127,750,2269,482,2259,238,313,2246,955,245,995,2647,907,1991,1283,2107,808,2188,1038,192,1478,1306,582,943,416,30,2453,31,1787,1808,435,1937,549,2473,2029,1762,2898,1582,1602,1467,2437,2282,1971,1906,1584,1596,677,1071,2092,227,1079,2446,2873,800,58,2167,293,2062,1384,935,2414,2086,49,1973,1190,1068,2417,82,2329,211,2853,658,1980,1790,926,2618,1843,1430,862,2268,1578,1139,2958,64,1020,1981,2099,2864,2067,1666,2424,1657,2956,69,1518,109,543,1620,217,2767,1993,2431,434,1756,2677,2900,2464,1714,329,1609,50,928,1891,111,780,2381,2146,38,396,2398,1467,692,1316}
Returns: 40763.29099652849
1000
{2053,2199,2863,1323,2523,774,1459,2433,2568,1266,597,2948,221,1181,184,1513,1252,2707,2365,82,2133,41,728,1309,628,1635,1283,857,2401,2933,2644,1666,2254,1555,105,2683,1526,1223,1561,2051,1075,1525,2811,2351,2173,2190,1862,716,605,1880,2756,2136,912,2842,1576,2234,1909,1041,2637,1134,2048,1760,2534,35,1659,1112,2003,470,2950,515,387,400,2510,695,2454,872,220,2657,930,157,190,122,79,2499,1023,2801,2417,812,2823,1673,1953,1353,40,1187,2497,1302,201,2749,260,2027,25,340,1741,570,2728,825,1391,909,169,2353,2090,691,1180,1913,1408,643,2341,103,2349,996,2385,229,764,2573,405,2694,1234,1887,816,1652,1642,436,2521,1808,1303,2178,2188,1707,1680,1985,561,1645,1236,736,1306,1316,2585,1735,2277,2900,1600,475,237,159,1858,2177,102,1952,2790,492,839,554,390,2340,1701,2926,2610,840,1699,1710,1238,725,281,1135,2504,2241,2423,1837,2690,299,145,2917,2961,2736,250,2269,2500,2890,1170,2262,1554,268,1430,1630,1706,1560,342,2432,1798,279,403,1575,2200,282,2879,2411,1905,607,1402,166,1621,1211,1149,935,952,142,1588,2776,828,500,2904,457,1189,2630,2169,1352,43,2723,1868,314,961,818,719,577,1396,451,1120,1848,1983,2857,2896,1540,2712,2480,1142,1925,1768,442,2017,2834,66,2671,2403,2774,534,240,663,2813,1679,2060,2459,1341,2990,2746,1719,300,469,2915,1208,2908,2799,2772,2084,2935,304,1993,1228,2320,1423,1954,2242,1886,556,2740,2,138,2692,2607,185,1031,1127,826,1367,1538,975,107,2766,251,249,437,1961,2841,2370,1536,2519,472,2748,2435,510,2191,2827,2153,2960,940,1439,2275,243,1818,2202,2096,1967,1165,2600,1333,837,2867,2470,67,1510,2868,328,2377,153,34,1398,1090,1864,2840,889,1319,1051,2465,2129,2710,1592,2389,2744,1214,2775,236,802,2943,2240,1465,1152,1833,1331,2405,1602,176,126,1971,1958,1640,2083,970,1427,1251,2627,1612,1977,969,5,2285,1,415,2415,2205,2171,209,2065,847,2453,1261,2363,1411,2615,934,287,294,2997,488,2991,743,958,2802,2114,798,2877,1757,1676,1939,208,2621,2695,2565,359,1900,2752,74,1215,1305,1129,526,1698,2555,1271,337,2859,673,1974,2421,1268,2290,1431,1919,512,273,2239,1546,513,540,1597,2253,1672,625,1910,1155,1362,2665,2792,1529,831,76,779,612,502,522,1085,727,2716,1157,2876,1520,376,419,147,1544,407,463,1191,836,1644,822,1662,431,538,2447,1022,239,489,1277,2536,254,429,853,1000,600,2679,2663,2516,679,372,2887,2215,546,2165,858,717,972,758,2729,1198,1711,603,2618,253,652,2361,1229,2982,1756,2297,2546,450,1361,1114,2590,1154,1789,1587,942,1106,32,708,2509,2050,2359,1318,2681,1548,81,971,1422,559,1201,2713,2949,2000,1067,2400,2952,946,2550,1437,1998,1966,2062,1533,1736,841,504,383,2557,2144,2245,690,2079,956,320,2570,922,2034,272,2300,1166,2844,1358,1033,1623,2283,1512,668,2100,2399,374,2229,672,1491,1636,2714,749,1395,2942,1779,902,2118,2366,2018,109,11,531,384,466,866,1356,2892,2024,140,31,1320,852,65,814,297,1511,69,884,1248,2937,634,1842,1781,2589,566,2317,434,1874,773,1413,377,1747,1325,1870,710,2796,2676,1038,1253,1828,1167,1879,2732,1715,509,789,360,2845,2975,1903,1274,1893,2706,55,1418,284,485,2296,1063,878,1076,1964,721,1098,1817,1481,2853,1584,957,1542,2331,1825,1629,33,1497,1105,2611,606,2456,740,1872,391,1800,2612,14,575,1451,705,1293,1400,2616,203,1978,583,2854,2143,468,182,846,2337,150,84,1713,61,1489,1056,1894,838,656,1975,1298,2648,1770,1368,2319,856,524,2778,2807,1889,2398,394,1354,1647,720,2773,1655,2850,2313,1606,486,484,1140,1938,2394,1332,2155,258,2326,29,1590,414,1892,2700,637,1792,1771,2646,1071,230,2726,1643,974,1681,735,1471,2040,1130,2924,855,532,205,146,1527,537,595,2805,491,1390,152,2812,2461,796,71,50,1370,525,352,2106,1357,1176,357,2561,933,1468,2530,2168,2272,1920,555,2057,1410,2099,2785,2166,2087,2675,1714,636,2021,1087,1351,2052,1969,2672,1036,1589,1732,1126,659,1805,1878,2082,1943,1163,2179,903,862,1803,986,2323,919,2158,1458,2005,483,2508,899,723,1637,264,2763,1207,529,2884,591,192,2139,51,2054,1136,1580,1922,918,1355,1668,829,1474,2920,2225,178,2434,38,435,2572,2270,1389,37,1695,2181,2412,380,2426,2754,733,1059,863,444,2954,416,1651,2881,1884,1684,2273,247,2894,1839,2769,1375,199,2602,1688,2689,966,2511,771,2718,1454,2787,1202,2789,1405,36,2266,1786,2645,187,2682,1199,267,895,2839,1594,1139,1838,330,1751,305,231,2028,1499,2029,1857,805,275,2194,465,48,817,780,2967,1304,2293,1638,498,965,1678,1545,917,714,1812,318,2629,580,888,2820,227,1372,2730,116,2731,1883,662,430,2418,133,932,2856,2085,1488,2117,2699,568,1992,1028,1761,2788,2362,920,2093,453,1752,351,1002,1885,1049,295,641,1069,615,746,2318,2688,1717,2715,1151,2636,2503,955,1506,2196,951,164,2741,193,908,1649,2779,2936,2304,2574,2742,2475,1693,2809,108,697,827,553,226,1184,1830,701,629,2218,2988,447,1097,1859,2548,2878,1146,2105,1648,1068,1709,364,292,1767}
{347,1643,1765,1125,2510,1423,2584,260,378,1517,832,341,195,1657,2434,2089,2420,2180,1245,2337,2119,1753,2651,2313,1286,2116,505,1654,957,1277,1366,473,1991,1005,887,1818,1264,2761,1264,2315,1154,1979,2886,978,1923,571,2645,221,2291,41,2850,290,2772,290,397,2681,185,950,312,2079,3000,2146,40,1615,1367,2706,215,1957,1599,2815,442,2809,1759,91,1202,1669,1259,2502,2506,355,299,1724,123,403,1959,2933,2020,1957,2305,18,1455,533,2773,1108,1681,655,2667,756,2353,2228,2844,1287,1917,1974,839,718,2309,1680,1500,1067,2339,756,2361,2597,1869,2681,786,2463,1669,1560,2151,106,711,1566,48,287,1773,2802,1213,1907,2121,198,456,2018,2028,2667,300,613,111,574,2850,687,1214,2570,410,1228,1150,757,1904,556,1188,2009,584,1349,920,1874,2046,2258,2368,2255,1644,691,2727,1450,2361,1086,1086,2847,1349,1330,2937,1083,1598,1478,2956,126,1955,2292,385,2373,1301,781,859,1890,2716,1563,2463,267,2943,692,1307,2820,1219,2451,1318,2974,581,1417}
Returns: 40744.69888647741
1000
{1100,1521,2899,2219,1401,1077,2457,2929,2798,2536,1768,2913,2802,1983,1245,2038,2886,1620,678,911,929,1806,559,176,966,1336,1161,2005,2126,2239,2202,330,625,362,209,1625,172,58,136,2300,1360,2486,2391,2552,886,212,277,781,1035,1096,1460,2243,1713,2619,1,950,1520,2573,2384,2890,2458,706,1649,2437,1763,2982,1409,2832,223,1413,131,573,2989,1917,1026,919,1536,589,87,2196,313,2415,1927,185,869,1345,2782,2496,1946,201,728,2206,2604,937,808,1863,836,1402,1561,1270,1641,285,1868,275,1862,1297,2426,917,2610,2581,1978,1313,1366,2734,2182,2534,2861,2827,2889,1935,424,1424,178,311,996,1881,2884,2505,1150,2242,2377,2792,1340,2132,1882,1235,2181,33,586,2117,662,2087,1397,2726,2227,1612,273,2432,1759,1187,2208,160,2493,2497,1083,423,1383,683,1364,1599,1855,2745,222,386,2958,1268,2842,261,2655,2668,445,2067,2336,52,2301,861,891,2787,760,460,2320,1435,2429,649,2665,2813,2564,2046,1829,325,857,1742,2075,1830,1845,556,685,1749,68,2742,1285,350,1838,455,1610,1496,762,603,406,1450,1690,2896,255,49,2627,2094,524,1362,1548,881,1700,953,1814,2125,2341,2372,1650,1718,1091,1106,2203,2870,533,657,1213,328,1813,1335,1861,2409,783,294,1218,2136,1685,1800,1652,2017,2349,1788,1990,1595,2197,417,1663,1504,2211,2229,293,1692,1275,1563,393,628,2061,630,743,1984,60,2926,2271,244,1236,1485,2553,2276,1671,804,38,1237,2503,2299,91,2430,39,1146,1949,535,2313,527,2821,550,1367,1508,269,322,615,2321,1531,622,1405,1871,608,2220,55,1168,2885,2191,116,1706,2292,884,2507,102,351,1920,1023,1114,2572,582,927,1883,1638,163,2433,1911,314,2799,1403,2253,1698,2267,2019,610,1172,421,407,1241,464,1919,1585,2580,733,1259,2200,2859,651,76,1204,2101,1239,2262,2309,1875,1840,838,1225,2760,266,566,143,1288,2819,1993,2985,2908,606,866,1532,1885,640,179,1870,1079,2323,476,1353,1551,1451,2164,2000,2063,2374,1587,2035,627,23,851,900,2562,2330,2817,2306,2875,725,768,2721,1555,1637,167,1203,665,1736,2455,1853,1266,7,180,785,1426,807,2771,1365,1185,1744,494,2090,1186,800,187,306,43,2661,403,885,1009,2062,280,2439,2858,1999,2518,1624,856,408,184,708,2250,2311,2151,1087,2373,2502,2172,113,1110,2724,1135,1486,1208,2996,182,2986,1998,2361,590,195,847,2355,1063,1104,1896,2068,1691,2967,1006,562,2024,436,2363,2966,12,1174,2047,2304,2468,1499,522,605,2346,2633,2707,1398,101,1809,1510,526,447,2779,442,1498,1155,17,2919,2541,2013,2659,2663,755,2756,2482,1567,1284,2120,1798,426,2547,2441,1765,2110,691,2108,323,565,2021,1103,1295,142,2350,738,2797,305,504,1059,1779,2639,425,1651,766,2462,1216,675,1980,2112,1049,2477,2561,1623,243,1773,1182,319,687,177,601,1024,645,879,1819,2162,2056,2653,574,2837,577,1191,1538,1058,2460,1864,411,151,2069,2585,1556,2548,2065,1433,46,832,2008,1761,654,1257,1669,2053,2382,1856,2461,1293,1506,2772,2943,2416,686,1390,1947,1518,366,356,2143,2835,2210,1717,239,840,2568,2226,882,303,1260,1112,2775,873,2479,956,845,2334,2193,568,837,1126,1622,175,2248,1535,2212,268,954,599,2947,2883,2793,2644,1003,388,1147,2689,100,19,979,633,1795,282,1687,1644,1493,2115,1052,1449,1921,378,532,1880,2879,193,2401,2833,2785,190,1632,2466,1545,2703,159,888,1874,30,2720,2759,2971,335,2887,1086,1066,2358,1375,2269,1661,2566,750,339,855,1400,2422,1639,2592,2814,2327,2950,419,2974,2915,15,1547,461,1262,462,2736,1454,509,1540,1395,2129,539,1455,347,2716,1611,1422,1300,20,2194,892,1600,1487,1015,2636,2815,1916,2175,2954,400,1463,32,604,1789,758,2092,1634,1994,1682,2074,1566,296,570,2133,2994,2839,905,1500,1226,2995,1127,2345,2945,1264,1576,1953,1286,2761,588,2752,2511,1344,694,483,1031,1247,329,2042,729,62,2829,2718,1783,245,458,1469,2025,2602,774,200,789,1325,1406,887,2551,2769,138,990,1981,1893,369,1298,1055,327,2583,711,385,1857,2247,271,2801,621,1453,2979,1411,2770,1689,90,1492,1741,1220,2,2575,66,2828,540,2678,1326,389,173,1363,942,2620,868,859,1368,1527,2658,647,2894,2880,1280,2544,74,1948,1688,189,1944,1088,2389,543,2571,655,1396,140,2980,1602,2195,204,1931,1986,1124,1456,563,61,1739,495,2758,2747,415,202,1369,2031,948,78,1629,1250,2803,682,1137,1659,111,598,1446,2284,316,106,2719,2953,1194,1160,2533,108,2888,1385,2189,341,571,463,1421,2838,57,986,171,373,819,1416,503,2871,2166,1064,1351,420,2927,1849,221,1780,1184,2856,1646,1607,2698,2249,653,1580,1729,67,134,2325,564,1590,1968,1825,2375,2773,1592,1027,1752,1628,824,1175,684,365,70,1784,1751,2343,989,1254,1824,877,1554,71,780,2078,2335,2613,2288,2648,561,769,2184,1437,1392,41,345,1754,1516,2315,89,1466,1802,2144,1034,2318,1670,1899,1205,1515,2525,2701,1430,8,1858,1619,1559,2800,1951,1010,65,925,2425,2640,2192,1627,2812,1826,433,1046,1913,2185,849,2924,2352,224,2690,259,490,935,1048,1507,558,1136,232,2841,1594,1068,1427,2020,1242,674,2670,2122,883,2261,1140,1890}
{1317,2715,2430,1211,1046,914,659,909,2400,413,1064,2895,2781,1409,1964,1290,950,2669,1352,2250,2961,1154,2242,2822,1787,469,1265,363,1716,1629,2725,2913,1994,1082,551,1254,843,221,188,1069,2302,2253,2406,877,2422,1848,1539,2969,1350,1976,1256,2728,1082,2324,1094,570,654,2903,1182,905,431,1590,2414,51,2954,49,1029,1633,590,27,2164,1871,2570,1864,2995,2328,470,349,1660,631,424,982,2943,1392,1253,1903,1569,147,2229,2256,643,1717,2253,2232,2454,1072,1533,2690,1135,779,582,2457,1322,2689,223,2410,608,1209,2308,1701,1203,2816,2201,2562,480,1830,2626,2970,912,2156,82,2384,2089,2257,1869,1705,1769,294,1635,778,1168,1984,1056,2716,262,1348,291,2665,1228,1290,1112,2679,862,2518,1647,1137,825,1491,2260,1436,2599,2013,2544,1472,1397,1790,2778,1304,201,2360,1792,2668,1618,615,505,801,1972,1219,2983,572,2373,973,2680,345,1827,1740,2769,2599,1854,113,158,2964,2172,474,44,2381,499,2058,360,1065,2794,2141,137,2099,2053,1648,729,837}
Returns: 40757.11318804945
1000
{1823,1307,524,82,495,214,140,1955,2316,858,488,305,619,1797,1397,228,1152,2061,741,891,327,2010,1741,2797,1332,2832,2006,1871,804,1832,2327,2807,1416,2183,1952,1763,2373,2511,2867,2626,2983,38,1058,2788,1014,512,1961,2710,1687,207,1107,2667,2241,350,539,825,2847,1100,2578,1412,2558,762,1520,2980,976,883,2774,78,2100,1125,2785,2519,2559,250,661,2723,2000,2882,1229,2771,910,1022,2811,1346,2387,308,865,491,1426,188,2030,967,593,2131,1379,73,445,449,333,266,2609,191,127,2417,2536,2351,42,1774,372,1212,2990,289,2946,1217,2382,2824,559,1937,2298,347,906,1282,361,387,351,2463,2794,1732,963,1299,2820,336,1167,1292,478,669,2592,797,2576,252,195,557,2363,2699,1737,869,1677,1430,2136,2848,457,1546,75,1473,74,1834,459,2273,2291,2094,399,596,2722,468,417,2953,1496,1394,1824,391,1620,1349,1285,1236,1720,1321,77,239,94,2031,731,1098,2287,2482,248,1466,2368,2653,1178,1852,629,1719,1659,1220,1081,221,1514,2143,2096,2230,2294,575,1893,258,684,1551,173,365,1447,839,2942,2656,1656,1830,1756,319,1835,1643,2922,2116,2302,503,957,2679,1595,2598,2162,2356,2633,827,1147,1667,2310,2546,2399,2921,420,2524,31,866,2092,1804,2190,2565,72,935,1945,2243,671,2331,1710,190,2013,2161,165,256,1408,2224,2821,2736,1572,499,1297,1144,1785,2593,550,1601,1456,2236,157,2665,730,1850,1894,2749,2063,2835,1275,2871,268,14,2085,788,106,330,2328,2739,2084,231,206,2758,1605,1278,2330,2369,2062,2049,1876,2014,1617,985,318,2802,1382,261,523,1941,1288,13,322,2436,452,1213,1718,1761,1036,698,920,546,680,182,1878,1714,1446,1974,689,1265,1155,1222,1488,2457,194,998,2442,2567,2315,224,594,216,1389,2036,648,1172,2410,2920,1582,640,1461,2105,1535,1940,2966,1024,1069,989,2083,1799,1989,947,1294,27,1923,965,312,2077,1566,1232,2596,1126,1330,1441,831,307,2684,1096,2806,1568,123,555,1302,975,2329,2108,929,1434,841,601,2407,665,922,1502,1298,1495,1085,181,833,1419,764,1950,2418,1782,1829,1814,2878,950,2021,907,855,2146,1028,1308,1555,2056,1191,794,2029,2168,1356,2662,1795,1902,1064,11,520,2278,2619,370,2528,2117,1507,2682,25,2718,809,2475,1880,1452,2615,2256,273,2362,1816,2123,2550,2307,2928,771,2855,2613,842,620,302,1364,2868,1837,1383,2443,1751,2909,2354,1250,1374,95,1313,677,2631,331,1701,1046,462,259,1813,410,2935,1239,954,2179,88,2468,1833,367,1464,1435,837,590,217,456,2280,1055,1211,2353,997,772,1541,526,886,2250,2951,1825,1544,2986,2396,1765,848,2884,29,2191,2680,749,560,20,1240,2717,2507,1562,1857,854,44,716,595,1511,586,2654,978,203,747,2156,2157,1992,1886,812,1772,1764,513,2025,2088,1587,1166,1848,1385,2313,1533,1399,2103,32,890,849,1076,385,551,688,683,1204,482,624,1134,2485,2349,818,2766,1906,2050,2099,1277,1592,472,2880,1612,1783,360,50,316,2668,1454,1770,1810,1925,567,1849,1226,1476,1414,1215,2490,581,6,428,862,33,91,89,2557,1271,2001,2151,1908,260,414,467,2221,750,1175,2897,647,234,1400,2570,300,218,5,1362,2345,2905,1428,380,2481,2208,1207,1672,2860,587,2552,2424,1534,1508,153,154,1891,2225,844,1462,2763,84,2719,1536,1077,1639,1752,1115,1909,1314,2469,126,888,442,2696,992,290,2625,2641,1498,2465,2738,1970,918,2293,2931,2747,2660,2530,1478,1189,1372,737,1044,392,2434,2429,113,2569,1820,1556,2970,1567,397,1371,280,1491,2514,2628,2834,2101,571,1352,297,169,962,2893,1665,2441,2170,1692,435,2102,390,339,781,1029,2234,149,1505,2664,1846,1187,2405,2500,1325,2523,2400,717,1642,213,875,2075,2757,2770,427,2474,2748,2515,715,122,2237,2698,1092,2716,1922,820,2194,1528,2750,1552,552,1474,816,2035,1071,1171,1861,141,2856,244,186,663,345,1704,1373,2493,1448,132,944,545,421,2714,1930,2176,2488,2150,1875,416,2172,2643,30,104,2544,412,1708,34,945,2484,2577,798,529,2611,727,708,1500,2455,1889,2139,2583,1467,1095,1998,2608,528,2830,1475,2906,381,1221,2295,7,1012,905,871,1626,1703,2203,2639,2003,2752,2952,2965,1363,1042,1111,1884,542,2833,1754,2416,519,160,2060,1336,2053,1806,1973,1059,1926,687,298,222,2547,2505,2998,1999,1784,100,55,782,635,2973,1637,898,1762,43,949,2636,1003,2910,1717,2587,1588,1984,1817,1139,703,487,2822,1946,850,643,1396,486,356,2602,914,1150,2554,1997,876,287,2899,1583,1405,1193,1291,2012,2939,2786,1019,1252,1105,2805,1843,1668,2963,2264,564,375,2254,612,1575,2038,507,2883,1284,1529,2548,1145,2529,2764,2052,1553,2796,1581,334,1565,1492,631,829,739,2068,2269,1702,99,506,2624,2404,102,1118,314,179,1,1578,1082,237,1121,2212,2923,796,2341,2572,1873,1067,1602,784,533,1468,565,1679,1011,2541,1968,1933,735,1378,753,821,2104,1316,1957,1980,1666,2815,1261,142,1664,1409,1518,1960,2754,768,63,1451,28,2312,574,2338,2292,2426,983,2275,852,940,1742,756,1531,23,1947,2433,2,2393,1538,670,2688,112,1836,2737,1234,1866,2623,990,139,2459,838,2423,995,1056,2686,2347,1557,690,1444,2502,1682,1343}
{2184,2623,2976,325,2758,1135,230,933,302,2032,719,1924,707,2964,952,2019,2236,753,701,2659,752,510,1291,2641,1625,1396,1565,1201,2651,2482,2360,2814,1624,770,393,2021,438,397,2095,15,2247,1806,2512,831,916,2235,866,1914,933,2692,2234,2787,977,113,621,903,1523,2841,2356,2051,1344,1019,805,2853,2818,2343,1625,1566,816,2561,2163,1150,227,1467,1556,2422,2613,1162,1845,1862,1197,1344,2500,2469,263,2478,2527,980,1296,1029,1971,2560,2105,651,2551,1677,2509,1783,801,896,368,11,271,565,1567,535,2375,2641,2804,664,1860,2033,1631,2613,691,2915,1664,2415,1050,678,2526,2615,37,64,1198,2430,511,119,2920,1594,2612,1842,1503,1313,307,448,206,1977,806,2753,1643,107,310,1917,1219,2330,530,466,2596,2953,1289,1352,524,959,1050,2036,780,2623,717,1197,2525,2068,2501,1429,223,1652,1626,1989,2411,1290,1511,857,1794,1231,405,1605,2416,1569,2810,2469,1614,745,1193,1966,1893,507,232,2732,2752,919,1290,1000,326,627,1000,2876,2248,2392,2107}
Returns: 40753.88657607243
1000
{313,374,2468,2057,446,303,1712,569,1657,2487,205,146,1804,2520,2542,157,1250,1466,2050,2927,2359,2861,2540,225,1047,2768,1227,902,2450,895,2695,2698,2788,2422,2688,333,196,373,80,1305,1955,1143,2495,2910,454,2019,2094,457,2200,1792,584,1013,2949,246,2168,2086,1104,1914,395,480,1437,1482,320,2309,1965,567,2290,531,1515,2689,1542,2907,1350,1416,2051,42,2156,1582,1403,1353,829,1534,700,154,2848,1145,13,1205,1547,1717,2811,2903,1560,2341,547,2993,2634,181,2347,462,2723,1687,522,2102,341,2424,951,292,1956,763,461,2705,2530,1668,1158,134,2624,926,1281,2490,1975,561,1385,2163,2877,1112,2446,2015,994,2983,111,2992,665,2100,471,2592,1384,1594,831,1887,2593,2855,1257,1020,1859,1761,1784,2211,1541,922,2146,382,2319,1644,981,1242,923,884,1951,1514,443,1114,2137,2599,458,2230,2278,1225,861,2922,2557,1991,2366,1011,887,216,1041,218,2400,2740,2668,781,2737,860,516,2701,440,659,2240,200,1150,1801,2656,2001,1670,264,830,685,2842,960,2386,2138,939,1565,601,2027,2946,1503,2425,742,1997,992,2980,148,2957,1724,2381,2763,814,654,2933,1939,689,2756,2039,716,1918,576,621,1481,260,279,2092,489,2892,614,1000,1347,1695,2694,170,1533,1261,946,2802,1793,478,2314,257,2385,2461,2297,2206,410,272,274,711,2815,2306,759,765,74,579,2423,268,228,2210,2521,99,437,1669,1648,1835,2269,174,941,997,1578,106,1557,2465,838,694,1099,2497,173,1380,873,371,518,474,1014,2059,1999,1248,1174,778,844,1736,1091,20,465,1070,271,2601,1042,1961,2887,259,424,237,2054,147,556,1404,1255,802,1407,914,1360,2273,1045,751,419,1095,927,2016,2509,1601,2418,2812,705,2817,514,282,784,545,1418,2574,796,1027,2950,483,1378,1564,2175,675,867,1734,2327,1428,869,2293,1366,1828,387,1822,418,648,1133,2259,541,2334,2358,1709,2551,240,136,2691,2959,725,258,1917,1342,2897,295,1132,2247,1476,681,2719,632,61,2934,550,132,347,1336,636,2481,1681,771,158,326,1960,2724,2292,405,1769,1381,582,2529,1123,2568,1464,2940,125,785,1363,2250,1870,1301,401,1576,1427,386,38,2716,314,2550,2071,2617,189,1021,1766,348,2371,2197,117,2994,2364,1624,72,404,2317,2508,1906,2305,1260,2827,666,1451,215,2990,2485,1795,1061,1324,2262,1186,959,2268,2280,735,1213,2304,2142,1149,1583,356,1634,104,2715,656,2196,1295,609,2793,540,1156,96,396,2916,2115,2603,1292,1365,2618,2633,1600,1599,930,2623,25,1010,2831,2253,400,1232,2078,1279,1969,2678,942,2906,388,1372,332,1597,1005,2718,1806,2679,790,350,179,1912,1817,1585,233,2154,2480,1334,2620,375,1193,1814,1797,285,767,1325,2915,2572,1606,2251,2648,1573,1756,896,2326,1029,2312,1705,1803,307,2867,1349,2,2117,1878,732,2612,657,2263,1340,1251,2299,1913,1780,1747,2527,515,1187,993,1230,2390,2365,2902,10,1577,293,343,1421,1982,353,1740,2978,363,73,1861,191,1751,1590,1113,2966,534,1333,1649,954,1838,1722,2438,1202,2810,242,2972,297,1581,2663,1665,1799,2975,2654,362,1651,277,806,2218,1239,1986,2005,1039,709,1586,2070,1741,820,2477,486,1314,1645,1713,712,2752,1398,723,2126,2781,6,2024,1562,2482,1159,2636,1447,1443,1954,204,1243,2301,311,2546,2055,1375,153,2000,2637,1417,2458,269,520,360,2969,406,455,746,2330,2190,2860,2215,687,1853,35,2443,1607,2512,232,2161,2732,521,1455,2377,1879,2872,1235,1916,1297,1083,1608,481,965,1950,1192,213,1240,2260,39,2198,1757,970,1450,184,2541,1885,643,749,2325,2219,1335,2021,936,155,1038,2073,629,2331,2577,1505,2228,2956,199,2053,432,1788,2199,2141,1989,1247,370,1206,995,1094,2032,1343,34,1898,1506,420,2829,2649,2659,334,2252,144,2063,1492,1749,2178,2844,686,2075,1316,1197,1738,823,812,1639,1040,2952,683,1732,2754,701,2104,51,2503,2939,1294,1446,1309,1370,2028,855,538,2687,1236,616,2298,2216,1089,1346,610,2316,1318,2007,2369,1758,1849,1714,611,2194,12,2337,2863,1579,1002,298,1460,1884,2499,695,208,2077,599,2069,2167,1688,894,1678,40,2797,195,1352,2706,2885,932,901,1012,1983,1397,413,238,1265,1452,2672,2003,2920,730,2595,510,764,355,2097,2904,2845,91,1699,1176,650,361,44,1952,2399,2538,2478,2226,2594,563,2308,1440,2041,1253,2722,2397,1423,470,2245,1371,2466,2864,2470,738,166,607,598,2474,707,379,1691,2677,1490,1587,100,2013,1540,2886,2189,2973,2074,501,1995,85,1754,2606,63,2600,1625,2493,950,302,1626,639,578,14,1422,2785,2186,1777,1304,915,1781,984,1650,289,2976,1775,349,2849,1675,1692,2165,1771,821,1098,2968,853,696,991,2244,177,1222,1092,2420,1285,167,859,678,1856,1662,1031,1919,627,2083,957,1850,2838,2256,1621,833,2733,1719,1794,1820,2556,2187,305,693,2641,2356,1530,2745,231,1613,53,2609,883,980,1359,1425,1571,2631,229,1843,1274,710,2469,1107,1836,445,1077,1894,2174,1408,1963,2748,381,1591,1635,84,1543,1160,2288,2507,2999,717,2430,2858,2635,2774,591,2444,459,2152,1249,969,190,1555,630,2498,1984,32,1970,2611,1876,1084,948,1512,2129,913,2432,464,1286,2777,447,1924,1706,88,517,1166,463}
{2586,1149,163,394,934,2707,2958,1082,556,548,764,1485,1685,2509,1318,217,377,2971,780,2078,540,801,231,1411,748,2479,823,868,2968,400,1402,541,2334,416,2009,2797,644,1761,34,1633,2845,940,1267,404,615,234,1339,1542,2232,1666,1010,606,2972,341,2433,1533,1477,1654,717,2659,252,1233,2592,1312,2160,486,1959,1027,1096,2157,2116,2224,669,2276,2334,1852,86,2280,1214,2633,2372,1164,688,279,2644,1692,453,2746,1377,1253,2170,500,992,2710,392,567,870,1380,151,2394,2684,2341,916,2386,1186,2406,1904,2270,390,2869,1582,758,1599,1062,2528,193,2417,2528,2992,873,2274,2684,2969,805,1300,1557,378,1275,1160,1723,1823,743,2229,1246,374,1101,1768,2119,2522,59,1378,792,2419,2669,682,2788,1324,251,2452,1002,1640,991,1827,1735,1297,1425,2130,2809,2,1721,1919,796,2502,2507,1370,247,869,481,182,1305,964,1854,166,1690,89,1338,2480,2881,476,896,962,932,2094,203,1202,2461,2523,2761,371,1022,2190,115,430,2595,1475,2703,2786,458,626}
Returns: 40784.82765347131
1000
{2068,782,1061,1979,1363,42,134,831,1764,792,288,2938,2939,1025,1674,273,2512,244,2200,2890,737,353,2446,1287,699,894,1935,2711,284,2342,2970,1588,1634,2311,2208,996,603,2840,2616,513,2627,1278,2933,2166,1130,2187,352,1040,1805,842,1569,1824,2451,2391,2888,2804,997,1986,2909,2782,2968,1219,1543,314,2811,2665,1226,1466,1873,2431,2669,1697,2059,2473,560,1724,350,366,2464,1783,1339,2459,2822,2435,1706,1463,1914,704,1876,1714,117,2638,251,2316,852,1222,189,2161,549,835,258,2520,1701,1956,148,706,2708,2810,1693,2312,2389,2240,1225,1155,1580,1110,633,2188,2157,2255,1145,462,746,2573,1058,1088,1708,537,1445,606,2180,461,1908,1064,267,758,2579,863,385,2393,602,2785,379,1335,708,2605,1147,1519,2322,2503,2883,171,1307,2121,2626,2430,1822,2123,1449,10,1186,1658,316,489,156,1477,1589,2227,420,1836,282,2453,2728,666,1802,2417,2118,1779,180,185,1381,97,1276,2012,962,186,295,788,2474,153,506,1871,2224,741,5,2988,2176,1652,2440,1103,507,1592,1134,1778,2555,120,937,2390,2182,2321,1561,1633,2680,1209,1511,668,1262,2213,1292,137,2424,2412,839,2114,2562,2927,162,2763,2258,154,215,1968,86,1515,2350,728,1233,551,1663,2695,1252,129,1909,2543,723,684,975,1865,829,58,1324,2303,802,1450,2946,100,2358,1976,880,1007,2943,498,1161,1397,1683,479,1617,747,2328,591,2874,2259,584,1323,1460,1966,161,973,2832,1136,1285,2273,2755,1863,1864,364,744,261,1753,2659,556,31,1470,2197,571,456,2505,291,776,1228,887,2600,766,1798,2098,2375,14,216,2277,2560,2071,683,1776,2596,1309,2851,194,2793,2325,1370,1522,1063,1825,2784,1141,864,543,751,126,2615,459,2496,1517,716,2078,196,1934,92,2753,2245,2119,1565,1121,976,2857,2998,1143,279,1539,879,662,1745,2043,2094,2689,562,2480,29,1831,434,26,621,2637,823,1344,1048,646,2796,1671,587,274,1858,1291,1011,1657,2345,475,2369,1020,2550,2982,1310,195,1847,694,2954,232,1137,2128,612,2764,544,2807,2079,1116,2767,771,237,1717,2251,1812,50,1566,41,1239,826,2568,2949,1080,2117,2302,169,230,2842,2509,22,982,1920,1768,572,2370,1245,546,21,1992,1414,906,2901,64,2833,77,1440,264,530,938,1666,18,1475,2850,713,1737,738,1402,1267,1433,1268,476,2641,1305,1098,2381,2136,2620,426,2335,361,1808,2877,935,1481,705,109,2715,1125,192,2974,198,59,81,1100,679,1208,438,2653,1300,1872,1659,1746,2651,1486,643,557,1967,287,689,2156,1388,2947,2790,2868,340,2077,1472,727,2178,1886,761,2787,2762,2749,1794,25,1346,1767,878,1235,1446,2962,779,1046,2452,1797,1978,91,143,2594,309,2536,2225,2403,2481,789,1618,190,2845,772,985,806,1828,2714,2398,1615,2124,1160,2223,1151,1207,1169,2751,254,1326,1524,1342,2414,1165,2110,2145,558,1923,2411,912,1653,211,764,635,1851,936,470,174,1156,1512,1172,201,2915,2786,1570,1288,2483,2167,755,2250,1108,2502,1283,442,2921,2931,1171,1747,2876,1638,1574,648,437,218,1451,2281,1126,176,574,62,2575,2408,944,1500,1177,160,1146,2082,1913,1957,651,2127,1034,851,2515,495,2050,942,296,386,568,1889,1564,2773,2523,777,1015,1006,2634,1124,2442,1547,1931,2546,399,331,128,981,2816,1536,1029,2494,268,660,2891,795,952,800,2337,1166,1176,463,740,135,396,2574,1611,45,888,753,1097,2532,1784,2853,1896,1411,1849,978,2693,2678,39,1338,2019,1104,1593,2048,2155,168,2415,2046,2731,2314,905,177,531,2558,1385,1803,2986,467,1646,1509,293,1248,2580,2830,837,2088,1790,886,1994,2924,1448,2486,34,2517,2660,2743,1819,147,1520,2006,1993,2950,1266,907,2422,731,2101,49,2828,2827,2443,402,452,2461,1129,203,781,255,512,1415,412,220,2752,2268,250,447,1552,2934,1260,1231,2839,1533,116,721,2642,965,19,2113,1270,499,2902,318,226,317,1669,2783,2301,2009,40,118,1428,2447,2469,1174,1557,2531,1698,1806,2054,2565,1742,736,2096,2513,2977,464,2760,1023,2577,825,7,1195,1991,649,2957,2542,1095,950,1759,1313,2794,1650,259,2771,1496,1499,2102,762,2905,1732,122,1734,2031,2491,2761,2061,710,2952,2593,1120,811,1751,2209,1099,253,130,1467,349,347,1918,2838,1294,1254,1221,1179,1348,85,2552,639,2257,991,2712,2362,729,2300,1953,1963,138,1378,2679,307,1584,1289,2720,576,742,925,1429,2935,433,2055,536,1377,2069,1673,477,979,2482,768,941,1456,1091,2267,1904,2139,1602,418,990,441,2085,1422,1111,2383,2528,2129,1599,1684,797,1932,2635,2682,1444,30,627,2792,804,638,74,98,2894,285,1941,765,956,2331,2777,2013,2733,1791,2961,330,1538,1581,617,1998,2686,2570,305,1548,2654,796,945,1622,1700,1399,382,1017,860,2264,2293,2466,1970,2623,2020,1648,370,1833,622,2545,2772,2456,1752,1694,1834,292,2348,1427,2021,949,313,703,2572,1498,2355,1635,486,1019,1596,756,151,1232,2867,2510,1127,2870,862,1702,1758,2103,1358,696,445,2748,1031,1531,1400,1606,2592,1899,555,325,68,193,1504,2034,2872,1503,2029,1716,2105,206,1013,2479,1077,1003,2551,1180,867,224,680,1081,1284,451,579,539,593,1148,2230,2042,1715,1106,2179,718,1996,2364,2380,2142}
{2824,2114,581,1761,2967,626,1410,2163,1737,659,425,2273,1272,1188,1972,2371,410,1111,1001,699,1369,2017,2499,103,2441,498,1096,1002,1496,922,610,2444,2263,1720,2209,1901,850,2481,1288,843,1252,475,2125,2040,193,518,1338,1758,578,2258,2079,2172,799,1602,2630,2362,2428,1109,2132,1169,2646,2652,1113,2614,2555,2438,1084,845,1800,2658,2771,206,1406,2562,76,56,1790,2364,1780,660,1573,1173,1260,1888,533,1114,1464,1807,2177,1456,335,265,256,1055,1477,1657,1473,81,2375,1437,169,2822,2095,1550,1292,2212,1160,1477,94,2295,4,1272,963,1194,1577,1470,2091,1839,2064,384,1951,2168,2618,2365,1701,2543,847,1950,2270,1436,1322,2813,367,2419,2261,798,2522,1089,1971,1759,353,1655,2184,1562,1943,1639,1288,2014,2106,727,724,1767,2913,561,1483,266,881,1692,312,2462,942,825,2488,459,1559,1906,2458,66,2365,235,1968,2873,459,109,2203,277,2645,121,2121,1709,2049,2773,1538,917,1868,2457,1419,74,1247,1974,1323,2764,759,1789,467,2907,2061,1925,1093}
Returns: 40738.46428318747
1000
{1302,2477,2372,679,2205,2671,1571,2760,1015,2676,235,2699,1452,25,2985,1325,289,1330,1874,2931,2721,1928,1477,941,667,2396,1320,2106,1092,18,2762,1376,1769,183,2444,1837,366,1395,2842,588,1022,909,1357,2499,330,2885,1208,1855,2940,1005,1613,781,2429,2582,1784,2369,1899,570,414,1983,1340,2579,249,2389,970,300,1922,875,2899,415,497,1486,1277,1161,1991,2495,1342,2208,218,1861,637,435,1648,1745,1476,2952,2515,2384,1551,2071,925,1881,652,1733,1783,266,2759,377,1383,2037,1859,1702,1950,1943,295,213,222,199,1831,406,520,124,419,519,2578,2524,1482,2733,1104,1955,2084,1283,1222,786,1445,271,1140,1276,422,1649,2675,2996,642,524,1909,2029,1471,2978,1100,1564,877,2743,2262,2685,2849,2437,101,2570,2807,2339,1322,1625,1506,1739,2406,1663,2989,2527,1581,433,2153,2281,713,1034,806,1730,2397,291,510,1741,1824,1947,1298,238,2896,1430,1274,65,95,1707,2263,2734,2329,1345,1188,889,1154,2475,1460,1567,383,1895,1721,1561,1485,2063,947,1570,287,1258,344,1363,2737,96,1164,1107,1533,1521,111,2696,2306,2920,294,121,1310,633,1774,472,2687,1044,1024,380,2061,110,2497,1127,1513,1969,2423,2341,53,1019,834,1272,1143,1834,2955,2237,1988,1156,2117,2705,2788,2399,2160,1319,2606,117,2275,298,373,1982,495,2225,1313,1936,1530,2178,1339,398,410,438,17,2753,1799,2895,2662,696,350,1985,2309,1528,1737,200,1852,620,2629,1226,1780,542,1597,1081,571,1845,1478,375,2064,1673,2055,169,1601,122,2282,2569,2110,1273,1178,1155,485,310,2669,2186,2628,862,1664,1992,2808,2969,977,2840,2636,2300,54,755,1777,808,216,1056,416,985,794,221,2657,2816,1700,1152,197,1130,75,2863,1354,880,1867,1508,1676,1438,228,2913,2414,2324,1211,2763,2766,522,103,487,814,2052,1594,2640,1091,1638,893,751,1505,1706,20,268,2749,2185,2255,1141,2824,538,76,1502,1670,2360,2133,1679,2493,686,325,2081,2318,698,671,1236,868,1062,870,2413,2222,1717,2522,2697,2217,2951,441,1245,2129,508,2501,1159,201,1775,1175,2770,1182,2264,296,1358,352,1238,1933,1608,1821,236,1641,1796,1802,843,627,454,523,1367,1509,2468,37,2754,1672,15,2798,1660,1620,1925,2672,1462,2832,659,2860,2267,858,2856,2775,2418,2976,1435,297,661,1252,1614,1545,1122,842,555,50,130,2518,643,210,1035,208,701,905,978,107,692,1269,2912,2420,1962,915,1420,995,878,1593,1877,2612,1191,393,908,1405,333,866,890,1323,1669,987,1711,2241,2116,910,973,706,242,2348,1380,77,2541,1490,2041,599,2610,811,1511,1419,593,1617,280,989,2516,2530,2683,2487,2854,2270,1131,737,363,718,2092,1713,1308,1098,1294,1806,1722,2357,2540,2774,2641,2138,253,1148,1850,2276,2756,1762,1870,2021,617,2999,55,162,1351,1868,2009,1446,1000,2279,655,2945,1263,2131,896,2773,2517,2491,2796,2359,1411,493,2776,2134,1474,2135,1266,2727,594,1239,815,2272,1752,2929,134,494,2586,2449,2934,1930,1063,2184,2809,2338,214,2209,2821,1030,1021,1994,2903,1183,1033,906,2302,2792,2692,1971,2428,2391,2714,688,859,1626,638,901,1744,1830,8,2601,2388,2957,1678,851,1939,70,2058,1651,2180,2259,1836,1548,2430,1192,2398,1504,2080,783,153,2862,750,797,1409,676,2252,1171,1261,2315,2181,418,914,244,926,799,1584,513,2188,27,1118,733,2379,1876,2409,2797,2691,139,1329,1731,2403,592,2531,445,1512,1120,1210,1051,2130,2553,681,1111,157,2970,826,2826,764,1732,2361,360,2257,900,434,2549,38,1235,2459,464,646,204,2681,2865,1929,2615,849,319,2594,1362,2038,930,2481,996,1958,2027,1230,747,1392,1510,1187,2229,545,1754,2835,2336,1918,492,1300,1389,2033,188,2938,186,466,778,979,2502,2464,1662,1911,1882,56,460,2886,2927,2542,272,2351,1400,2667,1052,1938,2710,320,2410,450,2846,1023,2990,739,2853,2897,756,636,1248,288,1643,2355,2101,113,1526,1289,2873,2123,2893,959,1454,2688,468,2226,1432,205,2626,1153,181,2898,267,251,856,2228,1219,2245,2584,1401,949,867,1094,1003,2811,2322,109,2354,1887,2059,1099,872,1229,2164,2921,535,1463,1655,1755,1449,1560,2416,2971,71,184,1931,810,2907,2802,12,1599,2075,2472,402,728,597,2539,2387,1379,1995,2557,1077,1766,2142,2427,932,1244,2085,1984,400,2870,1450,2195,2342,2077,2936,2378,202,190,126,112,279,269,1819,1177,2065,378,1080,302,788,1053,1113,1199,2939,2735,791,128,2935,451,557,518,192,2215,2088,477,537,506,1547,179,1952,1421,931,999,1495,1443,88,1012,986,262,861,917,1767,2564,2791,1719,1798,2026,2964,2005,1715,1710,2867,1398,2008,822,990,69,744,1186,2745,2344,894,1048,762,1353,1184,803,60,1869,1004,182,560,1285,1002,1475,565,475,2689,997,2742,2375,903,2353,1788,1920,1058,824,1696,836,1046,2660,2679,1973,2265,1180,2258,1017,191,690,2364,1270,212,613,1665,2944,776,673,456,2677,1849,405,689,2212,2605,658,2720,2609,1096,2442,150,2908,57,720,323,2097,452,2439,1965,1596,629,2795,2573,105,338,589,1644,789,176,1404,662,771,1097,404,16,1972,2020,203,1671,2345,726,292,1076,1001,2207,2982,1451,1032,1519,2645,2838,1200,2455,2043,1014,2744,440,586,2290}
{14,979,1772,2243,661,1825,94,268,517,1101,2084,440,2147,545,1507,944,2824,2856,964,2965,140,1653,2092,2461,1382,186,139,1539,2043,1222,1054,916,48,1377,1660,1427,1538,2146,2474,1176,153,726,1609,2078,2585,78,900,136,2175,557,170,1912,2542,1530,371,2502,299,2771,2217,642,2162,2921,323,2937,679,1432,2456,751,1685,674,751,1679,672,1701,242,2984,1377,1774,1373,1829,1665,819,1067,912,2025,1098,784,2839,998,544,31,360,2739,1040,2684,1122,2095,346,1437,1378,870,1560,1529,2688,1171,712,2412,296,2488,2426,1821,2673,2918,907,390,2794,117,2916,950,1019,2892,2503,2060,470,1308,508,813,2157,103,2625,2272,2537,379,2318,660,362,84,1721,504,1625,1634,2014,245,1547,792,1368,613,1926,1790,2996,663,1110,1524,1685,750,440,2505,1392,1561,927,2678,793,1303,2110,996,2261,1330,89,2104,2038,2916,993,1965,1399,2311,1419,48,1527,593,2634,1059,2339,2928,2702,2564,2177,960,1855,56,413,2162,1000,727,2842,2733,1433,1315,143,2520}
Returns: 40778.70727343772
1000
{1882,1929,2737,1124,2851,573,631,746,2855,1077,273,2292,67,1767,714,2508,1684,1754,1261,2502,1593,1935,926,105,418,906,1331,2665,2211,1901,1312,2774,539,411,14,2581,1884,1788,2388,2731,2804,250,466,335,2061,2484,269,2514,2947,19,658,2678,1510,2757,1990,2703,1892,524,1702,2349,143,770,1705,2993,333,327,391,2649,1821,82,2739,696,2255,2579,2447,2664,1097,918,1129,542,1580,594,526,532,1806,556,1093,271,2045,1494,2232,2257,2027,2382,706,1688,2968,1562,2568,1425,765,1497,2730,186,1357,163,379,1844,1678,2421,1650,1947,2290,2652,2177,506,1934,1322,975,2050,1464,913,993,2477,900,1914,1862,2874,2710,680,2240,1876,625,578,1294,663,342,2176,247,2391,2928,620,365,1794,2721,1355,1613,2367,1457,1808,503,1067,996,1066,2398,2692,134,1214,1712,2828,308,359,2645,2070,776,1541,898,836,2818,1391,1096,2677,1699,2473,2916,1274,936,2160,473,2319,2434,437,2432,2866,1824,1042,2595,1574,1317,2588,208,2461,2147,2619,2334,2867,1100,1955,1496,357,1330,2478,2834,2285,2077,1396,661,702,480,611,2395,693,1529,109,808,2117,849,1383,1291,1952,393,654,1997,1735,1635,645,505,604,218,2407,2253,1225,262,370,2592,295,817,2617,2811,2835,1752,1758,1805,1777,1815,2506,745,2827,984,257,91,1207,329,16,1384,1488,2957,2639,1183,2956,1881,2051,1412,2995,2975,1435,1447,23,1589,969,2300,1303,2408,1576,300,502,962,1630,2205,2074,1110,2030,328,2094,491,582,1745,216,1512,1906,1708,2712,167,766,2880,2132,485,1793,700,1377,1491,2000,719,2239,565,2753,93,414,2302,1664,2539,1359,2171,1936,2274,2164,1407,2822,301,493,2783,2718,125,1467,2320,782,1360,1078,1029,1960,501,1153,919,2129,326,1109,461,2564,2869,1785,2452,1683,2589,2992,988,346,2879,2904,2755,1819,400,1850,2041,2973,2591,2723,720,2333,1310,1481,1986,1796,2813,847,1186,1967,643,1369,682,615,2185,2112,2911,1375,2127,2170,534,514,2327,299,1870,347,561,66,1123,3,1719,864,547,102,1445,1810,1637,2812,725,1362,1904,249,2125,2096,1085,2889,628,674,1395,2200,1909,2660,454,612,233,1345,1206,104,227,2810,617,809,2029,2761,2762,2183,1059,2053,791,2933,1980,95,219,1682,2785,2444,2667,206,362,1513,1555,2471,462,881,259,1087,513,1920,2861,2392,595,1267,2650,1461,692,258,2881,870,2953,1111,1880,852,1327,887,1166,2693,1063,1420,1279,944,2787,2729,1074,679,2772,742,1982,1104,17,1996,738,1591,2470,124,1143,2371,2062,137,2196,2037,834,1424,481,1182,2886,1849,2779,1292,1019,2697,2771,1636,1280,912,504,478,600,1213,1800,2086,2075,1569,468,2152,774,2854,88,330,2428,1246,1472,2685,814,1522,1867,1060,784,239,557,1451,2343,224,762,1439,221,1812,1463,207,2738,223,177,1158,709,420,824,1134,2713,2638,1667,388,1963,2442,2546,2287,24,759,2815,1115,1336,1571,669,1868,83,2796,1401,1351,708,1371,252,1319,553,1221,2222,888,2726,1040,1998,874,122,1883,1372,2035,2598,974,1248,920,490,2847,37,2949,1495,935,773,1125,756,1751,627,89,2684,246,987,2042,2497,1962,336,1740,479,2034,1799,559,32,2536,1427,1948,429,194,1139,183,2191,1254,2246,54,2749,2634,296,1783,74,2527,2182,2056,46,778,1043,1528,2990,859,2945,1857,942,537,1175,2859,2865,236,1468,130,2614,1353,1392,314,1194,1835,1829,191,290,2284,151,957,2562,1765,1058,13,555,311,2868,1575,1025,1366,2622,1131,235,1612,777,431,2015,2647,2387,2545,950,788,1995,2358,1263,1653,2467,98,62,1298,1390,2960,2375,531,1378,284,1921,979,2431,2892,2797,2803,1079,2504,1547,1516,2002,1179,44,2433,2963,283,495,1400,2269,1753,1397,2860,2809,1983,2641,2121,1250,2596,1023,127,1300,1585,1911,2941,2540,2659,1601,1050,2241,2353,426,2097,2252,2741,701,2322,1311,28,1217,8,2192,866,1176,174,1278,43,1964,84,769,1009,1385,399,2862,1032,845,644,2188,2481,1709,1748,2567,844,1514,2410,1609,2347,2151,1731,2898,140,2103,1524,1265,2219,2280,2059,1376,2054,2303,1686,79,1820,374,2784,317,489,1573,2922,351,828,2172,1965,169,1922,2162,2717,677,2329,985,1476,2533,1405,161,2286,376,2988,2346,718,241,1519,2489,1526,145,2098,2908,85,2309,995,361,761,1782,925,51,2406,2612,1961,1674,1873,635,2416,1605,1434,2399,1959,2708,1822,1251,2905,1577,637,1406,2936,1089,945,2153,2216,1563,97,1927,1579,1536,2089,1479,1127,879,1358,2999,1315,1137,2767,1144,2314,2418,1008,2885,94,2507,2326,1890,795,344,1802,2517,1778,2520,749,332,1229,1235,546,320,2331,812,668,1928,1502,2265,2706,939,56,2632,2930,1738,1660,427,1645,1771,1154,2380,2136,970,1631,567,2365,1910,1329,2348,20,1968,1863,1197,288,521,447,2436,1604,1015,1289,880,2964,1373,248,1729,1572,1891,450,649,159,2611,2556,2344,1088,1061,689,2958,1676,1661,1875,603,1550,2814,2068,1586,2460,2110,622,1238,840,2585,2554,87,2750,2535,2243,289,2065,873,2355,1615,2837,2948,2350,1689,589,860,1655,2971,2510,1084,2532,319,1994,1403,1556,1811,816,1975,1918,577,2267,2899,263,383,1199,2158,1419,2743,81,1854,1270,1704,2560,2007,2126,1659,2203,2254,2021,2873,2248}
{1743,1030,2282,1657,2665,1363,2884,2245,415,2658,2925,2347,168,1476,2398,1161,234,2703,254,1100,1208,2549,1303,622,2454,1751,1383,751,2328,2706,1001,2933,1442,2079,872,1959,2794,1612,827,2261,2923,41,2425,2186,1880,1722,1763,492,1739,692,1864,1418,2888,453,1231,2591,1079,2522,2888,2233,1722,894,659,2005,2392,1879,883,1846,2460,2258,968,2171,1348,1139,24,572,2863,2108,813,373,1154,397,1967,2349,1706,2349,169,2451,1602,1499,2093,2902,2972,2791,1736,2413,2572,332,1161,2123,2014,1045,2979,1077,985,1823,2850,555,470,1322,430,1749,240,2318,1885,1541,879,178,241,603,2249,2718,1272,1938,1661,2318,588,537,699,1608,48,2121,1151,2603,2154,189,2241,1092,1473,1745,1085,2653,2675,873,2080,1657,2659,572,2271,1752,2980,2054,482,509,1931,126,1399,1636,5,997,2771,2299,1779,1186,1822,2704,2186,2596,1454,2117,2266,277,1750,14,1763,505,525,492,1612,2172,1957,573,925,451,1689,2633,1938,2412,1168,2569,581,2303,2476,694,2159,57,2896,1854,211}
Returns: 40757.11422390135
1000
{2416,881,879,379,633,1791,842,348,1343,1097,2286,1191,207,2246,1685,2069,1852,1649,462,803,2987,1839,399,761,2665,1120,2148,1064,293,731,2443,1308,2329,2218,1166,1726,263,857,2756,353,1940,2174,1017,173,1142,2701,2680,1115,2027,2224,24,1063,2264,1389,627,1213,1587,592,1409,1676,851,1658,2245,1441,1661,15,2956,88,288,1486,1451,1972,2839,2326,628,98,575,1044,958,2640,2713,1043,1107,1295,1786,1718,2620,537,652,2538,306,2192,523,21,1931,834,100,2404,1077,1930,2202,1548,275,2220,2454,411,384,1160,2599,2753,14,1111,286,1192,793,2318,512,2188,1015,540,238,193,2191,2607,1942,2940,383,2766,648,2056,2857,2429,2826,1519,1354,1205,2055,2159,944,1605,1351,2566,852,1425,2761,405,656,914,2178,2241,1423,211,905,1653,2170,2542,673,2108,2134,304,1848,2565,1790,2299,134,152,1934,2693,408,815,2240,1146,608,2583,2295,114,545,855,2875,2993,2824,2933,1435,1038,531,1553,2550,2087,2363,1365,55,970,1304,2581,1506,1892,490,2759,975,1657,833,2300,1722,664,312,812,1007,1404,836,310,823,1239,1413,2950,1388,2261,2141,979,122,554,2868,1144,2827,700,2377,1396,630,2115,2370,2451,33,728,1985,498,2881,1567,2668,2976,2546,1039,1208,2426,251,1319,2344,440,544,2648,1887,2677,378,1068,370,1301,3000,2157,601,2380,1938,2959,2502,2123,2038,1508,1639,1395,350,1978,2557,962,2778,1163,1056,2067,2872,1065,1339,533,1328,2812,948,2612,591,29,2412,2423,2095,2847,2175,1954,1642,325,528,2828,2972,2449,644,137,2222,2335,1424,495,1990,2568,1378,461,2407,221,636,856,2517,1759,1602,832,1471,2378,2280,590,875,2658,1300,2039,2016,861,109,817,169,967,2537,880,2524,1122,2994,2860,1135,432,1483,1871,2913,1469,2684,1502,2515,1202,2954,2941,1943,2696,2609,1487,1094,1666,2424,2312,1393,108,1211,2185,271,646,401,1055,1976,738,1500,331,2650,1496,2273,1027,178,276,47,1837,901,279,2500,1818,2674,2238,1963,1735,2889,1234,1271,2725,1925,1353,2128,2455,650,1230,2408,1209,1524,2163,854,116,435,150,2143,2211,2394,1960,1011,902,654,885,396,1867,1948,825,2623,2843,305,28,1874,2615,338,471,807,2783,2973,1168,559,2104,1110,2888,2573,2577,588,2322,846,2044,1682,1673,864,1130,1490,2742,1159,763,2285,2704,247,908,2315,1789,621,1359,985,262,2042,921,1417,2659,584,1995,1138,2800,2230,1754,1283,428,1207,778,459,2594,1625,1261,1188,548,928,1834,266,1727,1123,1020,1956,1092,1037,2431,3,2803,2436,2089,2053,1788,1325,736,1720,2376,1745,891,2232,1061,1843,478,1194,1598,41,884,1455,811,735,853,2340,2262,751,1355,2448,1629,2316,727,40,2695,282,768,950,2833,906,1902,1529,2136,1193,934,2995,1991,1817,2373,42,739,2984,2387,80,994,2980,669,988,776,410,85,2979,649,2292,106,365,2462,940,2243,2652,1454,501,2272,596,493,1105,1458,1050,2268,1403,2785,1888,635,73,2965,72,1822,2788,1830,1941,2794,2731,1900,1634,535,1884,1716,2279,976,661,610,2767,2691,1778,2505,2034,2138,2183,1206,2638,2083,814,1495,1803,357,352,2065,2605,771,2553,632,2010,2805,307,1473,647,786,1725,1076,631,526,2675,1350,195,1820,129,2207,957,1511,1066,1335,82,2734,2090,862,1739,724,572,36,2112,1699,451,2922,2983,1223,2901,326,717,1713,1253,1669,1893,2915,1555,376,1005,1175,2781,819,890,2164,678,1401,1019,2754,1491,741,104,1374,2604,848,2464,2679,1798,2024,1104,2331,2397,1773,2132,713,867,1814,1575,775,1819,228,1920,1774,144,392,17,465,413,1154,1402,2258,125,1263,2025,1640,1049,2120,2110,508,2028,2966,1730,419,616,1973,624,1908,2719,2938,2348,527,358,1787,2541,1041,1134,113,965,2019,2257,860,249,342,2358,2445,1655,1476,2703,1501,283,225,1811,1777,1415,2519,252,1132,1965,2399,1226,2434,1286,780,1083,1886,2628,1966,469,2465,2476,446,2750,1468,1903,2509,1420,1070,2111,229,1980,2877,570,1993,1292,1291,530,1494,2662,1439,2367,1647,1472,2978,2777,1270,1162,1796,2457,1379,2199,2849,2639,1465,34,935,1059,1766,1504,81,95,2461,1462,509,1362,1331,1563,177,2567,2297,1240,2838,2654,2748,2092,32,837,160,2281,689,1538,1765,2043,2859,132,2738,2667,341,2531,157,395,1698,416,2508,562,2077,2057,1707,1252,1364,1733,1515,552,1525,309,1394,2303,187,402,1095,1499,1700,328,589,1840,1574,127,2171,179,1847,2195,2266,1268,2943,257,216,2850,1573,1133,525,278,1631,1139,23,1835,4,1868,409,1475,2165,2177,2,163,1429,1826,2161,1453,2478,2764,151,1184,2403,1426,1444,2088,1638,2231,1492,690,1939,788,2471,2052,140,48,199,918,2957,1140,99,58,2939,79,597,2203,1187,2907,2015,1075,2122,574,506,475,231,903,2511,1858,1557,2045,1216,2955,2749,2430,2796,25,712,1247,2491,2249,1794,2931,215,998,1662,1757,859,1558,119,159,522,658,1243,2556,1086,1265,1680,972,602,2093,1632,1119,653,2040,2744,2772,463,1337,2383,2845,294,1157,389,1679,2526,1636,2707,529,2676,2593,2121,1824,2481,1260,44,1449,2951,1752,2493,1526,982,2074,1176,898,679,515,433,2290,1296,1466,97,256,2687,2099,2216,2773,1528,657,1042,660,2263,1945,2081,2172,2361}
{2234,2202,2577,693,2019,1507,92,2908,2214,2653,1163,1064,876,2586,581,2626,2724,1574,20,2973,1426,2233,2594,2224,1224,2258,2897,802,2261,2803,1622,1378,807,968,2806,2564,292,1715,1783,1305,1423,1397,2891,1016,2609,1225,165,2875,2275,2204,150,783,533,1820,2842,2436,768,56,2935,2738,2629,1871,861,2782,1680,1513,2327,1524,312,1318,1502,1379,2897,99,1685,35,2525,2467,1029,2789,1940,2814,1951,2421,1274,2374,770,708,2955,2479,1890,735,1413,2890,2843,1257,1606,2485,1847,558,1204,869,204,1270,2754,2306,1282,2317,625,1143,2745,239,2787,2317,2669,1585,780,431,1967,2309,234,24,1317,821,1746,100,1371,1645,2419,1742,1548,1624,1001,1917,2044,1695,1963,1091,2282,1943,2451,87,2462,2480,1628,187,1168,2305,401,2613,1581,975,936,694,1142,128,27,505,315,1100,2580,1660,472,306,238,255,2361,1584,254,805,2781,2181,2242,2388,1516,1512,2666,818,826,306,1093,1749,780,337,1023,2318,2233,635,457,1967,1719,1592,2334,2841,1527,1047,1788,2677,617,790}
Returns: 40755.51781002015
1000
{1614,1195,657,994,2013,531,1541,295,2156,1476,2802,2405,2698,1143,2219,1159,339,492,1117,1508,2359,2905,1407,984,2449,1666,333,1828,1579,2477,1133,1192,967,2694,739,200,1833,2422,2946,179,1737,1405,1773,736,676,2441,1913,388,2816,258,2996,849,1181,887,1711,2014,2046,1313,1103,46,316,2205,2515,2420,2793,511,1644,2464,125,405,1354,2517,282,2303,1400,2688,640,1876,2045,2799,2655,2642,1255,52,2302,671,727,94,1186,1126,2570,1096,1904,2311,1966,1587,1725,2356,1758,2430,971,782,269,2806,1907,1869,2734,1930,1893,103,1035,2155,861,639,1794,1927,1648,1223,885,796,1053,250,1842,817,811,414,2768,2254,784,1107,154,2796,326,1207,464,1501,2720,1796,2093,1331,1817,2167,2551,2236,2233,650,80,1595,1137,1785,62,2516,2943,229,2028,1680,1015,1944,1097,715,2619,1770,1590,1484,1489,1546,619,30,1116,2043,2566,858,902,480,1726,2649,2625,1499,1970,1071,294,246,2607,529,2912,2227,1577,2029,2987,1134,1881,2319,2310,1599,122,2624,1291,1738,418,403,415,2268,420,1910,1,2527,1518,1336,1082,457,2773,2920,318,108,754,1723,2626,1604,2771,2185,2828,1254,2733,2981,2333,815,2124,1112,2851,1115,1968,869,309,1780,373,2455,411,582,2481,1563,2776,2206,2226,239,155,1632,40,1392,1603,692,2361,2860,1685,2269,1804,2983,1735,2052,2432,1582,1271,2389,1000,2760,587,2371,1272,39,670,2120,1578,1635,2055,106,1538,2883,717,964,325,2510,1891,1229,1398,21,1296,1009,1989,374,906,2429,1984,314,1324,1997,10,2487,2025,1638,1931,1718,2932,163,969,2842,1536,1651,254,2972,290,2919,2152,1147,871,752,352,2085,2274,1564,2864,60,2742,988,29,253,1433,1288,2684,930,1125,2381,2520,1289,584,2953,915,890,2778,207,1021,2425,1243,1701,2374,2428,839,447,2963,828,870,1852,1430,2271,306,2546,2309,98,231,1228,1041,1557,880,2550,2306,847,4,1734,1176,614,2261,1860,2438,2112,1717,2184,1436,2801,1774,259,1261,1946,2357,1045,1504,2800,216,1016,2538,2297,2225,766,1986,2701,525,1779,82,1588,1655,1805,1533,2654,2173,410,1994,1294,2548,336,199,1073,2338,2707,919,262,1442,1132,1057,1145,550,263,2221,2289,792,1988,2832,26,916,2812,688,252,1537,1918,1532,1320,2525,332,791,359,1061,2743,395,1241,1861,2788,2197,1190,2670,2757,2369,347,1452,1506,2787,1671,2250,2621,2466,753,2915,2139,1153,2069,1384,1386,2660,425,2999,767,1074,1110,1999,1915,462,2758,2630,576,1540,1715,1826,2504,665,1211,2328,848,1060,2867,440,709,2913,283,311,1455,2524,1373,2427,1426,35,1235,1142,1628,552,2638,2002,1022,517,345,1688,413,810,819,1204,2991,2585,2039,1305,1640,2774,1101,2970,249,2375,508,1528,1585,1668,771,622,545,2092,528,1767,1347,2545,950,2875,2738,755,532,879,412,1705,16,2325,1834,428,227,1488,1158,2348,226,1034,2485,993,726,357,2542,1238,1001,1493,2933,1912,1961,2877,2685,1954,1714,1387,1364,1174,234,2066,169,2018,172,228,2386,2973,2765,2712,2820,1334,2011,2751,2941,1699,1227,118,2917,881,2349,578,2615,2493,2503,637,292,2187,1866,1104,1807,308,2528,182,503,2075,2316,375,87,494,2366,101,1857,581,2753,344,1054,1376,386,1798,2514,438,1716,208,2431,1472,829,2852,910,546,979,1993,2042,123,1760,2334,596,905,2245,2259,2053,170,1720,1471,1700,1412,710,470,402,2664,1007,748,623,777,592,2568,2396,1991,310,2500,1939,1191,1282,2892,81,1940,1341,533,1665,2457,942,751,1231,831,212,243,2044,1709,2065,2769,1155,2183,2456,2924,194,1597,1933,2975,61,2967,718,1175,1600,800,1512,2881,2176,704,1897,1109,287,1239,2834,127,1811,2214,149,1880,779,2667,2552,945,2415,603,2762,221,1090,2744,1676,2032,696,1938,1602,406,501,583,535,1981,161,272,1178,340,215,1963,2147,1500,2339,1514,2095,1752,2234,917,732,1244,1884,2130,1432,488,486,437,1964,2592,2458,1006,2450,2049,2729,1759,2661,2848,2229,2141,2248,1092,2593,1657,370,682,2005,1167,1684,908,2110,142,982,2817,1453,1605,625,1885,2672,493,1598,449,109,2791,353,722,928,115,2170,57,1188,2118,76,1067,7,2040,833,45,1544,1608,2702,2347,75,443,1778,2556,2537,2668,1130,1529,2392,2839,701,1415,1673,397,2223,840,1424,609,824,1664,2721,458,1965,2958,1820,289,925,271,1304,2162,1285,598,2377,1397,2939,2571,787,530,366,502,1420,1696,302,2113,1795,117,56,1338,937,716,2880,2633,1140,2681,933,2476,768,943,2436,2419,1674,2846,2887,1612,864,2321,853,2878,2949,2727,2343,749,1670,270,184,1832,416,1123,2823,2565,2406,2418,2295,496,1633,1542,1366,997,2084,2081,797,1003,2115,2809,1028,731,1070,2989,1520,224,506,422,1277,2421,2207,2573,1998,2726,559,1589,2,2560,907,273,1164,837,1467,2648,2908,390,1525,875,1157,2212,1867,2004,1394,660,2402,1032,376,1004,989,96,1281,608,235,2563,707,580,2822,1550,153,563,280,144,132,300,1729,1168,2909,1451,1920,330,1806,8,544,1974,2562,2033,524,641,168,2636,1428,899,2815,2766,114,2483,2780,2928,1469,570,2482,1859,2588,2789,358,1265,2444,542,678,987,1728,89,205,476,1519,2409,1105,2971,1872,498,2037,361,1892,1149,1319}
{417,997,865,2676,2423,823,1561,1172,428,2925,2030,1408,1171,1590,1137,2054,2609,480,983,1606,4,204,1625,1783,137,2379,1490,264,2101,433,2853,1938,1932,2657,712,2236,579,1936,988,2237,2719,1770,2656,819,688,2336,933,933,557,1310,438,808,2039,1155,430,1386,603,2499,346,872,1865,206,910,2097,1628,774,2637,1342,2470,2413,1981,2818,1273,1118,1422,1388,2160,2454,605,172,2375,1217,2485,1828,2149,1445,1967,757,996,4,1843,244,2915,1213,817,1155,948,2915,2438,877,204,421,2164,1539,1529,851,1527,2054,808,33,1791,2679,1153,837,664,2822,257,2078,2534,2579,1553,2545,2589,1923,1471,957,1200,2793,919,407,2069,2412,2959,1428,55,788,749,2546,734,1529,2093,69,165,1582,1468,651,808,2601,449,2050,2484,2356,1328,146,2705,678,677,2796,2707,1753,445,1263,1372,1561,1276,1652,2757,1129,245,1099,391,2594,1568,889,1782,1815,1361,36,58,2914,2100,530,2477,2737,899,568,2440,831,1504,781,2932,1444,1046,2742,134,1077,1120,1941,921,1908}
Returns: 40736.87606103373
1000
{1645,2749,1156,2250,1006,2113,295,238,2812,1922,1746,1279,1971,1470,1906,2666,1127,1882,1248,2876,222,1175,1173,151,1955,53,655,284,1747,474,78,296,334,1318,2321,34,1455,1116,2759,1227,2376,1336,1750,762,1462,56,1686,368,1372,1183,1335,2013,1073,73,2680,689,1311,2011,255,2834,724,993,1575,408,2499,2004,2402,2001,1715,457,1322,1666,2432,2511,2104,596,2061,1772,124,195,2660,1777,2278,2358,1731,1657,1119,1337,771,2809,293,1261,1282,1891,2034,2766,432,298,673,338,566,118,387,975,960,422,643,257,1258,121,2765,1083,2304,2778,954,2313,2659,1603,327,2956,1982,22,1343,2397,24,2436,2577,1296,1622,822,2384,1628,1929,1632,1249,810,2970,1238,2676,370,1380,2540,1466,2264,1871,2493,2045,2627,2636,2992,416,808,249,420,994,2159,42,522,906,2689,719,90,913,1504,2521,1240,887,1743,2197,1541,1773,1523,1171,1025,1561,766,2814,2731,2456,2101,364,1181,1911,1809,1640,652,1680,1074,244,12,2496,629,1886,665,879,2156,1341,2954,2721,1718,2789,2640,2182,1720,999,1110,2568,179,2421,185,898,2087,2396,1802,2926,2273,1966,1613,1092,1483,2039,1085,648,1098,2089,1210,957,2850,2242,1283,105,1695,1259,76,2210,1441,1967,67,2481,2805,2549,223,1638,132,562,1439,2452,1990,946,2868,2612,1106,2057,2286,2212,1591,2165,1077,1717,2026,748,2270,1024,2461,1904,2987,2643,2080,1601,1080,2908,322,2480,2990,2827,2268,2095,2367,977,513,1868,1193,809,2864,375,1274,2110,564,1796,29,2389,2063,2267,2733,427,340,1703,2536,2798,1195,2576,2170,678,2370,145,1000,1850,1010,2773,2853,2505,2002,2658,354,283,2906,2312,2126,976,2984,1202,1883,2305,346,458,741,1471,1956,1593,176,1287,490,71,796,1830,2399,452,2450,2381,1948,1794,1449,1597,2802,794,1293,1974,471,1198,2075,467,1870,2849,230,30,2669,740,1554,1560,158,330,1892,2875,1376,626,2936,1266,1097,602,2941,778,266,700,638,77,1108,424,1184,2781,126,2847,2586,2638,2094,763,2123,780,539,2743,2919,431,1437,628,1562,912,248,2863,685,2145,2565,1951,2077,62,2544,1590,2832,929,1155,1914,597,2443,711,353,1348,2350,2994,1294,2033,874,2079,573,2226,1555,1384,106,713,1280,829,380,1650,430,750,793,1019,2387,2509,2882,2167,1805,2008,1896,2909,889,64,2294,1865,1201,514,323,2405,1236,281,1053,306,2784,113,916,585,1087,2560,10,8,2795,2281,1450,2178,1816,162,557,464,1161,980,207,1088,1414,1333,236,21,1960,1020,373,1872,72,1835,2730,708,520,2913,731,584,2894,2433,2522,2163,1654,1320,1691,2952,2967,1352,2861,1917,905,2600,279,1289,2240,2467,511,2644,1288,2469,276,2275,964,2698,841,1056,2851,623,2934,1719,962,2768,2451,2581,1015,2762,5,1255,110,1667,2070,1306,693,1114,2983,1385,2935,260,1538,2857,834,586,1524,2974,2692,348,688,2553,161,2924,507,2685,768,2198,1039,2142,992,1458,319,2517,2411,2844,1564,1164,2377,1209,1615,1055,1544,2149,2819,1057,2756,1740,2320,779,2775,1551,1307,2925,2388,2574,654,1559,1321,1700,2366,1505,475,2016,2256,1027,671,352,263,641,286,1664,580,441,429,1180,1910,1856,933,2181,2656,1961,1598,1168,1725,1867,47,2318,2484,1103,123,1071,795,192,2238,444,554,1677,637,530,704,2938,2081,876,1381,2158,734,59,2594,1509,2523,336,611,2512,2385,184,2473,2623,2465,171,548,902,1390,2558,2044,307,2996,927,1736,1354,403,1636,2939,864,2494,1465,950,2995,1761,690,390,669,1237,2218,1708,2674,2416,193,650,1549,1529,1927,85,2175,1510,761,1848,896,2173,844,2570,1913,1519,492,1726,1373,2049,886,1070,859,2966,2234,1478,1749,1681,1753,1798,1518,619,1186,1129,108,2510,2,1770,2880,2429,1862,2296,605,210,1817,1614,1501,2872,2300,1192,547,1241,1941,831,2213,2133,1386,749,2897,2460,2009,504,502,2140,219,670,812,1663,1738,2285,1534,2607,1583,143,907,2917,2029,845,2410,1678,1732,974,1739,1537,1457,2541,1122,2962,937,2291,470,2556,934,303,776,955,1232,140,2289,2112,1476,563,746,1576,2546,1179,200,659,148,972,1068,1975,218,664,1328,2639,2879,2351,540,65,1610,631,125,1880,2335,2943,2763,2386,2266,2738,302,317,2657,1417,2116,2115,2958,239,1624,377,1305,2928,1928,2596,1113,2912,2490,1268,1965,527,1011,2551,1641,559,1781,411,1969,989,461,1008,2151,2821,2605,1533,1239,2792,2569,2023,1118,1937,1668,721,1820,1331,152,2375,1602,1662,41,2314,261,1126,159,2715,1273,1936,2513,1829,985,406,2898,369,2109,2274,2888,1908,2287,2986,1774,233,2808,2319,2392,2437,1177,318,1724,337,668,616,915,2590,116,811,2208,2838,100,703,2030,1993,1383,1005,182,1213,1763,899,1931,2972,1349,2618,791,552,497,361,843,2668,2193,1635,1339,1943,2720,979,404,920,355,1589,1023,1076,468,737,742,438,2776,1580,1425,1445,170,1658,2413,259,2890,782,878,1569,2595,1052,2883,2628,696,2168,2420,2225,1379,1697,99,1981,2770,1812,1689,1953,2791,1481,1366,684,2204,20,1780,1045,542,607,231,2105,1182,2086,2308,1512,1043,149,1924,1402,1578,758,1326,2982,120,508,138,947,418,294,816,2103,526,459,190,2714,2988,767,2699,488,2186,2488,1950,1543,1784}
{1498,2666,1609,2427,1827,1037,1443,1423,1077,36,2926,2436,1542,1638,1088,2425,988,859,890,1400,2495,1038,2528,2639,1090,1188,2420,1033,1063,2181,2615,2332,2638,2183,89,1112,371,2792,2686,624,766,1905,1808,2982,1155,1105,2990,202,1832,1210,1414,551,1701,1889,2736,2548,1715,2811,2600,2171,1111,1898,447,1539,1129,1609,861,330,272,224,2528,210,1596,432,432,2794,1463,2063,2006,670,2988,1090,1119,1264,1566,1980,99,518,2043,951,2572,2382,1014,1823,1886,531,237,1935,734,2121,2420,323,410,141,2354,846,1411,2077,2584,431,427,1059,1524,2491,1643,2902,213,917,543,2193,2691,2454,1289,865,2095,1751,1165,974,2409,914,2758,1492,1058,1932,2034,2136,1802,737,784,1198,2952,1419,1809,294,2342,1047,1750,1046,2379,1922,1923,2314,605,2524,512,223,127,1836,2995,1323,1826,1777,2485,219,1985,2229,1422,1817,1165,2671,1258,2828,2375,939,847,2938,2370,1639,354,1796,2896,2844,2709,1930,1381,2036,1819,424,1306,2441,2562,2126,1461,2443,1241,661,2896,2857,1599,2281}
Returns: 40783.27414302655
1000
{1936,1266,1722,2313,1170,2956,1304,1038,379,1456,1188,2546,1795,1465,767,2233,2417,1272,289,816,1831,690,1684,302,861,2289,978,899,1401,1702,2282,2286,186,88,2705,2298,1510,211,1432,2392,998,2202,290,2273,456,1961,814,79,262,256,2477,746,1052,964,1977,2499,1693,2458,1260,1846,2160,1705,1089,2816,2863,807,1956,2619,1864,1474,1960,534,464,1064,587,441,1579,1774,1261,1205,2630,2511,2578,2967,1265,2194,2011,738,2132,876,1406,2280,105,2944,2801,1856,2732,2121,1186,549,2496,619,384,422,1762,2734,1379,868,1496,245,819,2862,556,1346,1365,631,2569,910,2207,2436,2314,2802,1225,533,673,1910,2006,977,268,1642,118,939,2668,1160,946,1415,250,103,465,2349,418,1074,1409,1313,1010,1995,1771,824,928,2355,13,1944,2112,70,2836,581,681,2724,2125,1571,2075,1912,2516,942,1115,2442,858,2848,1681,846,825,989,235,421,233,137,2501,358,151,1621,1615,148,1988,670,2897,1067,2884,1146,2190,1768,370,1987,2826,1993,929,1197,903,437,2296,745,2256,2123,179,2847,471,1193,1592,963,852,1609,2867,347,2173,2165,1686,284,1043,280,2250,772,924,2062,1184,1529,2227,1540,2716,2290,138,1370,2825,200,2413,1255,2845,1108,784,605,1769,2300,2241,234,1558,1024,2484,799,1229,1748,552,845,244,1760,589,1066,2384,2126,340,1807,394,1978,53,2964,678,1667,759,717,694,2185,1161,2027,2154,1662,2122,2285,239,2430,1823,180,1853,932,1396,1453,1086,2851,1292,843,1711,2451,757,316,2612,1766,1706,2850,1727,1156,2242,665,561,739,698,1545,43,2568,2462,38,2556,181,872,397,106,2071,1410,1402,1625,2693,1093,1327,653,1091,1500,82,1101,847,2550,2812,1837,2193,1477,2331,2356,1957,255,1278,721,1857,480,815,543,573,1062,1614,318,2937,104,956,1375,779,645,469,353,926,1394,944,146,2992,2240,544,1594,1391,2069,2023,579,1725,696,2472,1742,892,741,1505,112,882,1104,1194,304,2597,749,1032,2764,1791,486,2053,826,212,1276,2804,2232,2672,1844,1102,1427,2861,2397,2883,773,1637,2149,1468,2697,1367,2224,1744,247,700,586,1733,1536,2077,2141,442,1462,2933,2938,385,1132,1798,1466,279,1178,1888,1217,189,2736,1874,1508,78,408,580,387,1821,333,2767,734,1297,1680,1295,1708,1307,2538,2951,2675,878,265,2918,29,1437,2811,2970,2909,145,45,1162,2405,1419,931,286,1659,364,1136,1071,93,2237,2573,2658,342,1199,1288,2557,2277,1058,611,1927,970,74,536,1277,2650,1601,1928,2574,457,1222,2707,1026,2183,95,651,2470,94,174,2157,2955,2468,1605,2521,64,2176,2717,1311,2050,877,1028,780,177,1841,1412,424,1446,1746,2404,2081,537,2868,2371,599,2691,2474,201,25,730,2666,2642,1934,431,524,2747,683,2784,2444,1994,632,2601,2362,2088,2294,682,2870,2067,2291,600,1803,888,2015,2129,531,16,2570,948,583,987,2741,771,1847,2931,160,2762,952,1360,870,2489,459,1435,2135,1666,1871,230,269,1577,2828,1294,1569,1820,1973,1339,2310,1246,1407,1389,1126,2902,1022,2875,1649,523,450,438,196,701,2216,2151,164,1433,959,672,1190,842,515,635,1487,1732,270,966,1692,1232,2684,1819,808,648,2905,1669,1006,2628,2696,2094,107,960,2673,2653,1534,1142,2464,1757,1480,2547,953,2133,2743,1696,1694,1001,1865,329,2885,1172,2831,1763,2961,131,110,2541,487,1683,2315,1573,2731,1982,2971,2876,993,2900,2794,925,1714,726,311,1189,729,1325,2775,484,1513,1719,2792,221,1393,1382,2402,1833,1180,2857,2820,2815,2899,1165,891,2959,2980,1876,1738,2128,1930,646,1869,2155,1242,1673,909,499,1976,1166,452,2231,2528,933,182,2251,296,610,2111,1109,2339,1830,769,1986,2855,2579,166,1009,2408,1007,2481,264,2770,1604,1538,1287,11,1904,743,997,2688,474,2530,2261,1211,73,881,1524,2923,1962,63,326,886,2799,585,936,288,1775,1575,1828,1372,2866,165,2606,1958,1475,2781,1736,1653,1460,1779,197,60,1992,2671,2308,513,168,1319,621,2144,2930,7,2564,1801,1773,2834,1174,1011,526,176,671,1794,1690,1612,1728,1591,336,941,2948,950,1301,1489,736,593,287,2806,911,1623,1743,2187,2721,2124,2808,149,2989,1855,2222,2949,2662,1854,1088,1931,1616,972,2275,1445,514,1090,2337,2243,346,2491,1096,1522,2846,1227,691,1735,1835,763,334,1092,818,836,1792,1723,2976,1050,306,91,1889,2916,2633,575,121,2145,666,2321,2449,2456,965,1997,140,1485,679,1259,2592,2493,388,1674,1827,372,922,2840,423,1916,150,833,1929,2150,1868,2656,1713,2973,2595,2360,674,129,2259,2109,2581,2279,298,855,1414,503,934,2469,291,563,415,1624,1729,2385,2616,37,1220,1567,2054,663,2070,634,748,692,2577,354,2428,1219,1003,2328,2982,1894,2779,488,2480,699,1113,2028,1598,866,1025,351,2981,2395,2201,2800,520,2910,1759,30,1565,2730,1634,2278,2271,1588,753,1836,1731,1340,257,1143,1568,19,505,1429,1695,2153,1630,2756,98,1383,490,1488,2258,332,75,1127,1322,297,2393,546,2163,71,1289,374,1173,1633,425,1270,271,1404,1886,1449,2347,1357,1441,305,61,1527,1450,1359,2604,2265,215,2,2765,1528,1082,432,2738,594,1966,2966,2317,584,1039,3000,2962,2915,360,2698,1100,493,2113,1647,2026,658,1635}
{518,2244,852,1215,2321,1068,380,2547,1935,228,2647,844,22,575,1510,1935,438,1988,40,191,2345,282,825,927,2089,2719,1059,742,346,2160,1275,1150,948,1685,11,1088,62,2050,1516,373,16,1229,2445,1504,45,1280,653,2905,335,2256,2888,67,2838,484,1070,943,277,1574,2041,1059,796,311,1851,2771,1338,368,2542,1098,1116,1114,946,791,1809,871,2825,1839,1406,2952,1214,2866,223,1293,710,11,1576,908,1031,2694,813,2015,2700,1292,1837,1343,2651,2521,2968,1558,2510,737,2760,2142,968,536,1622,2307,594,1141,2710,2023,2555,1216,83,385,2532,2971,1233,2090,1659,873,461,1998,2862,1335,2523,2206,1895,2955,382,1310,1655,2166,206,868,1480,2751,852,301,765,2646,891,2105,2210,1607,1917,1754,2185,955,2723,453,2783,1381,824,1559,2653,67,2046,1994,1286,49,2951,2015,2196,2204,130,1701,995,639,2998,1505,2721,1144,1769,650,35,265,790,981,2981,64,2509,2608,213,560,2216,1802,2624,877,1983,1333,2709,1890,356,2810,1865,496,2210,2949,857,2262}
Returns: 40743.01556510539
1000
{672,446,924,579,1930,487,944,2477,1173,1688,1436,720,2471,2157,29,2842,2901,46,449,2520,1737,2740,1927,2882,2582,2994,89,1252,930,2245,1303,204,2220,2426,2924,128,1337,557,1482,2073,1708,1966,1243,2717,2633,2401,2509,1335,172,2399,2027,1525,2025,541,2424,1596,5,824,1104,1305,1926,1125,1995,1666,2357,1788,2162,2284,428,158,578,2295,1304,1080,2285,362,1677,473,24,111,1602,1939,629,2388,2655,65,1552,61,2665,1665,234,1312,395,18,2862,2527,2418,2867,2158,2678,2779,317,1464,2478,2606,2818,2647,1956,1911,208,1850,974,520,2661,2693,167,252,2652,2539,640,2536,1133,592,945,1407,2710,389,351,2022,711,1994,32,2393,558,2567,878,961,2279,2159,2475,2528,774,2522,534,542,2560,1419,55,622,2490,2098,1103,1455,2863,70,2975,385,2514,288,1928,181,2190,1534,1908,1348,1187,63,1644,352,2232,2297,584,375,2824,1669,853,969,788,933,22,791,1992,336,526,532,1528,268,1921,1940,1569,1061,611,2202,1527,445,2928,2927,1036,2134,2856,356,948,2499,1163,2287,832,1730,2777,2290,2176,439,2406,2405,653,693,1733,117,2971,1459,2120,710,64,2457,1693,2619,2790,38,1087,2384,2838,2135,1674,2428,1111,3,2498,1351,295,1526,553,867,682,75,1865,1248,663,1655,652,1625,193,2621,581,1991,1090,422,870,1176,2161,1845,1282,2173,127,2580,927,2615,301,511,1563,1202,2934,2989,2720,2363,263,1842,163,2337,313,1488,258,2188,1557,2944,145,1047,2341,2368,1999,1678,2920,908,2802,2671,2300,2945,1530,2938,2057,632,1197,381,211,84,2828,634,1897,691,2167,484,2712,1376,1435,2757,475,69,90,1092,2419,940,378,550,2061,1453,383,784,585,1158,2955,2739,1442,1227,2904,1886,953,2865,1100,1903,1321,901,2264,2700,1291,2951,314,2389,1286,2792,528,721,1519,2024,596,1937,950,1330,789,1118,1756,377,1789,999,468,1894,1667,1573,2513,2272,405,2917,56,2921,2268,2679,2881,8,2344,14,1447,2663,2683,1298,1052,2939,2618,2103,2201,1570,1746,2627,136,2109,963,1685,2400,681,723,331,2129,2442,1881,283,2342,2669,1635,1767,2088,2002,454,753,666,1313,2367,2805,1837,533,1117,763,987,2540,1857,2844,119,1647,2233,1479,1396,2312,1138,1412,1169,2922,2035,628,1055,939,1933,936,2821,2708,1576,911,1221,1742,1001,1101,1508,1741,2354,815,1591,1264,704,2361,1619,49,566,1507,1704,456,1207,1081,493,2533,1916,630,2321,1034,2383,2741,1706,2667,2084,2690,1638,2668,714,1230,2410,1770,1189,1778,2362,801,2524,2365,1005,1449,2786,1358,631,53,2706,577,107,2281,1186,278,1948,1276,812,1521,786,2592,1399,1234,2487,2267,2474,1943,1132,1311,259,625,2247,2413,11,1112,42,2687,2662,130,2440,1517,1480,1599,2622,412,1196,861,887,1539,1357,184,1608,237,2636,2959,52,74,516,2209,1520,2347,2107,153,909,1069,2019,1594,355,1547,2841,2638,770,623,1574,2417,843,1829,2447,1892,1656,298,1803,2381,1309,2546,712,1408,2811,2948,1936,1537,2391,979,617,504,2242,80,408,2897,1441,2072,555,2761,1064,2398,2664,2583,1745,831,2115,345,865,1201,2274,851,2438,921,94,2172,2837,132,2594,2013,2713,932,2501,99,357,1739,2798,899,1389,485,315,1269,873,2891,1177,2452,2301,2868,44,2003,1275,960,1259,1478,2064,16,775,2584,1710,209,1434,303,2654,2776,2894,1653,1814,191,2253,2800,2311,1493,486,2143,990,905,501,1404,874,1030,102,2878,2065,2651,2196,2963,2008,469,802,2764,2250,2817,2459,614,1212,2877,213,2083,650,2100,1320,1954,1620,1206,116,1791,2851,2112,323,937,2364,1518,510,76,688,848,1329,1063,346,2510,1293,1912,858,2610,1734,797,2396,2486,1008,1401,2017,1646,1813,2266,2793,293,1935,900,2810,978,239,2911,368,1720,1505,1256,1798,347,966,835,2791,2598,2999,980,633,81,2049,1844,1093,1585,2983,2310,1804,354,1119,1595,1876,2133,1277,1116,332,2796,657,2545,2339,731,1851,2767,765,2519,2463,2032,2715,1209,1222,1611,1584,31,2993,668,2809,2077,430,2589,1007,2352,248,2203,1469,737,1071,2466,2179,1700,719,972,1696,1400,2402,217,126,1870,1139,707,2230,1694,1736,2236,101,1356,522,327,687,435,2333,280,739,1578,1009,66,2184,612,411,1307,474,1566,2871,1855,846,1270,2883,790,2762,697,2930,2738,2411,983,1540,2155,2460,760,1964,996,1604,2451,1946,2624,1296,1467,1712,462,109,2512,1636,992,1567,975,1862,2046,2923,1889,2468,2119,2497,238,1324,2804,2936,1951,1852,409,2699,2166,1387,141,1031,1098,1758,879,2454,549,1531,2979,2587,72,1692,2613,705,1347,143,951,2889,886,1962,890,1430,934,275,1853,1041,1218,2216,2799,1847,2495,1698,2178,95,118,359,1580,702,147,27,699,2332,667,2788,1463,2919,1711,2163,2118,646,1184,1968,307,1035,2907,1308,1350,857,759,1380,1394,1724,2937,1961,1265,388,733,236,2430,1627,496,1920,1306,2105,1755,114,1223,1760,805,2502,228,2926,157,698,291,2010,2488,2773,1164,1179,2123,79,1590,1153,1251,1822,9,1555,661,1046,644,1213,2736,1152,602,183,2855,483,1065,1226,2472,660,2873,725,2305,2695,1499,1577,189,626,2243,2507,2672,1128,2308,2392,2808,1643,1763,161,1607,2896,420,1793,2941,194,453,1815,2156,898}
{2050,276,2593,1675,1966,1434,740,43,2891,2153,495,2793,914,1138,595,2756,1296,621,251,2264,78,1690,1770,281,2058,1576,638,488,1434,2805,50,38,2855,2335,2479,1652,606,2850,845,169,2736,1569,1932,870,2907,2949,264,368,1013,2047,898,1161,163,2308,2056,559,1916,535,464,1592,1102,1469,1577,1188,11,1453,726,1059,540,2040,2690,1670,1299,2790,897,1414,399,2208,943,873,2419,1787,1591,697,225,2103,2660,624,2135,636,1107,2368,2882,838,1820,1517,2231,2137,2854,2866,546,746,279,1112,2267,914,1999,587,2151,730,608,561,1125,221,2404,1847,813,1236,1939,497,1097,2107,1725,1512,218,51,471,1677,176,1564,1870,1925,320,890,2624,895,2987,2332,2377,2453,908,2670,2579,972,1228,10,948,309,853,733,1257,1912,803,636,1178,2370,1821,2003,2072,131,760,1489,1190,2206,669,1391,145,2496,1869,2862,724,1353,1499,1853,2751,1267,1140,563,183,1760,896,784,141,1747,1484,2882,1603,1425,79,2752,1401,2951,700,495,492,885,372,2463,562,950}
Returns: 40777.08729980828
1000
{1129,1324,1415,162,201,700,1498,1286,1163,1952,756,494,1243,1845,2175,309,2934,2511,721,2212,1337,1688,2021,2894,2773,315,662,1733,2632,2116,2203,2472,612,2097,2942,669,34,2725,1903,2156,1545,713,641,2839,2617,1878,2936,1426,2053,2279,606,2532,993,1086,125,1217,2631,1064,749,1928,2276,2237,1328,1227,2133,883,362,1230,2877,298,1123,391,344,1354,2903,235,2326,387,2502,976,1718,448,821,1290,675,2885,310,2477,1624,2404,2266,318,2263,1592,1120,1986,2676,2391,2695,1826,1769,1535,2153,1373,282,2780,306,1071,540,1142,1202,2364,560,2291,715,154,512,1509,1702,1451,1353,613,2383,614,1848,2746,2938,1420,178,1756,817,2941,1470,2124,1824,1526,294,2386,984,2954,2619,2518,2240,1697,142,2462,28,2231,1646,1520,645,2394,658,1399,1908,1821,2409,1479,2262,2215,2086,2027,1979,2056,2190,2248,2708,2064,421,1054,1424,378,1603,297,806,343,130,1322,1443,619,816,1033,2496,1102,1078,1218,2566,2626,159,921,2073,1307,1091,1085,1886,2236,1749,1020,2776,1052,2486,2989,224,581,330,2397,1576,237,2110,1795,1474,2815,66,1068,2466,1753,2858,1511,2296,2868,1493,701,1388,313,740,552,400,2688,2760,406,2028,1488,1804,2480,2865,975,2811,1124,1943,2533,410,1247,336,1946,324,1599,2735,1647,352,83,513,2270,1147,2337,131,1745,364,1216,2863,828,374,2749,2449,2304,32,2172,2892,38,624,736,1510,604,2594,1070,2131,2120,671,1207,1798,1410,2769,2271,2308,1095,2838,481,2497,1018,157,1119,2176,2621,2370,202,1665,292,1491,383,72,2634,2238,1783,2436,58,1969,1741,2506,937,1464,1295,664,1465,2541,1037,1193,636,2835,195,689,2784,1017,1847,111,1185,508,832,1610,190,1343,1113,1447,1914,881,2241,1263,2609,1765,2810,2140,144,472,1806,2900,2614,783,1296,1002,733,1866,879,1446,1436,2654,2412,1522,814,2709,739,898,2742,257,1537,1899,2272,2188,1164,2235,578,2230,1184,957,1241,2939,1897,1976,589,2268,1962,2925,2220,2446,2768,424,456,2824,928,2166,2197,2234,2109,1773,1632,2347,1655,1339,2775,1274,399,1360,327,1910,2878,1092,2831,1542,1223,449,1577,735,1437,1050,215,1250,1907,2888,2853,799,2310,2501,2398,1747,500,1177,2846,2978,1103,2371,22,1485,1128,1626,2437,1547,1677,272,319,2825,1168,2508,2382,1703,1876,2540,2764,2731,1883,232,1467,437,18,12,2734,1041,307,1264,119,785,902,2344,2498,1299,1008,2698,1711,2282,218,2068,651,97,14,62,2821,2948,1840,176,150,2516,35,2713,2896,173,533,2074,896,2293,862,1292,2377,109,1061,198,2601,1270,2755,1057,1673,1304,2799,2042,1588,2907,1309,1432,729,1607,608,692,870,2173,952,2384,478,685,2316,1605,2710,1846,1609,2512,447,1188,2338,1828,1759,185,402,2214,563,1066,1888,1313,1291,2229,2790,1435,1811,1754,2581,707,2544,2208,1383,2038,708,2714,2610,2297,964,1016,230,1790,1779,2422,1314,880,753,1575,1985,985,1505,773,1854,2570,542,1562,2426,394,1729,2917,419,810,2362,2261,2645,960,762,1708,1924,1596,2174,804,263,2093,2969,2071,2855,674,2869,81,546,891,1133,2981,361,597,939,593,1389,2469,2005,1224,2355,179,359,1001,2965,269,670,754,1137,1600,2302,1453,427,1196,1440,1622,1564,2169,1785,2993,501,1386,1919,354,26,770,1363,755,1929,92,291,1524,1036,1512,551,963,845,2683,2232,697,972,1468,857,286,2573,2306,1796,1048,1933,2891,1725,1500,2450,98,1973,2882,1896,305,493,497,1236,2726,2301,1013,377,667,2490,1055,1351,1567,2146,2741,314,795,2322,2186,585,1877,1761,1852,2187,1742,2061,1272,1538,321,789,43,251,788,1189,2435,2305,2239,1289,672,1594,761,1963,1445,666,657,2874,2644,811,2585,1797,1187,2361,1995,2984,1955,1034,2629,1144,2257,1923,2218,1568,299,229,369,2433,2342,316,1856,833,2823,1293,2341,2063,1433,2674,2045,1922,238,1471,1321,1409,1529,2300,67,4,1234,1972,2548,2000,1959,2864,1966,1361,1981,2484,2923,47,1253,1280,1395,2457,2860,2336,2447,300,2121,1104,1195,544,2002,477,502,1090,33,1975,2325,889,417,2791,442,895,2373,1890,2826,1560,2155,1825,2405,16,2164,680,239,471,2213,1698,1394,1573,687,386,1911,584,1557,8,1770,2181,1715,1458,94,1077,850,1606,285,2101,135,1049,977,2194,193,2134,781,2849,1687,763,2630,2380,271,710,407,917,927,1140,1710,505,576,458,2076,2539,326,1311,2505,2915,1850,2255,1987,618,2032,518,1810,2393,1197,365,2694,466,1746,965,1843,2650,752,2638,262,2489,393,180,766,75,632,2320,1553,1763,2030,727,1587,1332,25,1175,1768,2321,2046,1784,2182,1258,2854,175,2036,2354,1760,1156,1228,1074,411,1406,825,1521,2100,694,2258,2696,249,2254,534,1712,884,1162,1108,663,2623,2979,1069,914,455,1841,2443,2737,351,280,2111,2800,2329,80,2365,2072,1466,1502,2307,1893,1087,1518,1838,2432,227,930,1460,2388,1707,2881,240,2444,1913,1364,1833,2759,68,836,2008,1237,2564,2918,273,2678,1330,2368,127,2058,397,2246,638,1898,995,1151,1721,1831,970,1827,462,1398,333,1220,871,1858,2139,120,955,1051,23,7,1282,559,646,2816,967,2616,2771,2202,2245,2787,1869,21,2950,2552,1365,78,798,966,980,2588,469,1739,164,1533,2668,1932}
{1333,1436,1497,1998,528,1807,1616,464,1768,926,2005,696,1416,424,1622,2876,624,747,1136,4,1527,2340,546,751,1550,2969,2158,1671,1285,2385,1579,649,2364,2222,2563,589,1225,1830,2623,894,489,70,1208,2440,1600,567,1328,1687,1411,1976,227,2785,3,1338,2088,500,1162,60,1206,2607,2677,1143,2605,1134,158,713,1618,1841,830,1100,2353,850,2267,2398,551,1405,1505,2310,2703,1286,1699,2286,1773,2541,780,2424,2203,2102,2755,1799,2066,2993,2576,840,692,1513,2406,1991,515,2418,777,522,1817,978,1246,1960,247,1899,2161,735,1896,2060,1908,879,2345,2961,2963,1366,777,321,730,2041,376,779,1090,2404,1145,2292,850,1371,850,1249,775,549,939,312,1741,2520,1621,1232,2580,1683,2002,2148,261,199,2225,2968,813,2701,759,1843,442,2147,2412,2280,2290,2844,2846,2165,1141,2277,2537,237,1692,337,2035,2153,2440,2589,2057,922,104,2899,86,1414,18,598,42,2587,1136,462,1793,526,1529,2456,2867,2151,755,1578,347,2373,244,869,2443,1938,2290,2418,1148,2262}
Returns: 40736.87606103373
2
{1,4}
{3,1,6,6,2,5,2,4,1}
Returns: 6.0
Teja has cards 1 and 4. There have already been nine turn of the game. The first few of them look as follows: Turn 0: Teja announced that he does not have card 3. Turn 1: Vinay announced that he does not have card 1. (Teja already knew this, as this is one of his cards.) Turn 2: Sohail announced that he does not have card 6. (Teja can deduce that Vinay has card 6.) Turn 3: Teja announced that he does not have card 6. Turn 4: Vinay announced that he does not have card 2. Turn 5: Sohail announced that he does not have card 5. After this turn, Teja already knows everything: Vinay's cards are {5, 6} and Sohail's cards are {2, 3}. Thus, the expected number of turns from the beginning of the game to the moment when Teja knew the exact distribution of all cards is always exactly 6. The future rounds do not matter in this case.
10
{5,29,12,16,25,17,18,30,27,10}
{4,6,5,23,22,29,20,8,12,3,13,16,1}
Returns: 133.0880654696573
1000
{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000 }
{3000, 2001, 2002 }
Returns: 40757.33319150576
3
{1, 2, 3 }
{4, 4, 5, 4, 4, 5, 4, 4, 5 }
Returns: 26.14090909090909
2
{1, 2 }
{4, 4, 3, 4, 4, 3, 4, 4, 3, 4, 4, 3 }
Returns: 18.285714285714285
5
{1, 2, 3, 4, 5 }
{6, 7, 8, 6, 7, 8 }
Returns: 50.49952347270378