Problem Statement
For the purpose of this problem the sky is a plane and each star is a point in the plane. Note that the constraints enforce that all points are distinct and no three points lie on the same line.
The blue giants are always visible. For each valid i, there is a blue star at (blueX[i], blueY[i]).
The red dwarves are sometimes invisible. For each valid i, there is a red star at (redX[i], redY[i]), but this star is only visible with probability (prob[i]/1000). All of those random choices are mutually independent.
Fox Ciel thinks the sky is beautiful if all blue stars are located inside the convex hull of all visible red stars. Return the probability of this event.
Definition
- Class:
- BichromeSky
- Method:
- totallyCovered
- Parameters:
- int[], int[], int[], int[], int[]
- Returns:
- double
- Method signature:
- double totallyCovered(int[] redX, int[] redY, int[] prob, int[] blueX, int[] blueY)
- (be sure your method is public)
Notes
- The answer will be considered correct if the absolute error or the relative error is at most 1e-9.
Constraints
- redX will contain between 3 and 100 elements, inclusive.
- redX, redY and prob will contain the same number of elements.
- blueX will contain between 3 and 100 elements, inclusive.
- blueX and blueY will contain the same number of elements.
- Each element in redX, redY, blueX and blueY will be between -1,000,000 and 1,000,000, inclusive.
- Each element in prob will be between 1 and 1000, inclusive.
- Among all points (blue and red), no two points will be at the same position, and no three points will be on the same line.
Examples
{3,-3,0}
{-1,-1,2}
{400,500,600}
{1,0,-1}
{0,1,0}
Returns: 0.12
There are three blue points and up to three red points in the sky. The convex hull of all red points contains all blue points if and only if all three red points appear. The probability of that event is 0.4 * 0.5 * 0.6 = 0.12.
{3,-3,3,-3}
{3,3,-3,-3}
{200,300,400,500}
{0,1,-1}
{-1,-2,-2}
Returns: 0.088
There are 3 cases in which the convex hull of all red points contains all blue points: {A, B, C, D}, {A, C, D}, {B, C, D}. So both C and D must appear, while at least one of {A, B} must appear. The probability is 0.4 * 0.5 * (1 - (1-0.2)*(1-0.3)) = 0.088.
{3,-3,0}
{-1,-1,2}
{400,500,600}
{1,0,-1,123456}
{0,1,0,-654321}
Returns: 0.0
Even if we get all red points, we can't cover the blue one at (123456,-654321).
{0,-2,-3,-4,-3,-2,0,2,3,4,3,2}
{4,3,2,0,-2,-3,-4,-3,-2,0,2,3}
{501,502,503,504,505,506,507,508,509,510,511,512}
{1,-1,-1,1}
{1,1,-1,-1}
Returns: 0.6555037822772468
{0,1,-3,3}
{0,4,-2,-2}
{200,300,400,500}
{0,-1,1}
{1,-1,-1}
Returns: 0.06
{10,-17,12,-11,-13,-10,-15,14,-4,2}
{8,17,-13,-19,-14,11,17,8,-8,-15}
{412,360,656,876,984,160,368,873,223,128}
{-9,-3,6,-9,-5,4,-3,10,-7,2}
{-6,10,10,-9,-10,-6,2,-10,-9,6}
Returns: 0.34037052019900405
{-943946,938430,-182246,767132,531495,-404182,296015,-976593,912785,-108481,-970742,716141,17544,-149743,531320,799946,541367,-604330,-557611,-658006,446580,-454457,-210425,-881570,261271,-294320,608265,627447,-179877,-694049,-550406,-352007,647853,-302644,991349,368681,725172,329888,-649873,-504094,280891,835135,-256106,499941,105213,-61603,-621275,-904483,-801047,888590,101636,-286916,786982,-963619,-688279,-351146,837676,581319,-295007,-763804,158687,240633,206484,-825025,70518,-696717,60294,254443,-117652,947840,532885,892545,819373,-527622,88278,-438957,645155,700941,-336147,743163,-837802,-143011,485665,628710,607579,603120,331090,266197,751186,-867912,-853984,-910822,-457570,-801849,720328,-428084,-182077,171107,67334,230637}
{-422631,-70938,-84134,720469,227675,-57553,862917,505962,-55508,-345075,278598,397123,-458561,688883,-44317,-100002,-112218,-440677,-550934,544286,-433818,-328314,-478329,71680,-993616,-269939,514755,361681,-193094,884951,-112086,-876514,153912,-986196,-649710,-663641,426012,-78223,-129394,-326917,699630,288290,392633,-909717,-976740,-269581,702354,311117,-116222,487887,-608312,313091,-653239,447393,623131,-8617,-74053,-608846,-461655,835624,171238,957012,625380,712488,342117,-283900,860163,-110973,333265,-299322,327496,-59216,280321,-744924,480466,-273619,-878555,516866,-503574,906414,258897,37657,-215334,296760,214692,226552,-854992,-879620,177901,-175367,682790,481246,368051,994055,-944697,542953,736536,-55438,805127,803186}
{19,706,565,973,802,66,693,178,845,812,813,837,975,239,556,623,991,587,171,193,674,254,639,565,191,478,140,474,978,740,838,794,828,261,320,46,87,698,191,919,285,775,734,820,928,69,882,257,761,74,61,260,940,157,309,711,624,37,652,131,721,442,959,770,527,880,994,322,31,537,992,383,15,642,525,280,428,587,550,166,966,401,526,922,96,677,505,950,315,5,770,17,82,552,767,518,709,452,161,619}
{28486,21257,-75907,60883,-37261,83367,-89972,-77016,-86353,-29274,-63741,13773,-36443,36007,70093,-59376,-95603,96637,73422,89757,17055,-53353,16861,77924,39983,8248,-90093,-31578,-37390,-42682,80320,-98626,46855,-88564,-68636,-23921,-75189,-16139,-76811,2191,-4446,2630,-91344,-9156,5104,28386,66609,74471,-89240,53463,-85401,-68425,91843,-62271,-32159,67810,82951,-46793,-81420,-92317,-93590,-94846,-95586,76233,95190,-33655,-50193,-5581,39375,75729,93967,-32425,-94596,40236,-58567,62965,-64260,-71816,-82361,34388,22276,-98567,-17255,-83821,-57533,67669,-57913,-60953,-39878,30285,66975,-18363,-66140,9591,76058,-69505,-74146,-59490,-21754,-70352}
{8510,21521,15863,87293,-46339,44732,63826,36291,-78108,59473,-37476,77868,99662,72255,-34149,84180,87167,-64430,51790,-34596,-36016,-96720,-87444,17029,40344,-42329,-31974,-60037,-24458,79176,-10774,-64353,36301,-8421,93746,-85202,38581,91885,-14740,-74411,-79017,26297,-78449,78838,86564,-74233,59714,95899,-9729,39552,84325,-6287,31968,13475,83133,76822,-92293,61347,17366,25812,58627,86050,-9961,-47131,40955,44880,90873,-24224,-11050,57289,26447,-35488,61792,-67927,-44245,-68719,80539,-6444,-95666,44640,-46512,22807,-40331,-73401,62344,89798,-89281,39968,30818,34473,90841,32248,76505,91532,5958,93610,-51170,4264,46999,-76501}
Returns: 1.0
{698298,-680325,955833,941105,-235628,11327,-861936,-654379,151372,-859793,-654591,255656,957594,20990,984377,644413,-921657,-476706,406391,-121180,-548360,512239,-664397,988070,-142853,236468,610881,991811,869611,337785,831185,29245,-228456,-214843,803954,7359,-853209,609660,210710,-507734,916639,-969112,-79839,-715126,-627275,247710,966244,-112446,691522,229964,-659059,-673296,246916,-12415,-587590,162593,830346,323241,159229,236661,694950,27540,-508476,-133837,-524154,911353,-787382,7730,-739246,-484431,-442280,-235545,-820268,-903227,-267754,-657611,562302,975774,-752389,329552,-156947,-836611,-583682,807896,-642458,-721933,-92597,68230,-536612,551718,-604359,363044,424745,352604,141388,-124800,-764374,-559828,467561,167464}
{-824709,64148,423684,-292449,31693,564902,-606696,146525,-190519,135516,284632,-343992,289707,805553,-305818,754466,719005,637037,973787,362293,742091,125229,-584285,-813993,-564397,431742,-969926,577768,269158,844552,661528,363079,451630,-384962,722117,-242524,783444,-623147,-150191,250039,-903042,-251363,245229,-420685,486726,-544144,-577775,-105569,318950,-525407,-886327,79656,-479008,-20175,-148095,490828,325820,-544331,161051,-506673,132670,-15301,772815,-516313,758465,-166871,-965706,-999195,-128292,159821,-334418,-813096,658084,292665,514875,-203776,499175,178095,921340,620360,827020,746052,620921,93274,-172763,766076,-959201,-996090,-39050,756171,-612080,-841637,-305617,-361918,707783,370082,-378713,-298762,-807382,316522}
{1,2,1,2,3,2,9,9,8,6,5,7,5,8,9,5,4,7,2,3,3,3,2,9,10,9,9,4,10,6,8,8,6,7,3,6,5,10,3,3,9,4,10,4,10,1,1,4,6,6,2,6,4,8,2,7,1,8,8,6,4,4,2,1,4,7,10,6,2,1,3,2,9,4,6,2,10,6,6,4,1,8,9,7,6,2,4,10,3,2,7,3,8,8,1,8,5,5,5,8}
{-17844,-9313,43906,-86621,-64390,62868,30617,-96187,81968,-99158,45168,-84516,1084,-92182,-65936,85386,-44688,-40399,97916,5781,5926,-79566,-32286,48696,-66384,-88692,-61900,79749,-5526,76582,-94815,-42161,-84030,92434,-26975,12232,61006,4403,20232,38552,5875,62933,-22344,-62278,88873,89989,94709,30395,54486,-37877,42433,-84103,-52181,-93829,-83718,73019,-91997,-34426,-84205,49341,-93972,14512,-96171,50673,-12335,58990,58267,46108,-29439,36218,62619,-90749,-46709,-42757,-60422,91920,17835,-56924,-49170,16144,38336,-7279,-37051,93699,39744,60844,-83568,-10978,45318,-11763,71883,-10769,17254,7692,-66783,74428,-47616,-11900,45066,60910}
{-15629,-13030,83276,-24434,45041,68916,56689,85235,94497,-58319,-70227,31288,-30863,12836,-13130,4695,32895,96706,-3922,-27842,42168,-47676,-33494,11950,79658,27932,-81128,91302,75597,80486,71666,65787,-7629,-92475,-69943,51324,-61627,-84222,66679,26951,-96169,2231,-48214,-58117,5728,-53858,29534,50765,-62620,82739,54630,14746,1305,15653,-44146,-14860,22348,-20440,49606,54406,-97748,-89520,-89205,-50834,-59835,50552,-67102,8868,54143,63858,46371,-81640,11313,-44472,-22406,53780,-71041,-12430,-37284,69900,44531,-22040,-58348,29990,-708,45849,69935,-87710,60522,-58572,56544,-21391,-71726,76094,61008,-51676,-46503,85795,-59694,-35595}
Returns: 0.0019750454086125448
{-243946,-514627,-760430,-910836,-112613,-672262,-953276,-627545,283979,-841373,-345385,516643,40217,205307,-292901,158315,-475466,-144929,693776,-43194,-597783,401617,-699345,-701186,729623,793107,-662116,379313,-862037,-720543,-948654,-40104,-953215,-527146,-152510,-975721,189535,-915040,820418,-535184,-921276,267107,-848319,502324,-825567,-239669,-955308,-763407,657752,356179,-368520,-716224,139020,-829822,128833,-972225,-86203,478529,217183,-588984,-538046,529971,835511,-401337,54365,-587624,-26938,-561152,244362,435769,-581052,145767,949969,-271597,-415504,-788981,-712861,1191,-371254,269425,-221148,915706,494943,512545,-912821,122037,164240,622693,845966,-56598,840794,232585,621492,828178,-833590,241495,737513,576328,-926992,594212}
{218242,-119849,180674,-604691,-49324,502598,381434,633345,551055,226865,-805229,840564,518145,-317732,541546,-586880,-100879,640899,171151,479533,-403967,489818,-918879,73232,-140464,-820826,-525217,-334103,-704499,975419,143147,850403,-743763,497999,571162,-73458,259185,-726891,-333103,673897,-890292,148364,187104,-713798,379038,-165269,645684,-703014,-710701,-326711,445640,180573,-40775,136748,777092,430492,-939625,972096,611858,-292187,109719,-339019,500307,552081,60885,-733329,-94368,999066,-316760,823951,675680,910085,917477,-472147,951812,-944996,-170730,408758,140831,-308103,-109042,93621,-146247,133926,-970708,695204,-420040,927408,694535,-73880,66058,-815626,-640677,-248345,-628568,-664773,745314,-830159,205963,34535}
{7,50,17,18,25,16,3,38,11,22,2,28,6,25,1,14,33,46,16,43,49,10,40,8,30,2,25,41,30,22,9,48,43,5,32,35,33,21,34,25,37,24,46,12,31,37,16,23,45,24,3,49,46,3,41,25,25,26,42,5,46,20,5,3,50,49,36,3,43,1,38,48,33,19,46,31,27,44,27,6,3,13,25,36,11,15,35,10,37,11,1,12,29,11,33,18,41,4,7,18}
{43999,63429,15600,-84715,52520,38905,61321,97301,-63494,57470,11644,-38975,25345,23884,3331,44632,-77797,20017,-27639,57179,-83833,87614,21955,74610,-79921,51084,-3437,-19322,-61744,62708,-51223,-58761,-67998,-87505,-16340,-27738,43926,-88878,29334,-62770,75487,-4879,97927,-67514,-55325,-8914,62956,15113,-91208,-79136,4533,4302,85668,-11822,-4599,23988,-56025,48343,-14009,11888,38481,-46526,76715,-23536,-626,-78908,-57845,-49101,-89655,1853,-54502,-51047,-21803,21355,-55301,-19504,-1546,-51841,-15211,48903,95315,27645,17101,56116,-62944,30895,93268,-19967,-17057,-21405,-99524,-1011,16484,21294,-20417,-26585,47103,76347,-56082,19248}
{73206,12371,51673,25890,-89403,77364,-88397,30059,-60410,74614,25981,-29719,-81492,62402,-17369,-98992,54362,-57162,47535,-26601,46356,-90546,-17048,49453,84688,28571,-13349,51298,72057,9897,49163,54210,99226,-27444,71600,-49058,71327,-40482,68439,-92715,4152,58101,-73244,-11047,68470,23467,-45166,57287,78352,5103,-18752,-68112,-52563,-52395,-61776,-60784,45603,-94893,-28626,41056,77222,72844,-24342,50056,87344,90228,-90896,-47195,86466,14834,-56605,94598,39278,-70831,29899,42358,17932,3005,-56824,20192,93070,65972,34251,-43713,12186,55861,-74969,-90911,-36425,-22131,-5359,-20253,-8854,-54471,-66600,-52347,52686,49610,-8990,73225}
Returns: 0.10895520158427913
{628473,-323772,104780,-999359,-967910,285456,-72640,212897,-745087,321622,140199,-196194,681205,114542,950544,924248,81756,604318,930237,948895,-451531,674485,569630,-826376,-373499,514854,365363,-703716,817913,534762,847138,45704,254287,-415624,500878,-768468,-28429,825464,817805,-796883,667105,-15322,-792116,282838,-842080,-179348,783889,-271485,-930630,-658339,-52265,-841631,736945,-412761,-227041,157723,-568802,254503,-897820,8797,643059,958131,-334074,746445,974790,-734646,-26240,-861716,-871135,-467394,-376581,439228,-338430,-812585,859325,-893390,834512,-184612,771603,-998339,844501,-533498,467464,-748847,857783,732363,34559,-972374,-797064,468755,-718574,786931,-375237,957311,-626263,909004,-731966,523471,499487,-63287}
{478547,-680155,-988622,667560,-829628,-785882,970835,-132010,731207,-912329,871558,349303,-641912,881259,-580980,328456,-808529,354028,936014,960218,467182,433232,-864511,202403,527965,-222879,831654,-11587,418959,918330,-845759,-920687,892953,-821161,992518,-828583,542159,-196362,398525,-522167,604003,-680800,824011,-366845,472957,724307,-286006,-793391,-438592,97512,575646,886419,-806366,649865,-476892,-791563,-481680,-92304,-556093,446904,-573076,-501748,-531494,-891240,-148235,-419262,-391162,876047,280723,-858270,-548324,804535,214952,322974,-763488,-674642,-649044,-523035,-457362,497385,414199,525385,-934184,-516960,499456,-445587,785076,311811,216137,-906255,860729,-40006,-75957,584218,-471433,364537,160441,126853,642167,330573}
{161,141,77,36,10,189,105,144,69,121,56,191,85,129,38,194,30,191,130,150,196,65,96,92,11,108,96,137,38,149,159,78,98,72,163,38,178,187,106,85,178,114,177,197,118,50,7,73,107,24,26,61,171,194,150,49,115,75,19,3,126,185,117,100,50,48,148,185,96,198,92,82,94,102,157,44,94,88,186,168,126,134,4,139,144,23,22,158,98,5,144,158,93,1,166,131,80,124,56,59}
{74609,-40133,43791,-520,-8874,72164,23951,-51175,-92233,27452,-7545,-89376,-16382,-46611,-99664,-48709,-71634,52971,-65471,22977,86634,47453,32978,77411,-76965,27923,5860,72656,21566,-13529,73411,99591,-38717,-1755,28565,32199,36815,4807,-29201,-49644,24283,13522,-8806,97802,-46003,-99668,5981,-4744,74391,-51008,48855,384,-62239,94580,84512,97812,83928,-18151,50176,-27179,-95441,-90957,18227,-52805,-53751,43425,-60577,-66802,18968,67469,5530,-27314,28220,-27017,32680,72774,21357,-48571,16637,-45688,14345,67615,-7548,7864,1917,-62627,-19051,-56721,-68433,90204,-30494,86116,-99055,-92904,-40459,-43707,58936,94235,55652,-44859}
{45807,27613,74420,-82077,65255,-38007,-32155,75025,-94833,-76292,39403,41757,3364,71559,-62236,-3076,-2989,93988,-23414,64413,-85953,-4164,-49369,-53253,-3318,-3966,-87553,-7996,-4900,-700,70763,47500,-95293,66453,14678,-26496,71196,-14993,16739,4601,98992,-24952,-89385,96172,-11493,-37880,-73353,50991,59216,-98879,-47216,-54000,45479,-28986,-11140,-99677,-90037,57177,-23243,20475,-32562,-98003,-40938,-62398,37456,-30801,-25929,-38658,-35248,-54483,-93228,-24354,10672,90694,-65647,-67517,36519,25511,92225,45845,64211,88353,-13544,47423,8716,-17207,-72367,-86918,-28107,68041,-73747,-3286,-78558,18468,50694,11600,76259,1000,36651,-39721}
Returns: 0.9193923023275828
{-608161,-169491,-496947,923185,-636611,885318,-285178,-507089,466505,24134,21836,70248,-157339,740495,-804364,-651037,-870001,-663648,237825,139321,262547,-634959,-589641,894289,601116,498707,-376717,832251,782823,384102,-569258,-289868,-830793,-108572,250671,227127,-731007,506432,638390,-592744,564181,959310,15346,-687886,-10032,608427,-63579,-965793,-150575,869750,422590,-700412,-780495,880248,-747380,937480,-655918,-13441,-841628,-681710,386515,-796588,-148511,359538,-868297,309652,951604,503606,-36183,653943,194406,-926966,-799130,-599249,942033,79501,294192,-185586,-914241,17108,-880228,-536025,741194,-493260,-480489,-790517,-434121,-755176,-468238,819653,-909558,408582,982147,783867,-940756,-143526,249055,-978153,948413,299870}
{862873,-266489,637653,-413686,153399,-558091,-460621,-685577,-190845,-118685,-164922,-140274,-317707,917138,-300381,692582,556324,-369691,112939,-377375,-106671,149673,-437154,630014,431615,396913,336739,-927854,-214135,-216352,156016,-63310,-762797,596496,813003,67169,520232,-736766,-494498,-786904,-80727,698801,-45825,-845601,-751443,240919,238541,579328,712056,246430,-928097,911113,-124714,372131,-625567,372756,85,-543705,433809,-67046,-569408,-922900,-103348,717449,-178661,-632166,-916720,271552,254797,-179856,-905763,-554298,-855559,-522776,703807,-639788,791646,319247,2836,-846537,698143,-209274,477056,194905,-588462,669102,226578,54981,-334444,-513848,422183,126802,-77731,905631,-357996,491465,-488442,358079,-161049,-501417}
{94,1,5,3,53,44,4,136,138,49,30,130,127,119,49,15,55,42,25,124,120,125,27,4,111,11,7,132,42,122,35,147,125,28,35,59,75,123,97,148,63,54,122,40,118,47,115,35,129,148,125,30,2,127,141,5,19,39,74,94,139,150,85,28,147,24,3,85,24,93,53,33,150,27,117,110,60,53,60,110,15,108,60,107,116,125,48,94,114,29,49,37,75,142,148,115,59,77,32,134}
{5985,6305,-31542,54600,12496,52113,86310,-42546,-46227,88723,96818,-68673,-38263,26068,61065,-15504,-29451,-90356,-95899,97820,66143,-30841,-29452,-7587,15162,-59326,-71275,63845,82014,-7255,25867,80879,43354,73365,35072,74856,-46235,57510,42987,85248,-71940,93404,-22662,-7140,24691,94577,83556,92189,-91669,44583,65064,52297,-39332,-56045,46847,-17786,76866,-27504,-89641,-67054,-13690,60220,-51263,-71305,-36602,29636,80685,-80213,92933,-66078,-95717,72051,-52672,51987,31314,79598,-84452,-97056,-48884,28817,-67373,13794,-52521,-84871,68632,-84247,-41481,-2673,-10620,-38559,-88406,-89068,-23819,57085,45443,77428,77482,61556,22975,93211}
{-7936,69548,-92044,22442,77160,78334,-90638,51979,94534,-31665,6748,-71375,-58431,-59561,-43800,60868,67485,80266,52805,-70904,-82822,-52160,-74300,53865,94925,97758,20092,-91329,-84102,-94992,82641,-94930,-8722,-93444,87603,61224,19910,73285,87462,75943,-93522,-23631,35376,-87604,81660,-40476,-61899,37290,59032,20422,43091,-8783,-48753,-72546,93699,51254,-71360,10808,87495,20037,-89406,51850,87346,67628,-60117,-34872,-45663,-513,15874,62366,-79296,43565,9311,-74909,61196,88770,53382,7082,-74434,29248,-70579,-52860,-11463,-7108,-51093,-49193,3989,-12096,-17305,-33999,-45376,-66703,85453,76773,55680,3173,64016,78947,-52011,-11703}
Returns: 0.6980585814095543
{-601703,125332,86168,-769632,-879737,-256752,-111226,-305331,-703379,633261,-29234,88926,-986966,343273,-98558,35550,94279,241409,-50742,526400,407279,-664456,846684,-831546,66787,-967587,-885445,710908,187451,245755,658882,373916,170477,-472114,-631386,630190,611155,-893981,-319000,-797537,-285529,656039,-963533,-679974,667890,-221837,664979,61398,150320,-302446,-837735,897396,-401046,-104564,229522,-491254,-93532,220451,671419,670194,-1783,316879,120551,289851,-540307,987677,-907382,-549152,-377233,679250,217839,-949555,-755208,-938683,-771536,959599,-795714,276023,-820264,-176954,459707,254875,-800350,724500,-130088,796985,-259447,166013,-409064,-895681,-876814,-493550,-463427,-50137,846183,869028,122447,-154607,-559533,531038}
{-216605,15237,655724,608337,-245306,866339,-796698,499853,416045,707456,-799195,99449,-733588,-201062,280046,267588,730344,-540101,-562843,330308,739174,684648,975166,-812440,288755,-119145,-9898,-118017,-16302,676307,658048,24460,-704759,-900767,-57012,88946,583849,502240,-353900,-749148,-460195,-165344,39700,33947,101216,-665777,-634446,654357,-567010,885941,167625,140315,392169,-6571,-26902,897170,-539753,-963391,-732669,365516,71151,655901,647742,-742255,477233,-583532,112532,110844,-745549,991613,13766,90669,-704760,889692,760276,-649208,-534288,69988,-434256,-594157,717795,769249,690007,-69559,674606,943248,-524248,778169,218871,824890,803957,-138508,685656,330147,991144,-804876,-111222,-814769,593454,-776378}
{39,58,100,100,97,62,87,19,25,76,45,88,56,98,86,84,38,69,81,45,53,7,16,48,89,27,43,73,92,38,19,91,33,73,93,75,43,72,11,52,29,35,43,18,93,49,85,77,100,44,4,45,14,20,14,70,1,77,90,7,17,44,80,13,39,59,18,100,44,28,30,47,49,61,77,86,91,11,72,89,94,1,47,47,68,64,72,62,17,34,30,72,95,93,97,18,9,31,7,39}
{-2331,-70828,-64589,-32217,25391,18406,-18092,45362,-95174,-75958,-79448,-40950,30105,-71537,67303,-74153,-59650,-84251,-66690,5971,-31417,61401,-27191,12613,-51823,-13087,-78933,92005,35655,85660,69957,-65842,1118,93493,25321,-24354,43665,68119,-73624,-91945,85809,-48265,-306,15821,61213,52690,-76177,-92508,19750,29526,-4090,19400,-58356,20165,-58148,29197,-63741,27942,-16795,-46454,-96367,95599,10594,-81864,-44606,-17039,17848,68125,74300,98799,-22305,90631,89628,-92416,-57156,9450,80549,-4181,-14789,-2109,-90617,-48300,-2695,33634,34334,-8698,67613,-2760,-66326,-63453,-94617,70128,-34587,52162,-66945,-82653,10088,-12519,10738,-16724}
{16299,-85726,88310,81396,1976,68780,-31989,-57453,-87807,-43178,58766,-76298,91671,2984,-29118,52301,-32678,40428,-73713,-19847,-42693,-74270,36901,-92082,58467,98832,-31726,2636,4879,-21562,-35630,-15651,55296,88502,42376,87468,3887,-16589,-82911,8647,-76545,34035,-10241,51999,-12365,13065,91888,44921,25461,48291,-81214,89376,84007,-50217,74491,80302,-72526,23320,3614,36883,-46384,-39181,96414,-90103,19322,63132,-48870,18666,-15574,21404,99775,48445,21567,-47377,-44575,-35144,33586,93332,-31210,14675,-48656,53893,-16534,59678,-18098,11912,84247,-18588,26046,84825,-39656,95332,75684,97324,-11550,2368,24584,-68860,-84907,-53103}
Returns: 0.5124612139585677
{597874,262068,62787,-891350,23915,-291004,857841,-718069,-876964,-179318,949455,-888079,-392043,-189129,-86003,-76563,275393,364451,-867253,180103,81510,-966822,-694484,-140710,635581,-122860,-162937,-294640,105308,626159,-134715,951892,-294468,794111,-425543,600055,-87433,-100432,467510,-999344,-723619,409251,-257326,-776824,-604908,854811,-345659,629435,6828,-394589,-479850,879323,-619523,493564,-630878,724120,594437,678370,-700535,-867163,202870,776242,-116555,-668906,-906797,71436,908686,924601,754231,-359514,4033,960339,285634,-769896,-51413,-249072,308297,-850621,65322,-779005,-748581,527746,-314414,-796350,642887,-258608,336389,682267,-772397,863634,-734509,534631,-653559,760781,360257,988128,-760629,463082,731988,-321582}
{443614,-851250,-415623,358110,201828,-453522,-46425,483404,551301,931503,-917077,-652143,-22179,-419948,15765,-781262,-162041,-132158,255227,233058,779404,-497848,559063,-223655,-748478,832388,286596,176127,766594,-341179,407699,-83914,-283437,986666,877562,574367,655972,-563339,-977698,517440,-268421,-200325,-511683,599311,-946867,-687993,-608511,852530,-150951,-866003,841859,437727,-551305,875666,51690,450461,170985,-59963,-472482,124524,-379551,299125,656576,-693103,-657754,-655787,-561422,331868,-343377,-154700,157299,841186,-110149,-558499,240564,553592,683629,559345,-305923,594022,-11738,-683993,-309105,575575,401974,649665,-221475,375666,-457936,963234,649775,561851,949858,987637,-75565,803939,785335,862195,-862303,426680}
{74,6,18,89,49,26,99,39,72,78,88,80,42,13,95,23,98,57,98,85,16,12,13,34,87,46,71,35,9,8,36,64,92,84,2,81,90,5,42,22,78,67,26,46,99,65,83,14,94,56,50,24,46,33,96,92,81,43,36,4,32,48,95,61,14,64,29,47,37,66,85,71,14,36,23,85,44,66,57,98,74,16,5,17,55,82,43,32,36,6,93,18,42,86,81,16,95,17,16,90}
{-72033,-77167,74175,-34005,-4007,14985,41965,-87479,84620,85693,-69292,6396,3744,-98645,-23467,-8684,-65234,-80323,63896,-51676,69781,-69742,67735,30013,78238,23544,33194,93724,73218,85587,52957,94623,-70399,91416,-29336,49268,6211,15821,68301,-49495,63984,24434,65240,-55615,88411,-98444,-42478,-57347,69258,-77205,-13876,84743,-58554,-40804,-83031,2355,15558,-50118,-8134,45981,18424,8176,27249,-30386,96830,13954,-9490,64939,-14804,30827,-8924,85477,85592,-21215,70080,14257,22647,85425,20227,94324,-63667,16870,8235,-95922,66247,56684,89024,33906,65799,63590,30143,-57805,-66273,65124,-22836,45310,98095,62751,-49688,-93329}
{-35755,-23473,13148,48315,43054,-88949,41337,-42627,-66501,94225,-31718,14535,-12308,-39942,-347,-82959,93733,51433,63345,-25045,26056,-46306,-19578,31911,46471,68898,23428,-11339,-29185,95233,-81180,-25974,-88162,-23451,-80393,-78072,20763,-68406,61963,44036,-58094,-58015,-8940,-9939,-26427,95185,-95364,58848,-52520,-52627,-73367,-26579,55180,-82073,-28120,-20982,94717,52986,18038,-92923,-93579,-93828,16399,1075,-18583,51386,12036,-3461,41924,-44563,-20989,-27724,22287,51400,18111,-49183,27970,86156,-71500,-25551,2125,74720,-6578,66104,83903,44388,-70865,74614,93848,-88514,-61863,40398,-95158,44938,36695,74071,-7644,1167,-67132,18442}
Returns: 0.45470543739786057
{231699,241967,-752418,864705,599505,185531,-505379,14105,-790269,-273998,665867,377593,-833825,69621,607007,793998,422461,974718,-548809,480014,-222318,944146,-555292,484995,720392,883152,-545635,-743018,472456,217896,-410475,676259,-652391,-99378,350342,-940626,625177,-864472,913007,-360360,-522302,-207404,918844,302725,-223747,-972481,-505452,91535,-574597,-437050,-421067,-31711,358829,-155272,935530,309676,-815370,734607,536490,498058,302316,790532,536130,281349,-520297,-50364,806865,197516,568313,-718624,806070,-177735,44645,213688,-216440,-415,329496,861447,220956,-437715,900384,304268,610311,-770087,-426843,-962340,663326,-709764,506392,-982750,689737,556399,185227,-284806,-39359,-608474,-320472,928742,20572,13187}
{-797218,523842,424666,-708003,-308856,-121065,139728,678472,748866,-182461,166890,-962544,322915,662626,311777,-457458,922031,725568,-790246,291159,-644644,881701,-475739,687701,486706,-992,-267286,-52144,964820,-523293,-195447,151194,-808230,534486,-889419,-905869,79697,484001,117803,-53557,-19857,-117168,-29699,839226,623512,571661,-268587,218117,44197,430065,-695696,-119709,-461084,-524982,-915114,60583,102970,-520671,-798309,-380823,-230014,-171784,-842272,-166612,229552,302891,-228158,-330246,901949,921900,-58084,955889,-645766,38496,323315,-577583,-308414,-241353,885017,55462,-295793,511257,-545879,-481360,-392685,297394,-189628,-691839,-691954,414626,-225434,-999470,-990570,-751935,744501,11565,-693577,-341349,30293,358660}
{54,86,70,33,49,56,95,82,100,15,7,51,54,75,16,8,80,21,67,10,51,37,81,16,25,7,52,73,7,29,13,21,17,74,53,9,39,46,67,50,56,22,98,31,52,91,30,62,49,33,30,77,36,84,69,84,83,52,15,99,90,22,90,6,88,6,100,7,65,41,14,64,12,11,77,32,52,65,99,93,22,62,24,10,51,48,79,76,12,1,17,15,92,12,67,32,46,76,30,58}
{53327,-46991,29827,-81444,24798,31334,92965,8715,-67015,47511,-75081,87530,-26341,-3063,-51432,43955,-62157,-8536,72896,11006,8274,-18454,-8257,-77922,-67663,18240,97991,-99382,91438,-10026,-66616,-23695,-62522,-2986,79320,-28966,31457,-79001,-50093,-33703,54551,-72913,-25722,70734,-40951,-58027,-49097,-8798,-29209,-52747,-33644,-17694,-13102,-4103,-10221,89664,24332,-71581,-13746,-79840,-21119,14059,-25178,55841,2802,8076,79705,72957,-19157,36463,-74631,-72928,-82067,93979,-21905,-9742,-71732,9834,-82371,-91025,90518,91539,67695,90198,-94157,99962,40555,-64112,65447,74443,15042,-69600,-25163,50278,-54352,44893,4343,-76607,35881,-1383}
{1400,15187,-43021,-30911,-21077,-52773,15106,69697,53274,62140,-77381,99799,-30359,36309,88680,19129,-87008,-51993,-73665,4916,-40699,-95374,64911,-37328,33857,-47930,50845,53730,33413,9661,14256,-84311,-61032,-64596,76050,82285,76367,-24058,53447,73350,-98607,-35713,-32026,-89591,56983,-17588,70712,-60293,23854,-18889,-40946,-71625,-24273,40596,5941,-4768,68108,-24396,40461,-99123,-79112,76288,65430,65440,83732,-59299,85804,-89141,79931,88011,70385,-87884,57631,-12410,-21070,77245,26440,-76982,44876,76855,61137,88827,-52323,60607,-67113,-33171,-99208,-20645,26016,-90175,86291,-96681,23399,44329,81968,11753,74142,81060,80522,-83502}
Returns: 0.4360112211580688
{-500824,-927004,-891952,-869767,-326501,428880,983257,-268000,127796,221382,-880660,108919,819522,-360264,48750,446954,497834,-259083,252073,-281227,-544434,-461560,131924,289577,363118,-774517,-493959,-431500,-693035,186339,475845,-523658,961160,22153,-694891,413575,364998,164215,985231,-249617,249990,24472,9304,948790,386598,629790,25238,-275767,225727,181119,540084,-943148,820055,816706,-239963,-520077,713771,607180,-819515,-627098,-143729,-684107,-569253,-84846,-192235,-714010,429766,857361,-614117,-548922,-974145,468955,-623095,344991,-619004,168002,-499679,650852,879232,497189,-272587,108323,641248,357629,-256160,891800,459248,200337,-989192,-750782,-383617,414149,543535,-479622,-84285,927949,312105,-261224,749985,788895}
{-906367,-348299,-885923,-984472,-486632,-433023,444432,-896629,-997135,-92075,-759305,-777423,-822797,317487,710161,745335,-13885,-414516,-377840,-503115,-523368,-72635,561095,53320,752144,590442,603917,663861,-76726,-10244,760040,764144,-99756,253519,-522047,-590363,816594,439957,-538233,518403,-281702,167168,725152,429291,72641,-329138,168051,-539422,552771,806682,-313563,742323,-208607,199951,680621,452051,-4799,-408874,542988,59216,-917943,463913,-681659,319698,-69968,-939837,-719785,-254576,925327,740916,-610329,-834137,365433,-362017,-976362,-163579,-840909,201866,979697,-842526,-389148,-798008,-130289,-683010,433482,162434,-759556,-349576,912582,199607,64720,-179022,-89381,-260985,-375718,76995,-268308,215583,477244,777424}
{55,3,17,64,97,12,19,83,56,45,64,39,6,80,59,20,5,63,28,36,6,97,86,62,97,24,28,4,5,54,86,43,11,11,23,24,25,60,75,15,30,79,16,20,15,51,39,16,22,80,22,38,43,73,1,9,65,23,67,71,19,3,57,10,22,4,72,12,48,52,94,17,56,51,75,54,38,64,58,5,90,45,59,26,11,34,12,62,20,7,38,91,29,12,56,5,64,31,77,78}
{57769,14803,-79080,15271,21197,51130,78164,-99797,-80125,-59004,-55212,80247,-64465,-19855,75613,-7966,-84880,-34220,7631,64518,90261,-69928,71101,49077,78396,-31330,-80938,-68289,39691,61872,-32784,99319,72088,-38703,-29042,17712,-16345,37847,50506,17319,71622,-43662,-26384,90227,-25124,-40505,87790,4370,3619,-66655,22995,85830,52022,87817,33242,-40878,18801,-56164,64546,41844,-65963,92228,94512,86948,7726,-59335,-37854,93540,63674,39802,24472,94560,-40046,-96871,98097,-50151,-74196,29429,98397,89714,-498,20931,71426,13668,-68901,-32979,-59235,41367,16322,-55027,-33181,-68930,-62263,55846,-5226,96114,-59499,96426,85692,70882}
{18306,-14605,901,20996,-49674,-24434,-65959,-34502,-82906,-38058,85128,11186,-75925,9706,-51957,-47896,86130,22775,41970,-55690,-55726,-95902,-12580,-65611,-8771,-37237,-31176,34502,49731,-58182,-89144,24401,74967,-58171,49504,-68135,-163,70702,68838,19671,-9845,36160,-31601,2770,-43149,87909,-92954,17251,-33636,-7325,-3973,-82914,3621,-36971,-77180,25073,68795,-29131,31157,91724,-89191,45462,12382,-96219,55854,8346,-70691,-81988,51948,18883,65451,-88152,-93174,9461,-89284,65393,-46082,-43859,-72908,22014,63428,-97498,50661,-26254,-32119,-41314,1112,79747,89950,13583,19917,-4178,45868,-17326,-73055,48764,-48444,46626,80763,-1360}
Returns: 0.3287379274467518
{-944112,-708910,-972915,664733,275083,-819675,-755931,-786930,-189819,426414,273216,37081,-784485,-82268,-385219,-122250,886055,-808513,456298,-251271,924835,-680772,336542,-405233,674504,-239249,-109340,-906589,355949,691037,-490078,-569381,-93232,716798,369955,451833,327637,772486,564692,432651,-842526,-357118,513322,733439,547204,138777,411459,851752,799676,-7974,-665196,-800353,-631827,128760,686106,119129,-971147,324596,-159364,872859,-961113,-267645,579266,360483,-637368,-54058,310608,975411,-663272,-159502,-793683,-654470,-78589,795910,-942156,112645,-29129,-704952,116042,-70957,-328549,984745,-708952,194439,446618,-705017,-433523,395672,514416,-894850,-548276,132264,-435625,644992,577526,251139,335192,-556046,-18443,88399}
{-506150,356104,-403359,-62086,-910571,-786689,-525591,282495,169341,-988396,966760,-17536,637491,-924688,887279,-42341,-287215,754841,-190667,-491267,-426331,-398224,-759982,-530400,-325608,861196,-28517,665630,-456337,895763,77155,161538,764862,-168587,-293424,32030,250973,-254215,789370,-48543,-358939,-41804,-505978,349308,275350,101704,-943376,-9858,-840588,283326,-224038,24480,-772125,-686358,544483,73622,68775,621666,-996987,-980300,959191,-517678,764275,725107,611905,120897,467174,876271,133697,-170943,412404,-139368,-33512,-678280,-522707,-77132,119053,-347129,909690,616449,845248,626891,-1196,-310661,-869777,-487174,903169,564122,805915,-421588,-848649,147698,-161475,731167,129689,-144687,-81791,557296,-672326,-201765}
{31,94,61,57,95,38,10,7,61,62,97,52,11,27,65,68,29,53,48,37,55,36,64,85,3,49,57,22,26,20,3,75,50,5,33,14,23,98,9,46,52,34,88,13,65,41,61,69,98,84,51,21,20,80,77,87,84,77,17,21,14,35,78,70,100,42,52,93,58,95,70,7,67,14,95,83,87,24,92,39,53,34,6,70,29,50,75,22,73,66,79,53,49,75,41,91,85,52,50,52}
{-44792,40084,45625,81522,-15256,16645,-22377,95353,36511,-84345,57240,26564,80967,4555,-67421,65285,-75251,-24303,-51992,-26419,-65176,-65971,-33403,-11815,78345,84487,-50160,-23188,-69520,12003,-45291,-56431,-58334,76571,-55857,68140,3291,-33832,22847,-54939,37367,80459,-29110,46320,39803,98469,-84339,36114,-57021,40456,42658,5476,4845,-55340,-72998,-29113,-43550,-83462,-96204,79518,23805,-92919,69149,59057,54009,82485,-97967,-582,-66880,-39673,-57685,84258,33997,-55516,-85118,34238,87653,-61800,91942,-30387,-53759,36863,98133,-13442,-70092,-51543,82183,26535,-44988,-95646,-73998,89377,46216,63740,-67926,-15782,43299,-12350,89436,-84814}
{-6350,37872,34446,5892,-83404,-2116,34194,98801,6223,-8020,-56159,-4717,48244,86099,-48384,48708,-74182,27145,-35934,-66991,-37008,19906,-66414,-45119,89100,48611,-59572,14668,-73971,-26318,76697,99136,93758,35749,-22729,-13121,-72889,-8052,65656,-14776,-42225,-97789,74132,-96843,-85268,-94997,9446,51182,-37850,49127,24045,54984,111,-53645,-54989,11161,8176,15291,36946,-20817,-17719,91168,-95213,95576,-63539,-82090,-74368,27142,30376,-40058,39803,-65346,-2857,-55667,-72821,17002,92276,51294,-63280,-94337,10453,-3233,32016,-49308,-85258,67044,62647,33204,18906,20772,-1324,33349,-25508,-10887,92937,-56908,60509,-126,37353,21131}
Returns: 0.44490289439902275
{-675878,-783180,-179868,595587,671109,640410,154046,922566,589846,-879244,328542,756176,543443,817530,-948075,-220051,-137338,-306299,335876,609996,-656208,639968,438702,250149,899067,545843,667236,713461,112042,-551527,986113,632807,-826787,-141768,-252166,264529,261085,408991,-830537,183456,571888,760376,-179836,-457607,-566444,143446,741439,267252,-774663,961016,345418,831101,556524,363965,-893745,-979554,686166,546195,417271,-947581,860708,669582,177747,81557,-407109,-878049,-933664,-825887,-197984,916234,950127,-95230,597725,745534,639842,-804336,-913716,16898,870064,-773112,58729,131549,-504137,912212,233788,956654,986241,-941434,421574,-96000,413685,-647835,-270463,751146,-510563,-908768,942376,-549074,-260071,833975}
{4452,516398,449438,-571874,-45348,109324,468699,199341,-353730,20386,618499,11345,911986,697315,315898,187986,175898,-717209,-920523,690540,-194581,-804864,-827073,-832755,728561,194074,-769114,-863564,-484688,-181460,-300367,-65090,54164,-136803,-606219,-527787,978699,941018,474020,-314022,17006,-337974,-293966,-157811,-302057,539010,-599476,167727,75101,189306,755205,887711,-500832,303185,761268,337753,616058,-166169,888512,310320,-638998,114331,304249,-868652,496421,922660,200636,58255,466565,224336,323941,414452,963943,-91047,36868,598134,-905679,143608,650439,-186874,-256313,773389,-950125,-347012,638650,989322,-458956,-592202,573949,691147,535582,-170376,-919780,-949328,-878693,-213398,224737,-75158,555473,-330123}
{6,78,17,80,72,77,83,60,47,1,44,97,24,84,82,78,30,28,21,38,40,42,24,2,13,100,92,1,13,1,1,98,47,11,78,70,99,48,11,53,55,28,39,40,12,16,82,71,5,63,9,50,20,29,40,2,22,77,9,51,2,61,56,1,27,34,37,97,73,45,14,71,18,49,32,5,71,68,48,36,58,66,41,40,20,35,66,71,99,14,74,18,54,6,67,53,70,18,28,14}
{97732,93215,-73893,50052,2206,-24128,-53387,67558,63197,13641,-60362,73822,-52949,98990,-93778,-52639,-40673,47233,-74721,-70392,-68515,-14258,2835,44775,68832,85335,77852,75488,-57108,-14480,58711,54853,23621,-81360,-51250,78252,-34621,-31527,10550,-89555,72334,-51745,7793,44182,-49731,-44400,-7638,-52563,87713,67259,70610,63865,-54099,-80566,76002,-2919,18789,-61004,38485,-84809,-90330,46903,93880,-36820,547,31843,4036,64042,-40469,-81397,56984,-51404,93769,-57695,36470,-20664,20800,87392,-3576,-73249,-64179,41142,25111,-30225,10129,97803,-41955,-31577,-86726,62004,-25683,37440,-6630,-23708,-59124,-52571,71560,-27644,14244,-72119}
{61929,92409,-70763,-91309,41557,-23039,-53604,76628,10495,38852,21302,-42272,49417,270,38,76642,-6696,90454,78472,-57770,91324,-66925,-68228,-97226,62166,-25929,-96496,-66929,95765,53984,-86979,20128,36997,-81931,-38412,-37801,55647,-18736,-60515,10064,-16011,34310,-53834,87480,-78787,49450,-9005,-79300,4374,43833,5733,-39374,70376,-72651,-78836,-79606,-83421,3363,-84949,86066,7605,36786,98814,79018,-92860,-11832,42379,-93515,-5879,62352,-75592,-19289,19631,74737,53161,7632,55855,49025,-10075,49573,-12561,-76659,-3026,24574,-62665,32235,75453,18589,41135,95770,93492,-11787,-86956,34589,-38048,64097,-37345,-99156,75599,-81377}
Returns: 0.3504935724876229
{-981171,-110748,940913,441686,-311976,811067,936996,839365,-587470,297204,-733391,-852193,928123,-588284,295932,-47274,197531,-947965,-356368,927835,262415,-643887,-331023,-983742,258273,-47591,-262750,-48785,-64126,-579242,-854148,816141,-166282,794783,-840432,-866295,782143,176877,-232114,-155716,854576,-445601,808836,703978,-564802,-79715,554100,868360,-482506,-399628,-428723,125880,608639,848206,-156052,-661274,-182451,-480340,-725945,-878904,245242,-209560,957440,308614,-267347,-472584,738602,-569731,117069,-899783,415752,-120670,-697935,485481,-391983,510058,-376478,-516328,923515,506067,946042,-401300,-54913,-221081,-35272,821726,-446773,-689316,-714367,566579,289058,-844894,-475361,95783,-266937,-415874,937316,-202984,637921,752992}
{190307,807256,-286400,-819334,-312892,423469,-203370,-448952,707501,210695,48691,-266143,538211,429943,480809,136544,-32751,558572,393544,-571542,37209,821845,-182709,-385604,296778,-135681,-842042,-344666,33751,-54660,-503538,821644,-741897,281973,-414866,-204373,152574,-281309,812511,271639,663091,-164005,-613380,50239,-962066,35008,519428,-692222,-819586,441111,729384,425549,-849681,528276,177908,637337,574485,-852523,-744963,852289,-925666,43000,427042,-547584,-849353,291593,-931015,980174,574124,105317,593359,25894,839217,934641,921411,-224082,63752,-474206,703801,-428425,534774,-567477,67433,-744242,-276007,-807290,-231556,687327,247816,-386593,-553991,181779,-123508,-971565,216757,563304,964917,222198,-558209,-209004}
{69,78,20,68,79,97,16,67,80,92,66,35,92,71,18,67,84,98,87,100,33,74,42,11,38,39,61,47,19,89,35,5,26,45,48,13,60,11,68,81,19,51,53,24,63,27,28,79,72,94,99,20,44,20,18,99,75,86,68,78,20,61,5,19,60,65,4,93,84,82,76,37,89,72,60,10,58,20,66,15,10,2,54,10,93,39,90,37,6,88,31,63,69,95,98,2,40,14,34,93}
{-7637,51290,-87595,-50687,53152,-96616,82898,74549,61464,93194,-73875,-32929,49834,-79498,40962,-13159,30193,13082,-76080,25713,975,-49469,-72543,14832,13095,9828,45672,8046,77348,-8833,98004,19092,-29768,47187,84151,21329,-60637,-22392,-88400,-42453,93143,-13731,46863,-22155,-72296,42702,57031,31301,44269,-99409,-9189,89225,35943,-87031,70580,-35790,-24304,90106,-37658,-31854,-92853,-1748,30360,61755,92397,-84039,57300,67073,70042,-7013,15185,79256,46845,-42907,-15729,-68160,4542,-56134,-90760,-10183,42712,-54037,-91284,-51925,-56251,-86751,86349,60513,-26696,22052,-85482,95072,-2948,10066,-66921,-73313,38998,-43338,-34167,-68245}
{-71485,29108,85568,-42857,-47247,35201,-88878,3215,93820,-50848,-50841,-63329,-81760,-78781,-70736,-29507,65263,76333,63973,89803,53266,-56090,91338,-73388,-13427,-31348,39902,47812,-24100,99629,25751,61971,-68572,87620,-60102,-7007,80968,-42834,-29563,45079,-73136,-59919,24394,-23617,35088,-9784,4347,13190,71709,-27450,-56662,99747,50860,-45438,-16813,-43726,-58161,15325,5714,3109,-48880,-85123,3680,-64964,-82597,69148,-15079,-1370,-33757,9961,-18561,20763,32194,5491,-23063,45804,33150,18570,23584,-42532,45978,-82230,-97984,15004,42120,4945,-96356,3436,17698,-1079,10366,19952,44162,98092,75595,54917,-40348,-47245,-56301,-93343}
Returns: 0.4488291443239559
{1688,-691738,191627,379342,-122007,847862,-816289,282983,280813,928447,-857853,-766559,-719849,261473,138831,-983793,965665,-205508,628813,769954,480966,-611357,-243144,-486493,-69885,904969,-254841,611881,-436042,902866,351943,-889362,585450,-314737,96640,95984,-324310,-459032,443796,887591,-168764,-61550,-10801,202653,-830188,-105691,-679163,-245313,-790949,91806,-876486,-973721,-623482,46428,809661,761211,405629,-330724,874281,-77261,681058,-573656,-354973,-658814,238578,-495520,-917248,-371001,-289772,930867,-735513,886226,902902,-591559,886224,250188,-297631,70721,251510,951681,414121,539572,-103074,-271373,-306143,-976108,-940947,-264033,-828558,-634424,-196522,898517,469972,299177,875252,484061,207706,260117,-766870,767306}
{-983822,-636662,-674022,-400962,399092,39316,761575,-652302,234486,-444568,-158529,341228,11107,-982765,402154,800178,-267517,376447,-873125,464915,-890816,821320,-993482,319610,-263234,-307530,842009,794765,669438,536444,-851303,-702753,971815,822808,102281,299277,644055,736152,-535853,572029,-321516,-22412,333342,884062,43981,290401,-73050,800563,-558601,-942092,-770451,56745,-396181,-142324,-326222,864060,-856012,-914153,967720,-276321,644073,-892316,-873800,-592323,245689,232628,-581212,-306912,-270807,-653373,779798,824888,-581756,837116,233923,660790,-204606,350114,809778,669188,-501339,453637,121723,-993099,320611,-877070,537184,-201123,-198742,717661,999862,-87359,29762,-51046,-384605,-181897,811909,200445,238175,-425932}
{95,46,1,29,78,78,56,15,8,97,95,43,33,95,64,61,72,82,96,58,36,36,13,78,8,43,31,48,89,20,53,83,1,61,71,86,28,65,92,61,89,54,79,17,80,82,52,94,23,69,62,1,51,84,64,30,63,42,87,85,37,23,4,63,86,66,45,71,1,85,19,96,49,9,19,4,14,63,35,21,78,63,40,73,46,84,3,48,13,37,27,99,45,13,7,12,39,68,82,87}
{87265,16245,90760,-37176,29795,40407,97,40627,-4045,34297,-33592,-8368,82264,-47038,-77058,8881,-48367,6283,1325,-1082,-93990,-37031,18256,99963,46675,11977,80626,21478,-5601,91212,38734,79974,82515,-37025,82752,-48671,66302,71168,50117,81893,-82541,64837,58749,19983,84701,91541,-69111,-65936,62703,-99236,-43326,63974,32697,82517,81941,-24460,-24753,-54064,66413,82735,-16966,10084,91517,33361,-2247,-48526,-65280,-26950,53967,-64402,62893,83427,-70251,29404,19401,-90353,11256,-9022,79321,-77311,-23863,25859,-32397,60920,-51549,-23286,82918,-5326,-90250,-2618,-20341,-1699,-97080,26814,-4224,-1282,37876,57732,-281,-38209}
{82707,92930,-7010,-16592,-1073,60065,-10420,-79358,-68308,66150,-81835,62022,27965,35934,-44649,-28395,-82524,-54174,-29264,-28352,-42012,818,81247,90154,47087,-1825,-97639,-75145,14542,-96241,43468,-36626,62889,23694,50827,19699,16668,36853,13996,-81693,-66488,35453,-7062,88512,-59253,-2311,60010,67187,-17064,-82741,13333,8971,195,27209,-30726,-45173,61109,-29125,-60640,-97899,50716,-53841,-6029,40315,13468,-29210,-53661,-192,-10968,17236,-25601,95603,46182,31157,74010,-30030,59840,-57498,-17497,-40601,-50450,7782,-39011,31488,41177,-93885,-54718,-44106,-83264,72734,-77050,6469,68423,-41016,19983,-89209,61493,68814,81822,-35647}
Returns: 0.4793986902556707
{-37476,-931465,344953,128535,796252,-213036,-472684,-494914,68731,384855,-608458,-253134,843776,-591448,209645,-772377,-243453,372807,-970577,495000,800776,236317,136090,-726606,-573484,-172647,-349690,-269858,-551276,533445,-51309,-570370,-414902,-249948,541493,-821773,264832,-143217,-997829,359814,-230968,-54258,580082,-622966,-69292,-857048,-40115,-467188,-501723,-571278,705470,-212528,-139322,-305939,-343949,-534041,751917,-551155,974016,-344180,842252,-736184,-530815,-899436,855567,84016,445116,-93337,374693,45330,308551,-888121,760663,879933,14118,190715,-373860,207030,186273,705809,-803895,28973,363180,843287,-837303,-279944,-538226,313152,845075,292474,-564176,-610485,-95183,54583,698505,-32811,336998,-297440,777590,-987341}
{837577,-939142,134944,-234571,449458,-327888,-389940,-161617,879352,-76795,-985663,-715327,-743200,753964,-865847,-492816,-167295,237464,-19022,-536163,-770913,-333281,556699,-810366,563739,-416136,380768,245710,-466718,-589989,671055,-59835,890629,-886795,-13181,27451,27409,309049,-984426,-270255,-326836,987900,-240775,264114,-850680,-842689,-302438,-981999,571178,12754,546900,261197,-674296,278839,-422312,121855,-740364,402352,557955,-483971,88876,-396694,-551113,-79207,-357602,-140444,214348,-94386,130121,435484,-394963,580446,-903363,-720564,-45888,246368,770070,-688767,572137,-37057,-730437,179275,-593922,868315,-764098,951195,97457,838578,160354,-978348,-716450,-364342,-283231,-393047,-964393,-638300,-339759,772101,340684,316773}
{23,54,57,46,9,83,97,49,96,38,47,99,33,44,98,70,42,30,98,68,76,32,82,88,83,78,58,43,48,21,52,25,60,65,13,100,15,58,55,54,34,85,75,25,54,14,98,100,68,37,70,65,36,48,72,31,99,58,78,24,58,23,60,2,32,28,81,24,17,58,49,28,19,65,90,68,26,17,50,51,98,74,77,96,46,37,78,12,6,58,17,74,4,42,63,40,72,22,95,33}
{76335,-82318,-95011,10316,25624,-22600,-69797,-2453,-9421,98448,-59485,45645,-77576,-34119,-28443,-42246,85630,63045,-33250,-73537,-25912,60659,80723,-71735,31864,39261,60332,-92732,-58022,-67530,-53907,25016,50853,23746,-41838,50978,11562,-61948,-28905,83297,-84641,-51337,39263,-87520,-89870,-53162,-20725,19730,-48669,45523,-64456,-13842,23839,-12827,-17877,8153,-844,47173,64870,-94117,-81183,28885,-30885,62190,-14532,-16180,-5700,66433,81616,68239,21355,98204,-10503,-5614,-54219,62223,-19251,-86101,63473,95747,5502,-21305,21526,63325,70687,97287,-24730,-30119,-23056,43588,44167,-68219,-77672,21781,87449,40695,-30309,-79648,49080,-65337}
{-4468,45550,-50314,97353,56645,-26174,-86502,27538,40420,-83547,46587,31080,-61944,22781,61764,-25080,27602,52374,-49100,-4052,-20632,46968,-28097,-99263,9562,27912,33120,66281,34495,62736,93080,94610,76406,24862,-79219,-74418,-87300,24698,-74477,-2824,-68841,30216,98464,-4971,-16025,96056,41850,46901,-54755,-78166,-84839,6676,-13583,47203,98508,3893,-87628,-29983,73228,-92858,36872,30330,-85331,-2701,-16414,65015,37735,77033,-76023,-29942,95631,-31159,76045,5964,65263,49961,55262,-67338,22166,-96,60265,93511,38657,-6471,-66551,-66551,46423,-84483,2248,-86214,-29285,-13787,-46935,-79990,-5666,-17929,-40494,88902,25602,55521}
Returns: 0.47958176446176043
{361961,-473381,-546000,987949,228555,-500032,294598,157354,-200869,-973060,-102044,436309,-667672,467463,-176884,-456060,-590320,411791,398200,-919377,-673624,984794,-353094,-350282,400688,802725,-23909,-536952,-965820,142219,-901951,-841381,235281,-177582,829766,-337316,-195732,493968,47187,769710,-443018,-323394,347107,-359602,-210507,-216841,311798,860752,887382,-242384,131832,-391183,-192797,449119,995501,350445,-642690,275159,-234645,898002,-97597,99104,-453086,-833277,-48725,-400941,-662820,547954,534254,-507323,-292910,558812,-989397,-911259,795243,658951,-598617,-884100,987492,-623497,319553,-631657,607380,794303,-701383,35987,784702,603996,-517102,-781700,-90461,616658,851585,-78130,-374406,480849,423564,597266,336610,418398}
{-460973,-178974,-349990,-505008,967087,-75604,551000,936214,920064,-5886,-878589,950359,374455,619332,213176,991594,819588,-563898,-551266,-400889,270597,130093,107327,-373469,-906441,493938,963455,409007,104965,554724,323115,-534527,-314530,750608,-954284,-723460,993121,-15609,-877870,-380001,715877,888723,10397,952640,604147,938912,113352,580404,14889,966383,-803349,673459,794873,-479521,-913940,107895,399369,-109026,-177444,-496891,373813,268314,798953,640170,309231,532543,-637302,-804090,-332237,18824,-995862,378869,-915353,651569,953021,307666,-779786,-201462,-118676,-627743,727904,-439561,190961,-359127,-964223,680837,-998206,599246,-691757,985698,-982644,873425,345482,-871311,-982864,540156,-12048,-430895,-641744,775790}
{91,10,4,7,49,95,62,22,19,39,44,85,29,70,14,19,79,80,69,85,62,53,17,95,28,23,8,86,55,56,12,73,3,54,37,7,82,94,10,97,29,14,99,78,59,17,94,29,35,17,1,43,65,44,21,36,100,70,42,13,67,52,7,10,57,33,85,31,67,90,73,81,75,15,5,12,77,9,74,20,100,72,29,27,59,53,36,6,71,16,32,94,61,80,38,31,35,4,32,45}
{-75683,-82221,-29319,-79690,51729,95189,2789,-54478,9440,-1252,-24383,72451,-9881,-86535,54058,7698,23129,-94346,-69441,-15080,-55112,-78322,41593,84855,-71020,29810,-15876,-78563,47856,1949,-91319,-94927,-90689,-9048,34130,79830,22174,-38860,-59558,-2521,-44800,-47710,25901,-46712,-90580,72697,-88374,-40232,55037,-95123,23184,42024,-97634,-19671,47888,-9317,-95725,-54915,-20635,80061,35902,-34455,-77324,23074,88012,33877,-75878,-2919,76101,5216,-37668,56370,6075,-31983,49681,60273,94704,-53221,7932,-76187,80409,43621,-48354,-25388,-77985,71484,61112,131,-17548,30759,-11825,7974,-60462,65603,-69132,-51962,27165,-77456,-37065,-36261}
{34670,8232,-67116,92426,98880,46846,78965,-90891,-13990,-32417,95904,62562,-14069,23291,22336,-58062,-47643,48935,77632,1060,43012,-76403,-55393,-24522,-58516,45108,-28746,-57527,-80188,1407,67486,59235,-12571,-33119,-40234,-36697,-61595,-20892,-90138,-97910,-51496,-48063,59807,-41992,31790,64573,-23245,65645,45743,-32724,-54947,-52047,34132,32720,72354,-48546,93679,8495,42542,-87102,-92439,36283,94055,-30333,-7330,85759,43725,66585,63876,-20982,23680,76071,-22986,52582,2776,-33596,-46104,-35507,-92532,-64666,72513,33213,-42000,-17681,-54361,8558,23312,-82965,-9201,-99068,44890,89491,-34140,-213,29837,-61623,10207,68681,-5575,-91577}
Returns: 0.4505660657681509
{911282,947405,-854149,101273,-929634,-394341,854245,357196,-227182,941103,673360,272847,-763730,-939040,-372206,-211261,-39733,-678368,478434,963601,204472,-255014,-583670,857978,-203540,-321690,24047,673542,-8654,-313107,-976743,-952566,-728809,559188,34538,250827,774443,-808989,129672,-688958,414643,843132,836258,-697875,-121061,-822502,-94500,356859,320036,-720837,862804,-661260,959970,-152022,344633,754917,96588,631250,158162,-297684,-461461,93813,-420934,644572,827976,-261507,754303,936906,-526014,-807570,769746,330443,-443289,-314905,-601820,-476421,-177939,926196,673902,302981,889021,156198,-74104,669538,-725380,-947210,149543,-934137,560097,609189,900346,299346,-206155,582416,-694245,282128,-447024,-572578,-437175,944434}
{877735,-18460,659476,230269,396519,813304,529142,495108,123638,-96152,85736,49546,169283,37864,85979,967733,658459,258768,908285,435690,955616,-73905,686909,99583,967768,403642,-606500,-872148,-772405,599391,-104745,-233985,-8422,-72925,-940495,-181510,-324096,905351,-34007,869428,-797144,792983,554630,300836,-704070,335885,-395824,161137,-821713,946207,559294,-446335,275190,-562433,797844,141914,390819,554866,-553871,340655,629625,-40148,-327328,459221,461689,-318491,979734,-280946,-519196,-286851,643616,-418201,687402,-705994,-828679,860209,785020,622168,-213014,940286,99922,-739051,-727963,300859,-839326,-382501,766147,244774,-614481,-436682,-661787,-105253,-91139,331203,721012,-403899,650052,-330014,-648412,803853}
{10,52,9,24,23,95,57,49,84,40,42,51,66,52,80,94,39,42,82,59,80,87,88,21,83,32,95,70,60,53,6,40,23,38,61,23,66,88,46,28,17,99,94,42,68,63,67,2,57,5,10,41,9,13,80,11,98,55,59,7,72,61,24,36,66,66,25,63,100,14,46,29,93,55,74,45,37,91,49,32,10,1,89,16,29,8,88,22,12,52,54,45,67,78,89,24,9,82,11,9}
{-61191,-72657,-97887,-35360,-94410,-90605,72109,14704,-32656,81842,66636,-59434,17829,-22406,10712,-96667,63434,-11797,38227,-7215,-88028,97951,44870,-45098,22511,66967,43040,-68549,3521,28276,41867,59022,-79718,54762,-17886,-74364,97316,-67188,78341,77564,-41746,-90728,11373,20352,-46625,38988,51051,-32233,-85482,92914,-29597,91035,38785,48187,42705,86513,20054,-96096,-80501,-51373,-16824,88232,87208,-899,-42673,78261,-39508,-29051,-74757,-6331,-32341,-67969,-69377,-56326,-7483,-97894,91327,-3304,-83340,49300,92025,73009,-12980,-72020,-75509,-67454,-76615,14256,39128,98333,-54479,24141,89920,-28036,-44414,-8417,31786,-8793,-23391,-92359}
{-6503,-75077,20097,-75493,50045,42399,53957,-86799,35987,72678,25352,-90425,85355,-75502,-25408,82490,53179,-14868,-67230,49414,-61262,55879,-43621,-46229,71851,-10056,2528,-24274,-98051,-1432,-63830,23555,-76366,-43575,-6026,-88622,-90252,96395,18923,-3059,24293,-73682,13843,18902,66277,27462,-71515,22969,-77062,-74847,74017,25883,-43163,-79399,20356,26504,-39225,12448,-26095,18303,-56514,-88164,-60158,3146,-37152,31504,-30043,-18337,-74389,-24846,-8712,99513,-10167,28834,83337,-18432,19499,-31965,37775,32663,-73320,98282,86571,54059,40611,89617,-94895,63304,-51850,73357,-46941,-79337,59464,-30374,43358,64712,55271,65675,-21220,-963}
Returns: 0.43920357870443044
{142,-138,-173,132,1,-26,-140,47,140,50,-137,69,176,-158,-67,86,25,-31,107,-75,198,-7,65,34,-179,129,126,-136,-52,-91,95,-184,-180,-28,134,126,-200,-67,18,3,114,-112,-46,186,21,-114,33,-16,-99,176,-175,39,-72,143,-185,-43,-77,-100,116,-91,55,-7,83,-164,-88,130,63,99,6,-167,168,-57,-154,-8,40,28,181,146,-149,46,-171,-142,14,-85,-190,-151,16,34,153,191,-27,-151,147,-148,30,-11,-138,166,153,134}
{167,-109,145,120,194,-38,-157,181,191,122,-181,92,42,-199,-21,-110,11,-131,182,68,120,134,123,167,-167,-137,38,115,-122,-130,-96,141,97,-112,-141,-150,-65,-183,18,-180,115,-182,198,14,-8,95,-83,111,-1,-142,-14,-146,-62,-101,-82,97,-33,83,82,185,44,140,-157,57,-197,114,-13,-21,200,20,-30,-123,-143,-11,-12,-108,-9,-52,56,-61,-77,67,81,-152,-100,92,-26,91,-79,157,2,159,16,56,-193,70,-181,-80,-7,24}
{99,37,66,18,100,85,3,96,21,15,37,24,100,42,75,41,38,69,28,40,86,65,13,23,89,43,6,61,26,76,41,88,7,68,43,46,50,17,39,88,89,64,35,39,18,94,78,54,54,73,80,16,83,53,55,81,58,9,1,56,78,38,83,81,89,95,81,4,14,95,49,22,9,97,44,83,66,47,49,58,25,24,54,50,67,86,73,88,11,62,13,45,77,92,54,94,53,41,11,18}
{84,-37,-70,-14,-40,77,44,90,16,-10,-58,37,-28,35,97,9,53,-16,9,-61,-52,-89,19,69,-35,-96,-93,-81,-27,60,-57,-66,24,-73,81,-100,-89,12,-84,-30,-46,-36,-54,-97,-55,-63,11,66,86,-40,92,29,-31,21,27,99,-35,43,24,-92,56,-81,62,80,20,-20,-23,-72,44,-65,-97,78,95,2,41,-11,19,82,-12,-49,10,62,-25,-71,98,31,-42,-63,-6,-73,-61,55,-90,76,-10,-19,88,89,-62,-69}
{-73,47,-57,63,38,12,17,28,84,-74,-51,-62,-32,48,-9,-75,-8,95,-68,-67,-15,4,-39,-57,25,21,-70,43,-34,10,-4,-61,-19,-24,78,-95,12,66,33,82,79,-66,-3,2,26,43,91,-43,-43,19,-58,-93,-69,33,89,-35,52,-32,5,44,-23,-22,-56,11,72,15,-51,54,27,17,52,-83,54,-42,4,-88,-53,35,-72,-72,89,100,-19,45,50,-98,-44,30,25,42,-22,-45,22,5,100,-46,94,-93,29,72}
Returns: 0.04662905924748042
{21,177,64,-151,126,199,-22,-155,-176,23,-131,23,44,-1,-24,-86,60,135,141,12,-126,-62,36,34,-136,169,88,-187,75,-198,163,87,3,-73,-157,31,-19,39,-180,37,68,63,138,-19,56,16,75,106,100,-12,-134,191,36,191,-27,-9,51,96,-147,-157,8,-192,-179,-83,10,136,91,-60,-193,34,174,30,194,61,60,-85,-121,164,-149,175,78,-167,-170,102,88,-115,-159,-150,77,-95,-151,-193,-96,-13,172,189,-13,137,61,82}
{-189,95,-6,-119,134,-55,-139,113,191,-7,-28,-159,-74,26,19,60,-70,64,-33,-198,-9,108,-181,-167,-76,126,66,70,125,159,-185,-28,80,89,167,-37,-86,15,55,183,-24,-158,28,-4,-147,84,33,74,13,161,95,10,96,8,-119,-68,91,168,-38,186,55,146,85,-172,-116,-92,116,-147,183,-200,58,191,-19,78,-92,-2,41,2,-130,22,-184,-56,125,153,59,63,140,-151,30,185,68,171,16,-32,-163,193,-137,120,-194,111}
{79,66,9,17,69,64,52,56,72,47,54,79,56,19,32,20,97,20,13,32,40,12,59,48,71,24,31,39,75,8,99,49,44,41,53,84,61,76,20,19,51,63,40,68,69,73,4,72,11,20,69,85,89,48,10,3,39,18,53,45,100,16,35,9,48,51,38,61,60,94,41,94,26,100,33,65,100,100,21,67,77,26,43,64,11,91,63,75,35,38,59,20,89,49,86,17,72,17,11,13}
{74,2,-98,-97,-62,92,-29,10,-65,97,42,25,66,66,-49,-67,28,-35,90,-28,-37,44,-71,-45,-55,-51,32,50,64,54,-25,97,-23,-96,53,8,-14,-49,46,59,82,-3,0,-71,83,74,42,98,22,-100,81,-68,-72,-85,-9,0,89,-80,-80,-20,-41,-16,50,-76,-55,-86,-59,28,7,-2,-20,96,27,-15,2,-97,-74,-35,14,39,77,-47,-56,45,-79,-75,72,-89,81,13,69,-2,-66,46,-14,76,54,-73,-6,73}
{83,19,27,-97,-39,10,83,2,-65,-95,28,64,-73,6,-20,-51,-91,81,-18,-74,89,-85,-63,-6,30,-64,-73,61,-40,77,57,-49,9,-58,60,-12,-94,82,-83,-71,66,-58,94,62,43,49,-67,81,-26,33,8,-3,-100,-100,-7,98,88,-12,23,75,63,38,42,15,-21,-44,-68,76,-40,36,49,59,14,43,-87,82,-31,92,7,45,54,5,-89,51,7,93,-85,-43,-66,92,94,-75,-75,-95,76,78,-50,54,-54,-84}
Returns: 0.008913002976542475
{-198,12,86,-96,46,-46,92,-7,-69,11,178,-99,-132,-174,-121,-160,-140,-23,-178,-188,58,106,-123,-170,-59,-126,-107,-106,36,-170,137,127,72,152,143,91,10,-115,-181,96,13,-18,-103,118,-69,160,-58,117,73,183,200,62,-143,-76,-129,-75,-184,91,107,-107,39,120,-50,144,76,62,133,-15,-109,159,47,-68,89,12,-150,159,193,148,-138,-76,-117,124,-194,-13,-144,58,67,-102,27,-54,37,-81,-92,-154,189,67,-66,132,144,-189}
{62,30,15,-80,-185,180,-169,-105,-163,-55,-82,-170,93,-168,98,97,-183,174,4,142,-120,44,154,-30,-11,-193,96,-114,-199,154,-41,-86,185,126,-157,-194,-79,-48,105,97,-194,-199,-159,151,-1,21,19,197,110,-76,81,74,-91,185,-116,57,-156,-96,9,67,190,-56,-132,136,60,-100,67,-145,-4,-29,-148,2,-152,19,12,-15,-48,-66,-75,138,150,93,0,-73,-143,-24,-2,78,145,138,-90,87,124,125,-129,140,-171,78,-174,159}
{11,16,7,90,48,39,22,80,59,49,73,71,18,74,33,67,75,56,93,86,85,50,18,43,64,30,51,4,7,65,56,66,99,45,33,14,3,15,74,12,88,93,35,1,41,36,67,75,82,63,87,14,3,85,42,46,12,29,31,84,5,51,89,43,72,16,97,97,1,56,30,81,55,72,42,10,88,43,3,58,20,22,31,96,99,99,23,11,6,94,78,1,79,7,15,86,64,25,98,42}
{41,94,-72,-29,42,92,10,-95,97,89,13,-89,-86,11,-31,-67,43,25,22,28,-13,66,99,-91,-73,31,-12,46,31,-65,-18,-68,-30,-66,-79,-23,57,99,64,33,17,55,-20,-62,-43,23,-27,-70,100,-45,20,52,18,-24,-60,-78,77,-99,96,-100,-72,9,-45,42,-67,1,-53,-31,-36,15,-10,95,-87,57,-90,-12,39,56,-43,-64,20,80,25,4,81,-91,21,52,21,-50,49,44,-86,-40,-22,-70,45,79,-22,-75}
{-55,61,48,-89,-49,-41,-68,-58,-82,-54,-22,-92,-31,-8,95,100,27,33,-29,73,-92,-15,-74,-33,23,-80,-16,63,47,-38,100,92,-37,61,-11,39,-60,-65,77,-86,2,-33,-20,-14,31,-58,80,-71,-34,8,-67,82,0,-81,-94,88,8,-84,-60,21,40,28,1,86,76,72,88,-73,-81,42,-31,46,-67,3,-70,-53,22,43,66,41,-87,-76,-7,53,-53,-93,81,56,-96,-69,84,87,53,-21,-50,72,95,-39,65,-49}
Returns: 0.04177963068151476
{-187,27,-79,41,-8,-35,162,-109,-180,126,119,16,-141,-123,154,-107,-35,-163,-30,60,94,-157,89,-104,83,-49,-143,108,-48,-23,-33,136,-7,-51,-127,-165,-181,188,34,-109,198,186,182,-97,59,148,158,200,21,70,-171,28,-50,182,198,87,187,63,-7,10,-19,85,166,-171,166,-47,130,-74,-193,104,6,-145,-106,-16,-165,133,-90,-94,-120,-14,118,-175,81,-49,10,105,-89,117,-33,1,184,-163,164,141,-67,72,190,183,-29,-65}
{-132,-51,-124,0,165,-83,-174,-4,-33,136,-174,105,1,-140,-54,-152,-155,-151,19,-131,179,-129,-87,-94,-181,-47,-111,-188,19,-103,-66,136,-31,14,8,80,101,-87,164,133,-117,-67,48,-48,-137,-177,11,-109,33,111,-190,-29,-195,-30,-177,-72,-138,-119,94,-48,-129,89,-23,45,189,116,-62,5,69,0,-182,127,166,92,-117,-77,134,-138,-10,64,-35,109,82,-116,-40,-45,112,-189,87,-40,-184,137,9,35,-42,-56,-64,-89,102,-192}
{7,92,48,45,41,50,36,14,95,57,66,27,53,23,54,34,94,20,65,42,91,73,37,43,40,40,56,31,72,68,36,40,12,3,83,2,70,38,18,23,92,40,68,40,34,14,24,37,36,73,76,99,89,94,14,81,98,63,57,9,20,15,42,27,84,60,41,3,72,23,11,3,94,60,53,29,99,91,49,16,65,91,43,23,75,79,20,46,46,87,95,39,47,93,87,61,63,42,52,61}
{-6,-79,-36,-48,68,-51,-68,89,-24,-26,69,-52,47,82,-89,-18,2,-10,-100,33,42,-60,2,45,-46,-56,21,84,72,62,-11,-72,-16,-81,-61,25,-17,96,42,6,28,-77,87,-30,61,-20,11,82,-69,67,57,78,60,-64,-12,99,50,-9,-31,-13,-83,-41,-68,90,-66,43,80,17,8,15,-63,8,95,-96,-81,32,-74,-53,86,-60,61,-25,-78,-58,-5,-25,26,-61,0,67,-70,49,47,23,39,69,-27,-43,-62,-11}
{75,33,-98,88,53,-66,-100,58,99,1,64,-19,-67,7,46,75,85,-98,-27,-83,98,20,15,13,-22,11,96,12,-6,-33,32,27,80,18,18,22,99,-72,-7,77,-84,-30,-35,82,70,2,32,34,-10,100,7,-31,-1,-61,70,45,-44,-51,-1,-17,-61,40,-57,86,68,-28,31,-96,77,50,-15,-12,-78,97,58,-56,-100,-49,10,-2,98,-38,-60,-28,3,97,31,71,-55,-69,44,12,-64,66,-4,-94,-46,71,-42,42}
Returns: 0.02650882133169733
{101,28,90,-115,-159,195,127,-86,84,-2,-10,170,-28,-160,-176,178,35,-117,-189,117,68,-68,119,-187,-192,-90,159,97,-31,-181,-182,-105,-190,-50,45,-186,70,141,58,24,-44,-187,55,-188,-36,-54,-9,-58,-142,-117,-166,76,-120,161,42,-23,12,128,-43,-148,-18,2,-130,-192,71,-43,131,-121,83,-45,193,184,97,-169,-18,121,160,-193,152,114,-23,167,138,70,53,115,8,33,164,109,40,110,-167,-120,113,31,-125,-69,164,81}
{-188,46,-32,151,145,-83,-164,21,-115,8,-21,-81,-90,-55,-125,76,118,158,199,-23,-70,-51,11,92,177,163,-166,149,-197,-100,19,-73,68,-101,85,199,150,-71,-16,23,-20,-93,-31,-140,89,-34,155,-25,-180,-34,-172,9,-155,-92,100,27,-63,149,-39,18,-178,-147,20,-144,-1,130,-186,-26,111,34,-6,-197,-136,-29,-103,-106,66,-28,-137,-92,-66,194,131,-111,15,-200,-182,168,85,-76,91,93,94,111,171,23,93,31,68,-45}
{84,78,57,21,22,39,95,5,58,77,79,61,95,29,93,36,47,76,69,36,99,20,35,57,17,82,62,55,2,48,29,51,30,14,31,2,83,37,5,4,75,22,99,5,5,66,68,15,17,44,81,25,3,47,29,11,65,57,56,9,59,60,94,12,50,82,74,39,70,92,16,74,84,61,70,45,82,79,1,89,6,88,3,26,74,69,56,84,18,9,49,29,71,58,52,1,33,33,27,89}
{-75,27,54,28,11,54,-39,13,86,-63,21,-91,89,-85,-51,-60,64,-78,48,-12,82,72,87,-66,0,-20,23,-93,68,-47,-50,-59,-84,35,-12,-13,-1,-47,94,94,85,-66,-97,53,-93,-11,-45,-44,-56,-39,-69,47,-97,79,96,79,99,-100,72,-20,-49,39,-87,12,-36,-28,-29,-41,-54,-99,73,43,22,-25,47,44,11,64,-64,5,-49,-65,73,-25,98,-82,59,58,80,-77,41,6,57,-52,39,84,-31,82,93,52}
{-64,2,-57,-16,-11,-20,-84,-83,-82,39,66,20,22,72,-52,33,-68,-38,-49,70,16,-6,-89,55,52,-90,-87,59,70,35,96,-46,-99,65,35,-68,-60,-88,59,26,96,47,-11,-63,41,56,15,-1,19,-97,-77,-25,-37,42,-17,67,94,-69,-15,65,-100,-78,-57,-17,78,99,-53,87,-42,40,88,-64,-78,-95,41,10,67,-62,75,7,-82,-89,7,-44,95,-81,32,53,92,82,-14,82,-56,54,42,11,72,87,56,75}
Returns: 0.020671295722391597
{72,-144,138,150,121,-100,-142,115,120,23,130,-21,177,-99,92,-99,77,-134,14,-55,162,172,2,-156,64,-3,-160,91,-131,-45,8,21,77,-131,156,85,42,-145,-120,-31,-39,-80,197,67,-105,-140,79,-87,-166,-155,-57,68,-135,-163,161,-200,-2,-28,-186,-156,83,4,-142,-157,-177,49,-85,175,-114,159,-94,-155,75,-87,-93,-117,-125,175,196,-35,-185,55,-174,-159,-83,19,-85,-9,-25,6,-29,106,-118,190,31,-69,171,-28,-63,-139}
{-129,29,-151,-94,-110,-189,-5,163,181,-24,157,-48,49,165,56,30,-90,145,168,-39,3,-106,129,114,35,119,170,67,-67,79,101,-155,54,181,53,-43,-166,-19,-163,158,139,112,118,-171,169,90,-110,-26,-78,94,-162,-63,0,34,-74,37,-168,55,187,183,-184,-76,-168,-154,90,172,-13,115,68,156,149,-105,21,127,-99,40,-119,86,-4,-70,38,140,-106,-84,-166,-85,155,23,124,51,35,57,3,137,-123,-104,-83,147,2,95}
{31,63,38,95,60,35,35,26,47,20,58,38,29,2,46,48,71,17,59,55,2,88,27,99,11,86,65,87,3,95,100,91,77,64,60,1,10,42,21,6,9,46,30,58,38,33,83,48,17,86,47,73,54,32,1,29,29,71,11,52,56,72,21,47,20,15,14,27,62,97,46,35,84,32,85,68,94,42,64,78,27,54,32,41,18,12,6,99,26,84,14,6,30,40,50,47,77,25,38,39}
{1,-6,81,-42,-83,-81,14,87,73,92,-75,-12,-84,-63,-94,-78,80,-97,48,9,94,-36,-25,71,50,-31,-68,86,-88,-93,71,-86,13,-95,24,-86,52,7,-80,61,-52,-17,91,-4,-22,23,25,62,-88,2,-26,1,28,85,80,57,97,-17,38,-96,-1,94,-21,-18,-3,62,-6,-97,48,15,-98,-14,-69,55,38,61,95,59,-57,-8,-70,-41,-68,31,-72,86,-8,72,-39,-90,52,64,57,-50,-19,-62,-41,-43,13,35}
{57,-43,-35,55,-74,-35,59,-92,-59,-12,44,53,-92,-91,-39,-47,-28,32,75,82,25,10,0,-70,-59,79,99,56,-89,27,99,13,70,-55,59,-50,-16,41,-17,-86,33,-58,-75,34,-40,33,-71,25,-10,-20,-90,48,15,19,-82,28,31,-6,72,-46,-89,-77,-71,60,-80,13,-2,-42,28,26,45,-36,86,-46,-55,-83,-80,-91,63,-63,31,80,48,-78,74,-5,-81,68,-49,4,22,-73,-11,-93,-32,91,22,-87,-61,-67}
Returns: 0.021990093377409977
{-10,60,178,103,138,-122,-32,165,174,-68,87,45,-72,99,81,113,199,14,190,-20,40,188,-163,-19,-97,74,-176,-87,-39,-96,98,93,-178,178,42,74,-141,80,-178,13,75,-161,-102,82,17,-77,-36,30,-47,65,-57,-156,145,111,182,-79,108,39,-142,-110,-56,86,190,-129,-74,-169,-149,-155,-161,-69,194,18,167,183,-8,25,-200,-67,192,91,153,177,-49,-109,41,-187,100,17,-58,162,-90,87,-157,28,-128,193,-103,-185,100,112}
{-179,-67,-126,-49,-194,-164,112,-59,-104,104,-167,-85,-146,-187,171,94,-109,-78,-75,103,191,-136,-65,-183,186,-57,12,111,17,-195,169,191,104,159,28,-97,22,23,-135,-87,-190,147,78,-43,-187,127,-101,-161,-93,-83,36,30,-37,151,61,194,21,-65,-99,192,-127,-4,-69,-160,184,55,165,49,-108,63,57,-54,-194,-33,130,101,138,-48,-8,-166,-172,56,-49,62,18,159,-109,-99,147,-155,49,-8,48,122,28,-67,-200,-110,-118,24}
{98,23,81,76,27,26,88,99,44,71,25,20,51,6,31,71,99,24,25,66,24,64,35,28,78,11,19,77,38,61,22,57,53,85,33,79,78,70,1,22,72,93,33,16,37,44,98,64,68,50,6,86,53,37,16,75,54,79,17,44,4,22,24,77,38,29,76,40,13,44,26,37,27,33,66,68,58,67,31,32,72,45,65,65,83,74,49,40,12,96,87,89,1,73,36,55,51,30,52,62}
{-50,-88,-39,36,8,62,22,47,-54,33,-33,-32,99,-72,42,33,-15,-18,76,44,-18,93,-45,-55,-80,79,-5,50,28,-37,-96,16,-14,-27,-4,9,84,-100,52,55,63,70,78,11,3,72,-49,67,-22,-34,-85,-82,78,-99,-79,-63,44,-38,-94,53,-78,-69,71,-82,8,13,-10,34,45,-7,-55,88,-95,76,-61,73,41,96,7,-70,-8,72,-97,-14,67,-2,-50,-1,84,-17,68,-51,-59,75,38,24,-88,70,-4,-28}
{-53,98,-81,-37,46,24,100,13,86,-23,8,-27,88,17,18,-41,-85,91,100,-53,86,-93,62,84,1,-91,8,51,90,-66,26,88,-13,-55,-6,-5,-18,52,-24,-22,34,-24,34,79,19,95,89,-72,-89,-28,-26,90,38,20,21,-42,47,40,-100,-13,-76,-32,53,98,94,99,67,-39,-51,55,-42,-26,-66,-76,-78,20,82,-69,-83,93,57,19,-97,92,95,89,-5,50,-41,-87,13,65,85,45,64,80,76,23,-15,51}
Returns: 0.01884785321682901
{115,67,171,147,-125,70,-193,21,197,-94,25,-76,-61,-36,-6,-65,51,-34,-90,-119,188,178,144,-178,180,51,-186,43,-160,-62,149,-155,133,-71,42,-134,138,174,-101,-108,-115,-4,177,15,175,45,176,-90,54,-69,147,-84,30,-95,-23,-107,-97,-97,102,-157,-170,83,-48,-192,77,98,-80,-79,71,-186,14,-174,81,-181,173,105,-175,30,-124,133,1,61,-148,169,33,187,161,-152,-35,-9,12,82,-189,130,-103,-22,153,-98,62,193}
{156,-159,-118,-85,69,80,46,38,-198,-38,-97,-61,-113,-143,-24,-100,50,-153,-20,155,-123,99,193,-101,137,-51,-51,-172,65,122,188,33,-22,2,-52,138,-175,-87,156,-39,-150,48,-119,-61,-2,-76,142,-67,190,-86,-9,122,169,51,-77,197,-130,13,27,187,-106,-31,54,2,-78,-177,-138,164,14,168,-50,-52,57,38,129,53,65,-101,-128,36,-88,-190,106,-71,-21,-173,-33,-113,66,-139,-47,-65,62,148,-156,101,3,29,-150,186}
{16,71,93,85,65,79,93,58,74,72,94,76,47,97,76,97,8,55,9,100,34,51,90,64,83,43,65,56,56,97,77,30,76,13,40,12,95,26,72,86,89,70,72,91,37,14,90,94,9,77,37,68,61,14,47,30,11,2,97,78,98,74,9,37,43,63,15,70,16,40,41,20,100,54,16,87,91,56,52,62,62,24,15,10,38,16,37,3,67,93,91,63,24,90,42,37,16,62,21,58}
{86,25,77,55,-22,46,-39,19,22,-7,-62,-51,58,42,-13,-40,-51,-99,93,90,27,-57,88,-94,95,-48,-44,-10,38,15,66,60,-67,89,70,53,-60,28,-37,-52,-38,60,-99,-67,61,38,-2,-72,-20,-46,-80,98,-32,20,-74,-88,-59,29,-79,65,90,53,-86,-72,57,59,55,-82,-95,-25,67,-43,-68,-13,33,-29,65,43,85,73,76,-86,29,17,88,48,56,-44,56,-24,-87,23,9,20,87,-74,85,37,28,79}
{27,12,-33,34,80,-26,78,-91,98,13,-38,-35,-19,-42,-40,32,-57,-13,-74,62,77,85,-96,-47,-65,39,3,8,28,91,71,0,-26,-53,-83,30,20,-37,-6,-84,70,90,26,68,-91,-93,-68,15,100,-92,34,-42,36,-75,56,22,25,-83,-63,87,59,-21,83,-85,10,25,59,-45,-88,-54,4,-62,53,-100,78,-93,-76,-74,57,87,-57,-25,77,82,-8,4,35,-55,17,-10,35,-58,16,-17,-1,-81,-19,-40,-86,8}
Returns: 0.03808380568661636
{67,-94,-192,-60,-110,115,178,-131,-7,-178,152,-114,102,156,111,88,180,-17,176,-4,77,49,-123,-52,114,-48,190,19,187,149,136,58,-111,4,-4,-64,-110,-35,49,-60,22,139,68,165,-7,126,-53,88,191,200,-157,94,73,-113,150,-70,-183,184,-12,-168,-153,46,21,147,-55,90,-172,145,86,-101,-39,63,-174,-101,-27,96,120,15,-183,134,77,134,-11,124,-36,31,-25,-8,-65,176,60,24,-57,146,-162,-163,127,155,107,137}
{178,-155,-72,63,-190,-137,175,93,178,-168,96,-121,-59,0,105,-91,3,-145,-191,-29,-135,-117,9,141,95,-93,57,99,179,147,68,-55,-158,-193,-109,101,42,-105,15,-34,70,-108,67,-156,-57,192,38,116,-171,-90,109,-116,-28,-121,-16,-80,-12,-195,-161,-100,-168,192,133,-146,137,-8,111,-148,52,142,109,133,56,-194,115,147,-176,-135,198,33,-143,124,-93,-69,52,-160,-164,-182,-90,71,-27,68,-25,-166,46,146,168,9,176,-174}
{20,67,3,63,81,86,58,69,32,23,32,78,4,21,72,17,85,27,17,69,16,64,92,5,71,28,4,37,57,81,7,43,32,78,34,73,43,62,21,32,2,19,37,46,41,28,43,16,78,85,72,54,40,44,51,63,14,41,94,4,80,62,39,53,22,38,57,19,51,87,54,89,30,36,50,36,44,82,38,50,49,23,55,58,16,65,78,70,43,98,1,7,26,76,85,48,57,59,69,14}
{94,93,-91,32,32,-98,-65,-97,-51,-68,-73,-59,-31,-51,-30,31,14,-95,-74,-70,13,-24,47,-63,81,34,33,-82,-61,19,73,-19,36,86,0,84,-6,74,-23,22,98,25,5,60,83,-27,13,-75,44,72,-55,-50,-87,98,51,92,-52,-81,67,-72,-94,59,-28,-31,-16,41,-43,74,-77,-97,87,-75,-92,35,97,65,-9,69,-42,80,-59,-36,93,-6,-67,-86,9,-34,75,-84,-58,53,100,79,-67,-93,100,-58,-84,39}
{-94,-79,1,-15,17,-97,66,0,-21,66,-71,82,45,49,-89,-61,61,67,80,90,-95,85,-94,-37,-52,-77,-96,-95,-40,61,-44,-43,-41,33,12,44,54,20,-71,-55,31,-67,42,-54,90,-83,47,20,78,77,8,-15,-76,-34,39,85,98,54,16,91,-23,2,79,-24,-7,86,-74,-8,77,-67,-69,-30,7,-53,-28,-79,53,93,-87,-39,89,41,-78,89,-16,63,-40,-7,-96,83,-42,-32,6,70,-85,-21,1,71,-36,36}
Returns: 0.03254381686023582
{23,-107,120,134,-181,30,95,-42,-79,-169,169,42,-110,155,165,194,184,-80,-143,-13,-160,163,67,68,-87,-14,-194,115,43,30,-31,-126,-193,66,-126,-72,-162,169,-14,-70,50,-111,-157,182,111,13,113,-152,127,-37,-125,-34,175,9,19,176,166,187,75,154,-182,-138,143,193,-94,-186,-112,184,132,-175,25,73,89,106,44,-144,12,145,39,-147,-100,123,-41,-190,-25,3,-150,-64,174,-144,-87,-41,-81,-131,62,17,132,-28,-17,9}
{-4,169,143,-178,185,-199,-118,-57,50,-186,110,-48,189,-197,86,187,15,-53,-161,58,1,-81,163,-129,190,22,200,-21,142,-162,103,33,168,3,-47,-88,49,-191,90,94,-13,-70,-67,-72,-102,93,-135,-139,100,28,13,119,-190,143,-60,20,-79,-182,49,-131,-24,150,-41,26,75,-95,-96,-164,-106,-38,-140,54,-84,62,-146,-107,173,-72,76,98,-91,85,44,-36,14,151,-18,104,-109,57,113,98,-172,82,-167,12,64,80,116,100}
{81,3,17,68,100,95,90,12,61,83,47,93,33,34,86,90,91,3,84,14,64,61,36,24,62,22,15,14,97,61,60,3,43,78,47,86,66,6,8,71,22,83,71,67,48,22,18,93,33,24,59,68,49,8,92,65,89,40,52,86,73,73,83,86,96,96,50,8,40,27,72,80,46,66,57,18,25,56,72,76,56,88,45,40,99,43,84,82,13,91,3,36,62,57,68,42,61,42,9,89}
{-90,14,65,17,-19,-33,81,25,91,0,-60,27,-79,-11,14,-29,-65,32,-49,65,48,18,28,67,-31,40,-9,-48,-78,-74,11,94,29,-39,-20,37,79,64,-74,92,27,-49,85,-27,50,3,78,-66,62,78,-20,16,97,66,38,-27,-26,16,-69,56,10,-73,76,-11,-54,60,-45,-80,97,-18,-56,72,-10,-33,-85,-5,60,64,68,-3,-99,11,54,-85,75,81,-44,-70,-12,-30,36,43,-68,-73,2,85,-89,-77,-38,46}
{-54,8,-54,44,-47,-26,-60,-52,24,76,-61,14,36,0,26,53,-48,-21,35,88,48,-93,17,73,-41,47,11,20,60,-26,-70,-88,17,54,-1,-87,99,18,-49,-94,21,-89,-86,-18,3,48,-99,43,-55,69,1,40,-81,52,63,19,60,-61,79,-86,-46,-59,40,-87,-25,45,58,66,86,70,-23,-99,-55,-83,-84,83,21,4,-30,99,-82,-37,-74,-33,23,-9,73,62,22,-76,-91,-42,61,-8,-82,97,12,81,2,10}
Returns: 0.037017756582605955
{135,-96,178,-151,-7,107,-91,-129,7,-16,-23,124,161,25,154,-124,198,-152,-190,24,-150,-138,4,-77,147,-94,122,11,101,-36,154,-200,37,198,-127,67,150,-93,-195,-183,-91,-157,-71,-117,-11,-27,-44,-161,-110,-164,-74,78,-144,-157,-130,-161,157,189,-13,93,-33,6,-78,152,-118,86,59,-18,168,-164,-86,-149,168,-174,-29,-24,158,-23,47,-53,157,-158,122,176,70,-67,137,152,46,-41,15,-179,55,147,11,-93,-177,159,108,-62}
{147,136,-54,-99,-75,-99,122,101,-7,35,-89,-199,4,-134,182,-133,76,-5,-139,-184,23,-147,73,-14,-167,53,78,-126,-51,103,-94,-124,-176,-41,8,84,-198,-67,119,169,118,-21,-180,183,-4,166,-140,-182,4,-82,56,199,0,-79,-137,-168,66,-53,-98,81,52,8,-162,178,78,-188,-44,178,-37,-101,109,144,-54,129,-130,-187,48,196,56,-3,58,62,7,134,181,25,58,-86,148,-192,131,114,-109,45,194,104,22,-155,110,137}
{5,11,79,48,46,99,17,62,37,45,39,16,59,24,19,27,100,40,3,87,19,70,61,23,20,74,50,94,15,22,5,39,8,46,19,39,75,20,75,68,96,88,97,34,34,80,35,51,31,93,90,7,22,95,36,73,56,59,26,34,2,15,30,82,34,47,15,82,63,45,96,4,38,50,20,38,25,80,11,81,83,13,31,21,76,67,32,20,76,60,95,93,20,57,83,72,69,18,64,1}
{59,2,12,-59,-61,-87,84,93,-96,42,12,31,9,-89,-4,89,3,-66,97,-11,-22,-63,18,-38,68,-82,91,-12,65,98,-26,-17,-10,17,64,75,66,-59,58,80,4,-47,-84,29,24,-92,-56,66,-95,-32,-25,65,-49,7,-29,-62,74,85,-42,-69,-57,39,13,-13,1,14,-24,-44,-99,-67,-5,-75,-27,2,84,20,-4,6,-95,95,53,45,79,60,100,-45,26,68,78,-98,39,-51,86,-70,-61,-36,-1,91,-50,83}
{-82,46,27,-14,-21,14,91,0,62,-77,-41,-80,87,-43,83,-71,-94,-33,100,-90,-87,-96,-11,-29,-74,-6,-84,-83,-2,61,2,-78,99,-76,63,18,-43,96,-83,99,-7,-3,85,89,53,74,-67,81,64,60,-98,7,65,17,54,-49,6,69,-36,36,59,-78,-27,-85,73,6,37,90,-40,-80,-11,96,-30,-59,71,54,10,-45,37,14,-5,76,3,-17,28,-25,-70,52,22,74,-39,64,32,80,-69,46,93,-92,49,60}
Returns: 0.026581403131106893
{837524,-453191,-261139}
{-273049,523391,879161}
{4,27,7}
{41,88,89,-89,-1,-30,48,-85,-14,-75,-89,73,40,70,-69,73,13,-2,19,85,-85,28,20,-30,50,-99,-56,22,-44,-27,-31,38,46,-94,39,-60,-4,74,-41,14,-39,69,-40,-92,30,-15,13,-42,-26,71,74,29,-48,32,9,-58,-38,-34,-32,70,17,-9,-2,97,-45,-56,47,90,-72,41,-76,48,-83,-42,39,-68,63,-29,-78,100,-58,90,-8,3,49,3,8,59,49,84,46,-44,-60,56,-43,4,-82,-59,-33,-15}
{-69,2,26,-95,21,66,-77,-65,-58,-39,32,-64,61,-79,9,87,-95,-42,-88,-81,-41,-49,-61,7,33,-13,23,66,13,-25,24,-81,87,-60,29,10,99,-45,-62,92,8,-98,41,39,-100,79,-92,-78,33,38,-40,-38,23,52,68,26,-50,47,52,12,-100,-7,-28,-27,-28,98,94,-64,-88,47,-26,31,15,-45,-72,-15,17,39,30,-1,53,56,-51,-92,76,-5,-63,16,-85,84,89,24,14,-90,93,-89,77,-25,92,77}
Returns: 0.0
{907005,965908,509499}
{346052,-917420,-401210}
{86,18,58}
{74,-62,-2,100,56,-86,92,95,-96,-22,22,-67,-85,-45,35,87,-85,38,45,-20,-42,-51,-82,-73,26,87,-12,-6,-57,-32,-94,-44,58,-77,-81,28,50,95,-41,-46,10,37,-93,15,92,85,68,22,-99,73,-95,2,32,24,-74,-29,3,63,12,-99,-45,-65,-77,70,-38,-48,-52,72,67,-87,-13,53,-12,14,97,-78,-94,11,-49,-16,33,-1,55,25,-29,-41,78,10,48,35,46,-43,37,20,57,39,41,39,-35,75}
{71,51,20,-76,53,-24,-32,61,-79,38,31,14,-49,-3,10,65,-94,80,97,-29,80,48,76,64,64,-81,39,22,33,-47,-75,37,3,-83,16,-85,-64,1,53,-95,28,-11,-2,-65,-34,-42,-99,-90,-66,68,10,69,50,-85,79,-78,-74,-90,48,91,34,34,-100,-20,-35,59,-14,95,76,-88,21,-65,-48,74,20,28,51,-49,60,85,-99,-38,-73,-45,-9,33,91,31,-13,62,59,-95,16,13,-42,39,-92,29,-73,-45}
Returns: 0.0
{-149675,887684,669468}
{248323,-291171,911987}
{7,1,95}
{-20,-73,38,79,-10,-35,-65,-7,18,-42,19,-80,64,93,60,33,-8,-8,-74,-11,23,87,19,53,-54,-14,23,94,-40,-91,-92,69,-45,-79,-98,-72,-56,-66,57,-77,-24,42,20,-69,-13,-52,49,43,63,56,-23,63,71,-93,-12,92,16,9,-77,-44,-42,30,8,-50,-38,88,18,50,-16,14,-76,-68,-59,-73,28,-79,-74,59,28,79,97,-48,-2,44,-80,-36,61,-14,7,-99,-31,-21,16,64,43,81,83,-47,89,-4}
{27,-66,5,92,42,63,-37,-53,-25,-1,-51,64,-57,-44,24,-40,-3,98,-15,-40,-95,-15,-36,65,-45,54,28,46,-74,15,97,0,100,93,-41,68,17,-60,-18,57,62,94,89,74,53,98,-80,-28,-62,83,-67,-6,50,73,42,-11,-24,-38,-91,90,-62,-4,-73,26,-12,-86,60,72,88,-97,-16,-39,-99,-52,89,38,-57,39,-73,62,67,49,70,90,0,9,91,-68,60,32,-70,99,-88,4,-1,22,-94,-74,41,-20}
Returns: 0.0
{868019,-65749,-533004}
{-536685,760253,-782169}
{47,65,56}
{-62,82,-19,67,-95,57,95,-44,-48,-27,31,-77,-68,-48,-69,-21,-66,-83,58,92,-81,-64,55,32,24,11,39,53,-9,-2,83,89,8,-54,81,4,-3,41,-50,36,-52,78,-47,42,-47,16,38,71,-22,70,72,23,-95,6,22,47,-82,70,67,-16,48,48,-28,46,40,69,-70,35,-50,77,-55,-41,-45,51,82,74,-92,-10,-41,-26,-92,76,47,57,-69,-83,-30,-73,-97,-46,-39,56,-55,60,63,-84,-91,87,-96,-1}
{69,-61,-29,-9,72,-72,-48,-48,64,37,-90,-31,25,54,-40,97,57,25,64,-52,22,-93,-41,94,-95,4,-41,-51,13,92,95,-72,58,-59,-50,-69,89,-29,-81,-65,-81,-1,49,94,-36,9,-23,28,-10,-59,-10,75,20,80,28,26,-63,-20,69,-64,20,10,-26,-28,-11,-96,23,49,97,73,43,4,29,-93,55,-67,63,80,-83,-64,37,89,47,-44,0,-75,-76,11,-55,95,70,91,-51,23,-94,79,-60,-73,-15,-80}
Returns: 1.7108000000000002E-4
{-606340,564806,-506141}
{849194,89423,-682515}
{23,27,98}
{45,98,35,-9,28,1,-31,-18,-40,86,-41,22,61,-5,-52,-99,47,-71,70,32,-24,-87,40,21,-41,94,-49,75,72,-11,-95,-42,-35,83,71,-74,-47,58,41,-8,5,-83,-96,-20,-82,23,59,-79,78,68,87,61,-80,-71,73,-62,8,78,74,91,-85,47,54,-43,-5,-84,-25,8,68,-68,-91,-28,7,50,60,-34,19,-95,13,-80,22,-44,-47,36,-11,83,-60,50,49,-7,17,-99,-65,33,-8,86,-85,97,-22,-30}
{-46,76,-94,-44,-63,-44,53,76,-92,-4,-99,31,-11,23,51,41,-31,-71,46,29,-60,-33,13,-96,7,33,79,-86,-98,-29,-23,50,92,89,94,26,-55,37,-92,99,8,7,15,-27,-6,92,-87,-15,-60,-57,-54,88,54,-15,-16,24,68,34,9,-18,-85,71,-20,-32,84,96,94,58,-95,-19,96,91,-90,-66,-12,-71,23,-73,-81,87,53,-68,88,-21,-65,20,-35,-65,-86,77,-25,-20,14,55,84,30,-52,-47,54,-32}
Returns: 6.0858E-5
{23605,-76970,954298}
{441439,-59393,404450}
{58,94,17}
{-75,-80,-79,-10,40,-83,-73,-33,20,-61,18,50,42,-62,-17,-80,52,-68,-91,88,-4,36,-1,-41,-55,-12,75,38,-60,20,-11,57,22,92,-24,-43,70,-54,38,13,40,39,21,58,-27,50,-32,11,42,22,74,49,-27,-93,54,5,21,-69,98,-98,-88,31,-50,-26,15,54,95,-93,35,-59,78,13,33,35,-100,-76,88,-60,-92,1,7,-23,-32,-21,-15,-67,56,-37,-79,48,-69,69,65,64,45,77,74,51,99,47}
{14,49,41,-60,-85,65,16,37,-67,55,-64,-39,-7,-79,-52,-12,19,-30,69,-67,30,-30,71,-2,49,-98,-96,-55,17,58,-47,-85,3,47,0,24,-72,50,1,-7,76,56,16,67,82,52,89,86,-65,-93,-45,45,-66,-34,-87,82,-8,-60,-20,47,99,-55,83,83,80,-77,-71,63,-27,-33,31,56,-28,-5,-84,-82,-45,-43,-11,-61,12,-99,66,-6,-98,-43,13,51,-57,-6,-42,-34,50,91,66,80,-77,94,25,68}
Returns: 9.268400000000001E-5
{-749426,-999088,913782}
{-687829,-140901,5936}
{88,1,66}
{-48,56,22,-42,53,-43,4,88,-46,-15,-51,54,72,-79,-44,-60,-10,14,49,-41,9,-49,38,96,-25,22,10,-82,24,74,-94,-61,45,0,98,-91,54,96,-23,-49,-37,-63,4,35,-57,50,-81,-74,-69,69,-64,49,-52,23,-78,-34,100,-97,1,-66,-25,19,91,-2,73,10,-9,-32,74,-71,-33,34,20,5,-92,-17,-97,-58,64,38,-46,-33,-7,-40,13,-4,70,-88,-11,75,-62,-16,93,32,-67,80,-11,81,62,35}
{88,30,-47,1,5,-18,7,-75,-88,-66,-33,-31,-6,-92,9,-77,-60,10,-15,-98,90,18,4,-42,91,-46,29,69,-13,83,-26,-19,65,27,-33,68,82,-47,-13,-84,34,71,95,69,-59,32,89,-17,-56,-9,-59,-83,-4,-29,59,18,23,-88,3,25,62,51,32,83,-9,-80,40,-46,-79,11,-44,62,-72,-48,40,38,-56,-31,27,78,37,10,97,72,-91,14,-90,57,81,99,64,-73,94,80,93,-45,-57,84,92,-12}
Returns: 0.0
{456392,-807827,125416}
{964430,-460170,14425}
{45,26,43}
{-42,-92,85,50,44,0,-10,-4,-12,-34,-69,30,-89,-99,-77,-23,-68,-8,-51,-14,-48,-98,63,-50,-19,17,42,-25,-13,-89,100,82,69,-4,-71,23,12,52,1,-69,-5,28,5,-50,0,-77,26,10,69,-46,33,24,8,41,-30,42,63,-16,35,-51,24,-24,-72,8,78,-33,30,43,-60,-90,57,-35,-52,-52,-35,-93,74,88,82,95,-96,-93,80,50,-79,-37,65,-21,-87,19,-19,20,86,-43,62,80,99,27,85,-72}
{-50,-41,56,85,28,74,-94,-19,15,31,2,-42,-85,34,88,-76,54,36,-37,46,64,-26,-90,65,85,62,-32,17,-36,53,-61,-38,-16,-3,-81,-48,-32,-92,69,8,-41,-48,-98,-1,14,27,72,-33,-81,60,91,-84,-76,-68,95,60,98,62,-100,-98,-79,64,82,78,41,76,-4,67,82,-1,-31,-96,-83,39,55,88,-92,83,-46,27,79,-69,99,5,-4,-42,32,13,-94,-83,-57,48,-62,-69,-2,45,93,29,44,54}
Returns: 5.030999999999999E-5
{-546867,899340,-257252}
{-390312,-585333,889224}
{33,100,90}
{64,-89,95,-56,60,91,12,39,1,-90,14,-81,-38,47,69,53,-88,-92,10,-97,-76,-7,-92,93,-57,60,-71,-61,-100,-2,27,42,57,93,-19,-25,-23,-58,65,-65,61,-19,58,-96,-12,-20,68,-61,-54,3,85,10,-91,-26,-4,-98,13,35,-20,-57,50,-26,-5,-28,68,17,39,-81,28,-72,77,-56,78,-32,82,-85,-17,-1,8,83,-88,-91,30,-5,75,-47,22,42,28,-79,-18,-6,14,-10,-1,-24,80,44,91,-9}
{-80,-45,-1,-24,77,-20,-77,24,-47,31,59,18,3,32,-67,-62,-4,57,24,22,-71,51,15,-91,18,-94,-31,-90,-92,93,-40,98,-32,81,-84,-69,-24,85,34,-41,53,85,82,52,-43,16,-5,14,-71,75,88,-1,-68,53,-62,-80,91,12,13,-31,-88,38,48,-54,-34,96,83,-12,-16,91,-28,-4,-73,-95,70,-81,59,-9,-82,3,43,0,75,41,93,-74,-5,32,66,83,-75,-51,31,99,25,-33,34,72,42,-28}
Returns: 2.97E-4
{-712826,386506,637021}
{-695994,-165602,-38872}
{100,9,24}
{-58,2,92,-4,44,0,-90,20,-95,50,-97,-34,-8,76,-85,-50,-16,-52,-53,-56,-94,-67,-40,-12,80,-20,-49,26,-47,-97,43,40,-21,-90,80,-71,87,-10,75,17,15,-27,96,12,-70,15,-22,65,78,59,-26,-28,76,-5,12,-64,35,39,-18,-7,57,-57,95,-25,-74,-94,-28,34,-35,39,-86,-99,-91,-39,-83,-63,61,16,-23,-92,-88,-82,72,95,21,-5,-65,-50,62,-84,-14,68,-47,-77,45,-16,67,66,59,53}
{16,48,99,54,-5,83,-25,62,68,-82,-27,-60,-38,-86,-74,-45,0,58,-29,-25,-50,-71,89,67,10,4,-81,-81,-44,51,-11,-61,-41,42,-10,49,26,-97,74,20,-56,-61,-56,24,-47,-62,34,51,26,-19,30,53,16,33,58,-75,-69,14,-88,-12,97,-96,-5,-100,3,-72,76,3,7,56,-99,-82,74,-65,-35,-100,-98,-60,80,21,32,-75,-13,34,5,-91,86,75,33,-33,-30,-15,-84,73,11,22,8,-9,93,-48}
Returns: 0.0
{-981430,-187330,14857,-363937,643857,-879605,991681,775833,-606947,-510803,-437123,846312,459537,-942448,954445,532216,-243134,728821,931409,623324,40190,990128,-764725,457647,-336080,369589,-415389,-938524,-816412,-645196,-662328,-444425,389022,-135209,-231511,-525488,256928,-125126,398947,589110,719062,-536797,-922509,-330699,-879565,-998720,623655,-91590,-538320,-90426,-264116,35387,692632,-423828,145855,-175151,73967,-956002,-933962,-762126,-701429,919011,659885,824021,-635696,-888121,190272,-243221,104031,-511956,-5433,748811,474651,172945,-629843,683732,687618,165105,-522320,561251,-512491,215950,-683515,-523755,799198,-955277,193505,715941,280575,-303322,-141659,-400471,642615,-640174,27220,84402,-902499,-765737,-684825,699868}
{6029,122628,360375,-1459,-518368,-713540,-669674,848153,-346330,-589631,962532,47055,-578773,260533,-240307,-972181,-938670,-572402,665811,818717,-581863,-254530,-645377,-316930,313710,49371,711653,-651131,887162,-440257,181896,-974633,973968,143105,149352,-888207,-282819,429600,-793365,-87993,137066,-25230,-952278,-891106,-163593,-573330,567430,-654174,840131,617897,-708189,821660,-472133,-627183,-657644,-14048,366898,-962397,-559026,-671554,994658,798596,279421,-451522,690847,-697741,651148,392677,285638,-294885,-284606,-203653,947657,-455966,341831,-391032,182852,-513692,889214,-951984,162215,-60892,-977863,-286905,-611978,271668,673154,-294227,-760144,608197,-239565,894053,892539,-761703,525786,604718,692016,-436009,660974,395498}
{46,64,92,70,1,98,47,74,83,53,66,44,43,56,44,61,81,73,13,92,74,38,68,74,77,26,77,83,79,76,26,96,61,88,23,30,100,10,60,16,41,29,76,35,87,82,78,27,11,28,34,60,21,34,15,80,3,89,4,6,27,72,17,95,98,74,42,63,58,36,65,43,83,94,9,42,19,73,20,10,60,68,86,78,75,78,97,40,21,56,63,6,87,30,44,55,19,24,24,90}
{51,73,-76}
{30,-71,13}
Returns: 0.633799768859142
{172828,73953,-466381,-947766,-353638,439623,-829665,391673,925085,578579,946295,-873278,-526140,123845,283035,-782143,-749125,-349919,-431710,882789,386664,979562,-622995,-486395,774332,578676,-823165,347411,-160751,-788798,-362259,890425,-298218,-924681,-277670,906571,-92081,148074,15066,702142,-771309,-514543,-162998,-154059,218586,-929593,664918,-903841,-246604,875134,658878,-309068,706547,-482755,-447858,425898,-6091,242653,463910,98881,-526785,-718159,-20454,-801771,-991517,378750,366473,-830236,-446504,264231,-608529,778749,-301239,-178381,-17823,562985,-583153,943685,840741,-915334,-943710,651543,869653,450325,791244,-180243,-411976,350097,-687913,-392312,-968395,-845664,-343505,-115255,415976,625776,84845,979687,-773126,-868029}
{93420,416877,-530856,-554238,104155,48239,384176,-806018,-25944,-779382,714968,989742,804036,716788,-937949,-404894,703097,-896554,759805,565032,-627154,-816657,623683,204538,96089,499966,-665685,387361,21479,106268,953235,-299246,304147,-104937,296513,186061,448251,299359,-781751,60182,183942,871734,-799562,124260,-719316,-315187,-561673,898588,-193636,842256,449896,-14628,-873240,-4942,-426684,-800568,280486,620304,-203921,-394803,-406590,-113887,891226,-275038,-739861,-596762,620290,-681526,181526,214795,-360628,806674,217687,-591593,-336974,-475867,-116016,966496,613068,817770,-562660,989938,-23059,931811,142026,725564,-248450,-353028,578325,688648,466915,968043,-780585,753815,741521,-442662,990370,-386938,-447118,-942371}
{56,91,88,52,82,3,91,57,48,30,29,62,42,25,96,60,82,40,97,53,58,80,14,65,7,20,100,33,97,45,56,39,83,88,68,19,78,97,41,11,52,80,49,73,20,78,12,38,11,94,45,79,23,19,100,21,60,78,7,34,5,18,40,17,78,95,3,72,33,8,67,6,3,55,12,53,66,67,52,95,59,42,60,70,56,87,81,66,21,74,30,4,57,37,23,20,7,75,34,66}
{-35,89,20}
{14,30,5}
Returns: 0.5626689222494591
{421779,-583293,565350,787877,-651981,-228704,787740,-872620,-543164,-41982,-405013,709747,856845,344443,889471,-265112,-982377,816410,-630333,-938519,-743133,643912,-286544,-861389,750911,875876,360005,-980691,-305239,-31708,11027,995767,-626047,524201,978310,-977733,-629284,-372512,325088,573494,-430493,55716,950657,-463863,262017,-425140,-734037,-421665,-897386,-114949,179136,876674,-787425,-799500,726503,81938,-131564,-976976,-432836,-506938,-177560,742935,-326733,-529432,-695313,-844847,-832305,-15681,402824,-792034,-88172,567426,506351,411114,-441274,893917,-550083,-966429,-282451,-219148,-882744,-687826,188119,-559035,-432843,278485,796140,800656,57091,-38873,811212,961249,418175,-884342,-512283,971533,547483,959038,411000,-529610}
{-765677,718003,761526,-613147,578838,-295766,739690,639855,-882371,-574468,389327,-147240,572611,62488,-700038,816582,153825,-207356,-303200,91081,331978,-336342,-272526,-736324,29184,-835920,181458,-335900,284819,-977393,60650,-842474,924631,581473,-968299,603900,-171570,361375,-687530,-588771,-886235,-642465,-335181,81421,96894,-625538,44668,-495929,-787197,251534,-638796,842000,-251891,120420,767059,500014,842056,-149692,-784040,-30700,-654454,-378789,-905305,201421,-544600,-351140,840003,-289366,310464,-149980,-45976,-998374,-382511,395176,122653,47723,-637659,43301,-873610,714413,117105,-730873,344267,3237,119587,-539446,-381964,951596,-875678,165183,652858,-105829,217073,246576,4916,-958870,848549,900645,-14364,51996}
{24,86,77,95,38,90,76,46,70,36,90,46,78,3,40,76,86,21,9,23,28,52,23,28,81,24,32,4,24,13,25,95,56,43,59,53,72,28,20,19,28,3,4,92,19,25,95,6,26,53,36,5,69,65,94,5,59,21,80,83,9,37,82,22,11,98,16,100,17,48,52,56,22,70,18,79,52,16,82,58,93,90,18,24,62,60,11,11,56,55,31,78,5,55,50,74,86,57,4,76}
{17,-37,59}
{87,-61,20}
Returns: 0.5416858967717361
{-523750,-390714,740709,846287,-966867,-471809,353591,-301709,895317,916848,-325273,-776468,-492594,-390040,102010,186511,261402,-118630,-57751,797449,-335062,258899,-498494,-625466,840460,-514104,159031,665528,-671937,-251083,-488678,-15797,351096,-982757,-691301,686068,68020,910684,-694982,-56413,144203,575400,632247,759545,453551,-811604,-29780,637675,-584029,-105328,-413498,717374,-249341,-538339,529194,-11773,-738767,561596,181352,-10369,420241,357547,-882256,154265,-693672,-63527,975142,11246,-564352,-147965,-345719,714405,374008,-377600,960009,337447,-862657,-968124,727241,-285324,988669,-88176,-191598,795399,542863,49634,-836238,953326,620780,25460,188564,502698,759262,-694000,957477,-166617,-325310,-766746,-706419,113888}
{-96924,-141330,14416,-534405,925735,-278900,-994924,-159884,87533,-349204,556020,-182473,338513,-53793,-65677,-273916,-263297,-523207,770649,-812125,874707,-50036,-505620,-693494,937637,-516230,-376764,-378629,54446,570553,-975900,508745,-521443,93152,-387959,415728,641418,56316,-486597,-351007,-580371,337905,202826,302627,149441,-300025,-146776,199644,337393,498839,-631798,-889468,699200,-304634,852655,452849,-913381,-35233,-781584,274095,780102,804420,-515273,-626916,112369,280336,313405,74410,789625,862395,-961212,-726187,825491,-636800,-994473,-627719,-789138,-979774,717789,-785264,843630,-734113,-605389,-178768,-106837,832723,628166,-424017,372244,-127885,411964,660786,39930,-562548,572390,333971,254513,272302,908576,255807}
{19,39,70,28,11,12,40,20,100,83,67,24,52,61,30,11,91,82,88,75,46,19,25,18,6,56,84,31,99,17,48,99,49,38,2,14,11,85,51,57,5,97,77,52,73,91,45,72,55,67,64,40,63,21,91,2,48,3,1,89,14,59,39,98,70,12,89,97,86,88,6,36,9,85,22,97,65,86,47,54,54,49,70,46,88,37,66,48,62,7,10,32,59,67,13,7,11,46,11,58}
{-91,55,-29}
{52,50,-51}
Returns: 0.5840216565831332
{381860,450849,-811615,-61593,-359208,-384915,-26358,-763380,-991269,-610677,948926,-724613,510134,184141,-463778,-61946,603261,221070,350532,-348631,157152,-695994,846480,875298,401172,886687,-582761,-140413,219932,590124,64186,-9292,772299,32330,979708,32294,-129265,783749,-992300,625465,887571,-288451,-39974,-232772,703422,-267848,172457,348308,834459,888438,160824,-540672,-757889,-585289,-763800,364556,-359025,616528,92662,874927,-400782,957964,-949788,-595142,-678581,449145,-389660,174405,-784423,-983374,913089,777200,999419,459986,89708,-978611,549166,916300,-184831,-643958,-718649,64993,-258199,771329,-580074,775768,-695782,87562,-211173,403378,470922,-542784,-62452,-894981,-982095,877059,-201575,-129898,-527343,582133}
{845673,50552,894957,-989921,152744,-921202,295507,-448245,-195346,-397893,83395,135637,17920,-972539,-368692,-787800,237386,779647,86575,-424293,967082,-722735,-917059,-152642,-575724,891611,-921821,742619,-506229,-630366,-849725,265546,826812,-442854,-960644,481733,-214344,780637,-645388,-916986,920467,-209867,449530,257937,-222138,325820,-319541,-654950,566778,85290,51689,980960,-629839,-333208,238352,619688,-966081,-468461,676352,-522172,633117,-252516,-743179,-180415,-44836,936394,-151471,-554174,899706,497335,-773555,675836,-464961,999344,219821,-363100,232269,6755,-817440,305302,-999953,980921,-731829,297358,-648360,226885,787941,-383195,-587052,304153,-936105,-848499,262420,25016,-484878,-791776,123485,-40592,-716002,879608}
{91,52,16,61,6,87,76,58,84,82,65,16,28,34,29,78,47,82,7,4,50,73,48,32,18,97,87,98,25,56,67,45,68,41,15,79,89,59,79,96,13,22,38,28,73,18,68,83,39,94,44,99,81,91,13,2,34,8,82,7,74,64,56,60,64,72,85,95,84,79,21,27,57,4,19,6,30,96,11,47,31,79,27,23,35,27,28,70,78,97,77,73,98,12,100,88,68,56,94,51}
{-27,-90,-86}
{65,-91,66}
Returns: 0.651299559204195
{-815133,-935143,-582846,136454,194431,76365,574434,228117,295864,280947,-393539,-893575,545083,-133911,330251,215152,-719409,-302980,-671646,-191699,-632665,796986,238273,290590,143983,298155,666371,-328146,396255,-539714,-856681,-612032,-920431,-932772,809206,-256551,83219,985321,874589,-338104,686662,-735797,749124,-877700,228050,65599,-83198,-424487,216867,-362211,-143846,372179,-739614,-835035,-701020,369518,-55923,26897,-498719,-202739,-935012,-715030,-62095,-883146,-166459,-134135,665489,74272,386588,-889000,559659,-709949,-889452,-797050,-720928,-790404,435497,-642902,-632657,-347936,667348,753668,-920287,-537102,-258471,560593,673215,375156,-822135,-304583,733443,-278719,532317,-223665,336296,-716021,411836,-668963,430571,616075}
{987801,862044,103517,-826544,-697550,132981,-337843,-916097,-95562,247190,-93770,5413,367004,-992234,-569323,857817,802211,-444665,-929762,-662028,-23222,-449821,-376361,16395,849554,-420595,694519,-231014,-388646,968167,-331962,842196,-5631,251581,30178,-339357,718577,-799906,-440176,332372,-786023,-880815,960514,486370,-103119,-354082,-469115,-42892,-404290,-252554,145062,716163,-989258,-619801,587048,291746,-28872,417904,-602819,103475,566177,688752,652123,622410,-287268,-623730,-845564,728872,409151,698697,-52425,864101,684830,-924478,499166,831592,230073,-239785,302496,874838,-859363,-929828,694401,-849796,451950,621281,-476407,-977749,-100907,937196,-631730,-54737,672768,-290972,-91983,462877,591369,-702054,-988359,-499633}
{42,39,60,59,35,20,73,8,33,67,62,22,2,72,32,59,35,47,41,63,83,16,5,42,60,97,71,37,75,97,11,28,67,64,59,59,19,92,28,88,82,97,81,85,20,26,85,69,13,69,39,13,19,5,88,53,71,87,73,75,99,52,3,69,94,91,41,61,41,46,99,2,55,48,70,70,82,42,85,52,82,76,40,66,44,47,25,10,49,19,78,91,42,28,11,74,77,91,62,4}
{88,11,-75}
{33,-86,-97}
Returns: 0.6052064180422375
{-825186,-991431,606875,562617,-28196,802124,729931,-128518,884304,159811,-542362,265652,887113,428165,-936699,-745401,284123,905719,941861,373069,230362,-678761,291001,284930,-530906,532520,568225,252816,-598807,-289731,40111,789312,121566,-851424,748437,273110,620913,964095,916557,528370,-442857,313088,-956262,791595,-755450,829042,492910,761764,-249217,477134,188915,-727137,130845,298037,-671038,-150362,967578,68435,-958186,760186,438958,811241,-396140,-533629,-828974,-328404,640119,475612,909105,-968984,557881,8851,-313404,-399045,866981,-804523,-251375,530659,574374,-388470,-194750,-538330,175951,-794560,528343,270288,395593,-113456,-781024,-48059,-446388,-582730,-317718,486345,-536647,-616936,948570,-865301,565319,457043}
{641954,871236,-606600,-744234,488855,434216,560342,-148380,-946607,234469,-924211,868452,-818223,173071,-460876,-180647,981383,810804,153367,913539,693721,-741360,-592007,-476331,-747346,-536660,905768,-162172,-332847,-15616,357269,378494,-76020,-275571,-536468,72865,941599,-6474,582122,-822945,725290,-30954,-819814,117621,342010,430705,882680,629886,-442693,-593968,783883,-763839,120544,960462,-412362,-199661,392080,-130714,944000,349230,849499,-503675,-649024,165541,-714052,-92692,-319848,-881728,-369111,804354,-219345,754912,593300,217373,961555,64313,-654946,-252439,-570143,-208016,-845592,-232156,-722209,-318682,350403,821839,623032,-225001,-725704,620049,591768,-960275,463628,336927,-72381,819643,-991123,466275,-91612,936008}
{88,89,2,64,83,40,70,91,64,76,71,8,85,27,99,30,62,31,26,83,38,75,16,89,34,29,59,20,2,16,32,64,49,29,5,89,87,48,78,97,35,66,11,94,73,54,66,74,71,2,59,82,94,53,18,40,100,50,77,22,53,53,84,9,81,67,88,20,6,96,82,40,28,49,98,41,88,22,20,12,38,66,31,49,45,13,6,8,29,63,58,38,80,56,76,75,28,1,13,16}
{61,52,-12}
{88,-48,-81}
Returns: 0.6083993083187729
{-992783,-800222,329354,979036,833172,969595,365537,317943,866379,-455380,-549127,892681,-563299,-197068,-664285,971661,-745047,-273987,14976,-319523,809955,611769,-524658,222734,-572385,464915,-191731,756041,-564255,260283,136467,-555948,472141,815009,77630,129567,350877,136252,465940,56022,-895961,831770,-481990,883722,-706380,-317198,711951,312249,364954,459881,34289,-394260,630153,907806,116966,296284,159928,-413423,309962,-681366,-789452,-794979,519171,255422,-371869,32874,-562077,397955,-382617,253281,500690,755769,-636534,-786303,-731278,694092,634029,735897,730319,-232991,-444810,-515951,-898632,-774833,-344994,142885,16864,452861,-370274,513166,709419,492524,866972,-567560,294870,-258157,-799814,951503,-771607,883478}
{-215159,-416606,-142151,781422,781877,-283366,-232596,867889,17015,-616329,723165,-289591,428396,-828993,-452649,211515,-637275,-819150,861980,-556313,428623,876276,-312127,-695835,722000,-653008,391886,-16739,-582175,341387,822224,833308,338636,229006,-107642,124244,-594494,353986,779017,-773647,-310300,-278499,6207,-163385,-244386,-259803,413050,707427,-975128,-909987,-769226,-42628,340269,33687,-862212,-783799,-357697,347248,-58063,-528098,-86816,6071,-438333,45550,779457,433324,-718479,-178132,-838340,627457,-626578,-367258,734075,-985434,245494,284880,-723389,52171,-498663,-839108,359721,-407295,-40915,-45302,906258,-327904,90011,645068,-323084,309179,-783137,-551408,598513,-704432,301854,143956,982331,664545,-83816,596060}
{64,13,69,45,52,41,66,23,93,75,33,56,82,65,11,21,66,1,98,18,38,67,62,32,39,51,42,37,18,97,67,97,38,86,46,58,10,95,36,29,66,63,27,78,40,79,52,15,54,68,69,74,57,25,55,65,25,20,92,39,2,48,4,46,90,61,69,88,71,38,9,25,1,64,4,30,6,34,61,38,44,36,53,91,75,5,52,55,78,58,29,49,45,75,8,7,19,98,72,84}
{50,35,60}
{39,-90,25}
Returns: 0.5801369709977982
{-159558,898043,-620227,961139,-823649,-80079,619973,-711804,-676140,-560787,-749194,-142415,-331017,857692,-70228,-634212,-719314,-966125,824543,993779,-236915,933085,331396,-193091,-323721,-773761,122502,814764,247019,-842516,-438932,191232,516933,652038,970359,-119650,342552,111988,-378655,-736683,922865,545103,-977317,-506185,-278006,-549446,-356639,479557,187074,-797769,-544905,305442,-338806,-13890,807011,859396,-138551,-214594,19687,-20503,794533,577966,-221438,-181764,-4314,724561,387763,176529,-307449,-616150,-197722,-979993,-994950,962006,-219376,675670,-188527,-94351,-900259,274260,-575364,-150466,476151,102379,803176,241439,-264460,-512964,578438,614627,667610,-117252,-39605,231614,471905,-57759,891402,-649658,964726,-376835}
{-437748,-219565,356096,-453346,826641,-407443,963197,109131,-649967,-106783,-897150,-173417,-910212,568179,-148117,-259635,351187,84677,282136,382635,206202,-974728,-887005,721133,155191,-430902,477854,19181,155097,-527348,439270,62219,-437100,413681,-509576,-862926,-684145,-360650,898069,574359,545746,-502993,-480150,-701097,-574851,-280951,143051,-568603,-91445,690023,931006,958083,693729,620031,758984,-675978,246671,-318658,558090,-291201,-369607,-341932,-686993,-488981,-226650,-934548,727287,-957644,-901248,-745906,568381,-484407,-825595,34857,-362220,-593965,-376225,670894,-979605,952769,408354,663536,853876,-716324,993232,-104996,-791570,-158566,-730420,-561313,-954884,538430,-523040,210910,56601,-894586,574835,447229,-965890,466083}
{93,26,4,51,73,23,27,3,1,2,10,76,91,85,29,45,72,67,27,37,53,61,36,92,64,82,78,31,14,1,22,39,96,48,90,27,9,18,75,92,20,56,43,87,57,5,58,23,75,71,3,65,52,50,37,82,15,78,89,6,67,76,80,69,75,8,56,12,48,49,6,11,11,42,47,38,17,66,14,46,13,65,10,91,47,52,14,86,65,52,27,50,48,7,6,1,25,44,37,35}
{62,-18,-56}
{-15,10,72}
Returns: 0.5184655424408093
{756524,416345,99009,456359,869566,-198869,-627911,-862549,939716,652938,-953930,430169,-77323,-79670,-230951,-306637,837599,-201755,-781530,-691879,-50404,753717,271285,-232099,-498451,942568,-8230,-763813,-820270,782474,-986265,-526639,680983,69794,6712,-901337,973365,-748566,-625965,-436805,497935,890317,-842975,-812758,166477,-943497,925473,574705,-120842,-628574,-490394,412675,-974218,-327568,557949,175214,806072,504690,-219583,842773,332753,844982,-988197,20882,-21684,-387514,-808788,-313957,-111153,615658,-649717,873496,-841429,372012,393159,-585270,-466000,-337635,528219,427867,-293608,-202434,649895,-87707,-56666,-905962,-911649,-831438,-723391,749217,-404771,35229,709098,857561,602373,-382232,-29022,-79401,937057,999603}
{508721,-210705,533221,390850,-277769,139892,324091,-913764,-258693,-568153,-745139,868730,-960865,-574367,597005,590445,-301849,-878547,800801,-315926,-444753,-797786,776739,111656,370953,449058,-217623,350697,-383146,373303,-244611,-472258,239009,945774,223467,627582,-589523,379418,-41240,680550,-519118,915799,-870835,58230,-313551,890821,-148397,204648,-132668,159988,-790632,-883212,-380922,-718678,664618,418907,166156,418981,261868,-610967,277020,324615,-644995,796880,293834,424453,-166168,-436399,-609339,182063,-218064,923182,-437954,725170,692176,869604,-700452,-123475,-74927,-906401,952788,31068,170470,-935573,754618,-723281,320838,339088,625686,425658,-73365,-806488,-970527,-813237,53646,825101,160349,-289893,932823,-672961}
{5,3,48,38,67,55,33,96,41,71,47,49,16,14,49,76,38,51,82,86,48,92,55,56,7,90,34,18,41,10,8,48,63,60,69,40,6,25,17,79,24,48,19,17,42,95,66,4,58,92,35,98,80,94,66,66,88,28,90,2,52,87,84,56,84,39,10,98,72,20,71,28,58,87,35,67,3,8,98,30,93,60,38,88,92,10,24,85,23,36,46,86,74,57,96,36,88,87,89,6}
{75,-85,78}
{79,82,-65}
Returns: 0.6257684552016769
{-9,12,12,9,-10,-14,1,2,3,5}
{-15,-9,5,-14,1,7,6,6,-11,-13}
{12,81,46,12,95,73,42,21,65,77}
{-8,9,-9,-5,-3,2,-6,-1,-10,4}
{8,-3,-4,5,-9,-8,-10,3,-1,-8}
Returns: 0.0
{2,12,-6,4,-9,-6,8,12,13,8}
{-8,-13,3,13,-4,9,-2,-6,-13,-9}
{33,11,14,30,55,68,9,69,18,43}
{-7,4,-3,-1,1,-9,2,-7,9,5}
{5,0,-10,-8,1,10,6,-2,-9,0}
Returns: 0.0
{-15,-11,-4,9,-9,12,-8,-9,7,5}
{-5,-3,14,-2,-15,3,-9,15,-8,15}
{61,19,27,14,88,81,47,48,9,82}
{1,10,7,0,-1,0,-5,-5,-4,8}
{-6,0,1,1,7,3,-5,8,-6,-8}
Returns: 0.0
{8,-10,14,13,12,13,6,-5,-7,-6}
{-14,5,-11,-7,6,7,2,5,-9,9}
{51,73,53,3,7,75,88,1,9,73}
{0,-4,5,-2,-3,-8,3,-5,10,4}
{4,-8,-7,-1,2,-10,-9,-10,10,9}
Returns: 0.0
{-7,-14,-7,-4,-3,-4,3,0,-10,-12}
{-9,11,9,1,-10,10,3,-14,-4,-9}
{73,63,93,44,8,60,80,82,19,60}
{-1,-9,-5,4,8,-5,7,10,-8,-10}
{-4,-3,-2,-10,-7,0,4,0,2,9}
Returns: 0.0
{-4,-3,-3,15,9,-11,12,-11,12,0}
{-2,-14,-15,-6,0,-3,-7,4,4,5}
{65,64,2,79,87,34,79,31,89,65}
{-10,-10,9,-2,-8,10,0,1,-1,-8}
{2,6,-3,-4,-7,-9,-1,-6,3,5}
Returns: 0.0
{8,-13,1,5,-7,-4,5,-4,-2,13}
{15,-5,9,5,-10,-14,-12,10,3,12}
{42,13,13,93,94,18,90,80,76,23}
{6,-3,-6,9,7,9,10,7,8,-2}
{-4,-6,-8,-2,5,-8,-10,1,4,-3}
Returns: 0.0
{3,11,13,-8,-3,1,-8,3,-14,-5}
{10,-6,0,3,-14,13,11,15,-6,11}
{72,25,81,55,22,12,80,49,44,84}
{-10,4,4,9,-7,-9,7,8,1,2}
{4,10,5,-9,-7,8,0,-9,6,-5}
Returns: 0.0
{8,-13,-5,15,0,-9,-15,-6,-1,12}
{15,8,15,-14,-3,2,-3,-8,-9,-1}
{67,40,21,74,11,21,28,8,29,84}
{-3,0,2,10,5,5,-3,-2,2,6}
{-4,4,-8,3,9,-9,4,-2,7,-7}
Returns: 1.50244753158656E-4
{10,13,-6,15,-8,11,0,7,-14,-1}
{-15,0,-7,5,4,11,-12,3,15,-12}
{30,65,25,53,20,30,68,19,73,20}
{-8,8,6,-1,-3,-3,9,-4,-5,7}
{7,2,-3,-4,3,-7,6,9,-5,-9}
Returns: 4.457197499999999E-6