3v4l.org

run code in 300+ PHP versions simultaneously
<?php define('INT_COUNT',100000); // Fill an array with random ints $ints2 = array(); for ($i = 0; $i < INT_COUNT; $i++){ $ints2[] = rand(0, 255); } // asort the ints asort($ints2); $start = microtime(true); // Do nothing but access each int in the array for ($i = 0; $i < INT_COUNT; $i++){ $ints2[$i]; } $finish = microtime(true); printf("Time taken with asort(): %.7f seconds\n", $finish - $start); unset($ints); // Now do it again, but this time use sort // Fill an array with random ints $ints = array(); for ($i = 0; $i < INT_COUNT; $i++){ $ints[] = rand(0, 255); } // Sort the ints sort($ints); $start = microtime(true); // Do nothing but access each int in the array for ($i = 0; $i < INT_COUNT; $i++){ $ints[$i]; } $finish = microtime(true); printf("Time taken with sort(): %.7f seconds\n", $finish - $start);
Output for 7.4.0
Time taken with asort(): 0.0086679 seconds Time taken with sort(): 0.0037990 seconds
Output for 7.3.12
Time taken with asort(): 0.0099890 seconds Time taken with sort(): 0.0043290 seconds
Output for 7.3.11
Time taken with asort(): 0.0039990 seconds Time taken with sort(): 0.0033748 seconds
Output for 7.3.10
Time taken with asort(): 0.0071042 seconds Time taken with sort(): 0.0029500 seconds
Output for 7.3.9
Time taken with asort(): 0.0030019 seconds Time taken with sort(): 0.0025649 seconds
Output for 7.3.8
Time taken with asort(): 0.0070291 seconds Time taken with sort(): 0.0026171 seconds
Output for 7.3.7
Time taken with asort(): 0.0067511 seconds Time taken with sort(): 0.0027611 seconds
Output for 7.3.6
Time taken with asort(): 0.0030000 seconds Time taken with sort(): 0.0026591 seconds
Output for 7.3.5
Time taken with asort(): 0.0042140 seconds Time taken with sort(): 0.0030019 seconds
Output for 7.3.4
Time taken with asort(): 0.0078890 seconds Time taken with sort(): 0.0026221 seconds
Output for 7.3.3
Time taken with asort(): 0.0034161 seconds Time taken with sort(): 0.0028911 seconds
Output for 7.3.2
Time taken with asort(): 0.0062490 seconds Time taken with sort(): 0.0042489 seconds
Output for 7.3.1
Time taken with asort(): 0.0063009 seconds Time taken with sort(): 0.0026040 seconds
Output for 7.3.0
Time taken with asort(): 0.0032248 seconds Time taken with sort(): 0.0029650 seconds
Output for 7.2.25
Time taken with asort(): 0.0077851 seconds Time taken with sort(): 0.0026329 seconds
Output for 7.2.24
Time taken with asort(): 0.0074139 seconds Time taken with sort(): 0.0045662 seconds
Output for 7.2.23
Time taken with asort(): 0.0033081 seconds Time taken with sort(): 0.0026009 seconds
Output for 7.2.22
Time taken with asort(): 0.0033169 seconds Time taken with sort(): 0.0025609 seconds
Output for 7.2.21
Time taken with asort(): 0.0071380 seconds Time taken with sort(): 0.0046260 seconds
Output for 7.2.20
Time taken with asort(): 0.0034468 seconds Time taken with sort(): 0.0027270 seconds
Output for 7.2.19
Time taken with asort(): 0.0077569 seconds Time taken with sort(): 0.0046470 seconds
Output for 7.2.18
Time taken with asort(): 0.0047231 seconds Time taken with sort(): 0.0026121 seconds
Output for 7.2.17
Time taken with asort(): 0.0046549 seconds Time taken with sort(): 0.0026581 seconds
Output for 7.2.16
Time taken with asort(): 0.0032790 seconds Time taken with sort(): 0.0026622 seconds
Output for 7.2.15
Time taken with asort(): 0.0032160 seconds Time taken with sort(): 0.0027781 seconds
Output for 7.2.14
Time taken with asort(): 0.0033360 seconds Time taken with sort(): 0.0026350 seconds
Output for 7.2.13
Time taken with asort(): 0.0033851 seconds Time taken with sort(): 0.0026860 seconds
Output for 7.2.12
Time taken with asort(): 0.0045180 seconds Time taken with sort(): 0.0033491 seconds
Output for 7.2.11
Time taken with asort(): 0.0040648 seconds Time taken with sort(): 0.0026910 seconds
Output for 7.2.10
Time taken with asort(): 0.0032110 seconds Time taken with sort(): 0.0026219 seconds
Output for 7.2.9
Time taken with asort(): 0.0096869 seconds Time taken with sort(): 0.0026789 seconds
Output for 7.2.8
Time taken with asort(): 0.0050049 seconds Time taken with sort(): 0.0030241 seconds
Output for 7.2.7
Time taken with asort(): 0.0037031 seconds Time taken with sort(): 0.0026250 seconds
Output for 7.2.6
Time taken with asort(): 0.0035489 seconds Time taken with sort(): 0.0026019 seconds
Output for 7.2.5
Time taken with asort(): 0.0033600 seconds Time taken with sort(): 0.0025890 seconds
Output for 7.2.4
Time taken with asort(): 0.0039401 seconds Time taken with sort(): 0.0025921 seconds
Output for 7.2.3
Time taken with asort(): 0.0043700 seconds Time taken with sort(): 0.0026090 seconds
Output for 7.2.2
Time taken with asort(): 0.0080421 seconds Time taken with sort(): 0.0052860 seconds
Output for 7.2.1
Time taken with asort(): 0.0040429 seconds Time taken with sort(): 0.0030360 seconds
Output for 7.2.0
Time taken with asort(): 0.0032101 seconds Time taken with sort(): 0.0025520 seconds
Output for 7.1.33
Time taken with asort(): 0.0117729 seconds Time taken with sort(): 0.0055780 seconds
Output for 7.1.32
Time taken with asort(): 0.0100410 seconds Time taken with sort(): 0.0077441 seconds
Output for 7.1.31
Time taken with asort(): 0.0097499 seconds Time taken with sort(): 0.0056779 seconds
Output for 7.1.30
Time taken with asort(): 0.0069299 seconds Time taken with sort(): 0.0056961 seconds
Output for 7.1.29
Time taken with asort(): 0.0070400 seconds Time taken with sort(): 0.0054660 seconds
Output for 7.1.28
Time taken with asort(): 0.0057800 seconds Time taken with sort(): 0.0057499 seconds
Output for 7.1.27
Time taken with asort(): 0.0069089 seconds Time taken with sort(): 0.0061691 seconds
Output for 7.1.26
Time taken with asort(): 0.0057621 seconds Time taken with sort(): 0.0056059 seconds
Output for 7.1.25
Time taken with asort(): 0.0059750 seconds Time taken with sort(): 0.0057249 seconds
Output for 7.1.24
Time taken with asort(): 0.0073380 seconds Time taken with sort(): 0.0057030 seconds
Output for 7.1.23
Time taken with asort(): 0.0061491 seconds Time taken with sort(): 0.0054960 seconds
Output for 7.1.22
Time taken with asort(): 0.0065298 seconds Time taken with sort(): 0.0055940 seconds
Output for 7.1.21
Time taken with asort(): 0.0084009 seconds Time taken with sort(): 0.0073709 seconds
Output for 7.1.20
Time taken with asort(): 0.0062969 seconds Time taken with sort(): 0.0054500 seconds
Output for 7.1.19
Time taken with asort(): 0.0062490 seconds Time taken with sort(): 0.0055902 seconds
Output for 7.1.18
Time taken with asort(): 0.0067019 seconds Time taken with sort(): 0.0056489 seconds
Output for 7.1.17
Time taken with asort(): 0.0059240 seconds Time taken with sort(): 0.0055518 seconds
Output for 7.1.16
Time taken with asort(): 0.0073678 seconds Time taken with sort(): 0.0059140 seconds
Output for 7.1.15
Time taken with asort(): 0.0065842 seconds Time taken with sort(): 0.0057840 seconds
Output for 7.1.14
Time taken with asort(): 0.0096719 seconds Time taken with sort(): 0.0060251 seconds
Output for 7.1.13
Time taken with asort(): 0.0060270 seconds Time taken with sort(): 0.0055981 seconds
Output for 7.1.12
Time taken with asort(): 0.0102172 seconds Time taken with sort(): 0.0056238 seconds
Output for 7.1.11
Time taken with asort(): 0.0069709 seconds Time taken with sort(): 0.0075731 seconds
Output for 7.1.10
Time taken with asort(): 0.0065200 seconds Time taken with sort(): 0.0057199 seconds
Output for 7.1.9
Time taken with asort(): 0.0087910 seconds Time taken with sort(): 0.0053592 seconds
Output for 7.1.8
Time taken with asort(): 0.0061300 seconds Time taken with sort(): 0.0054421 seconds
Output for 7.1.7
Time taken with asort(): 0.0055640 seconds Time taken with sort(): 0.0057042 seconds
Output for 7.1.6
Time taken with asort(): 0.0065589 seconds Time taken with sort(): 0.0055201 seconds
Output for 7.1.5
Time taken with asort(): 0.0056300 seconds Time taken with sort(): 0.0056300 seconds
Output for 7.1.4
Time taken with asort(): 0.0066149 seconds Time taken with sort(): 0.0054569 seconds
Output for 7.1.3
Time taken with asort(): 0.0059469 seconds Time taken with sort(): 0.0056860 seconds
Output for 7.1.2
Time taken with asort(): 0.0052080 seconds Time taken with sort(): 0.0053399 seconds
Output for 7.1.1
Time taken with asort(): 0.0059710 seconds Time taken with sort(): 0.0054340 seconds
Output for 7.1.0
Time taken with asort(): 0.0067220 seconds Time taken with sort(): 0.0056350 seconds
Output for 7.0.33
Time taken with asort(): 0.0070181 seconds Time taken with sort(): 0.0055230 seconds
Output for 7.0.32
Time taken with asort(): 0.0060401 seconds Time taken with sort(): 0.0056260 seconds
Output for 7.0.31
Time taken with asort(): 0.0065320 seconds Time taken with sort(): 0.0057440 seconds
Output for 7.0.30
Time taken with asort(): 0.0058160 seconds Time taken with sort(): 0.0054290 seconds
Output for 7.0.29
Time taken with asort(): 0.0071840 seconds Time taken with sort(): 0.0055749 seconds
Output for 7.0.28
Time taken with asort(): 0.0070689 seconds Time taken with sort(): 0.0055768 seconds
Output for 7.0.27
Time taken with asort(): 0.0059249 seconds Time taken with sort(): 0.0056031 seconds
Output for 7.0.26
Time taken with asort(): 0.0060658 seconds Time taken with sort(): 0.0055058 seconds
Output for 7.0.25
Time taken with asort(): 0.0085371 seconds Time taken with sort(): 0.0054901 seconds
Output for 7.0.24
Time taken with asort(): 0.0058570 seconds Time taken with sort(): 0.0076680 seconds
Output for 7.0.23
Time taken with asort(): 0.0064142 seconds Time taken with sort(): 0.0054669 seconds
Output for 7.0.22
Time taken with asort(): 0.0063930 seconds Time taken with sort(): 0.0057340 seconds
Output for 7.0.21
Time taken with asort(): 0.0060029 seconds Time taken with sort(): 0.0057759 seconds
Output for 7.0.20
Time taken with asort(): 0.0058930 seconds Time taken with sort(): 0.0057249 seconds
Output for 7.0.19
Time taken with asort(): 0.0066111 seconds Time taken with sort(): 0.0052829 seconds
Output for 7.0.18
Time taken with asort(): 0.0058901 seconds Time taken with sort(): 0.0056429 seconds
Output for 7.0.17
Time taken with asort(): 0.0057609 seconds Time taken with sort(): 0.0052769 seconds
Output for 7.0.16
Time taken with asort(): 0.0060420 seconds Time taken with sort(): 0.0053241 seconds
Output for 7.0.15
Time taken with asort(): 0.0058379 seconds Time taken with sort(): 0.0056651 seconds
Output for 7.0.14
Time taken with asort(): 0.0057731 seconds Time taken with sort(): 0.0054789 seconds
Output for 7.0.13
Time taken with asort(): 0.0064309 seconds Time taken with sort(): 0.0053458 seconds
Output for 7.0.12
Time taken with asort(): 0.0108790 seconds Time taken with sort(): 0.0051150 seconds
Output for 7.0.11
Time taken with asort(): 0.0075278 seconds Time taken with sort(): 0.0052741 seconds
Output for 7.0.10
Time taken with asort(): 0.0077059 seconds Time taken with sort(): 0.0058241 seconds
Output for 7.0.9
Time taken with asort(): 0.0093608 seconds Time taken with sort(): 0.0055170 seconds
Output for 7.0.8
Time taken with asort(): 0.0076261 seconds Time taken with sort(): 0.0058632 seconds
Output for 7.0.7
Time taken with asort(): 0.0063269 seconds Time taken with sort(): 0.0053661 seconds
Output for 7.0.6
Time taken with asort(): 0.0375810 seconds Time taken with sort(): 0.0070250 seconds
Output for 7.0.5
Time taken with asort(): 0.0099971 seconds Time taken with sort(): 0.0055549 seconds
Output for 7.0.4
Time taken with asort(): 0.0087738 seconds Time taken with sort(): 0.0074458 seconds
Output for 7.0.3
Time taken with asort(): 0.0080111 seconds Time taken with sort(): 0.0076120 seconds
Output for 7.0.2
Time taken with asort(): 0.0070381 seconds Time taken with sort(): 0.0055370 seconds
Output for 7.0.1
Time taken with asort(): 0.0065260 seconds Time taken with sort(): 0.0055211 seconds
Output for 7.0.0
Time taken with asort(): 0.0110781 seconds Time taken with sort(): 0.0051761 seconds
Output for 5.6.40
Time taken with asort(): 0.0138042 seconds Time taken with sort(): 0.0246940 seconds
Output for 5.6.39
Time taken with asort(): 0.0144870 seconds Time taken with sort(): 0.0263720 seconds
Output for 5.6.38
Time taken with asort(): 0.0163510 seconds Time taken with sort(): 0.0243011 seconds
Output for 5.6.37
Time taken with asort(): 0.0155640 seconds Time taken with sort(): 0.0278649 seconds
Output for 5.6.36
Time taken with asort(): 0.0135782 seconds Time taken with sort(): 0.0245411 seconds
Output for 5.6.35
Time taken with asort(): 0.0140531 seconds Time taken with sort(): 0.0286551 seconds
Output for 5.6.34
Time taken with asort(): 0.0141261 seconds Time taken with sort(): 0.0270979 seconds
Output for 5.6.33
Time taken with asort(): 0.0152450 seconds Time taken with sort(): 0.0266440 seconds
Output for 5.6.32
Time taken with asort(): 0.0152678 seconds Time taken with sort(): 0.0231001 seconds
Output for 5.6.31
Time taken with asort(): 0.0139940 seconds Time taken with sort(): 0.0225031 seconds
Output for 5.6.30
Time taken with asort(): 0.0137441 seconds Time taken with sort(): 0.0269601 seconds
Output for 5.6.29
Time taken with asort(): 0.0144689 seconds Time taken with sort(): 0.0246141 seconds
Output for 5.6.28
Time taken with asort(): 0.0145540 seconds Time taken with sort(): 0.0233788 seconds
Output for 5.6.27
Time taken with asort(): 0.0136681 seconds Time taken with sort(): 0.0228961 seconds
Output for 5.6.26
Time taken with asort(): 0.0136909 seconds Time taken with sort(): 0.0228131 seconds
Output for 5.6.25
Time taken with asort(): 0.0136249 seconds Time taken with sort(): 0.0241151 seconds
Output for 5.6.24
Time taken with asort(): 0.0141950 seconds Time taken with sort(): 0.0241439 seconds
Output for 5.6.23
Time taken with asort(): 0.0135698 seconds Time taken with sort(): 0.0284700 seconds
Output for 5.6.22
Time taken with asort(): 0.0130570 seconds Time taken with sort(): 0.0274570 seconds
Output for 5.6.21
Time taken with asort(): 0.0132711 seconds Time taken with sort(): 0.0226471 seconds
Output for 5.6.20
Time taken with asort(): 0.0138102 seconds Time taken with sort(): 0.0227230 seconds
Output for 5.6.19
Time taken with asort(): 0.0156219 seconds Time taken with sort(): 0.0221250 seconds
Output for 5.6.18
Time taken with asort(): 0.0156748 seconds Time taken with sort(): 0.0223200 seconds
Output for 5.6.17
Time taken with asort(): 0.0142171 seconds Time taken with sort(): 0.0248671 seconds
Output for 5.6.16
Time taken with asort(): 0.0157650 seconds Time taken with sort(): 0.0232770 seconds
Output for 5.6.15
Time taken with asort(): 0.0149009 seconds Time taken with sort(): 0.0235279 seconds
Output for 5.6.14
Time taken with asort(): 0.0133550 seconds Time taken with sort(): 0.0231340 seconds
Output for 5.6.13
Time taken with asort(): 0.0139370 seconds Time taken with sort(): 0.0248239 seconds
Output for 5.6.12
Time taken with asort(): 0.0136678 seconds Time taken with sort(): 0.0232830 seconds
Output for 5.6.11
Time taken with asort(): 0.0138412 seconds Time taken with sort(): 0.0249760 seconds
Output for 5.6.10
Time taken with asort(): 0.0135591 seconds Time taken with sort(): 0.0224910 seconds
Output for 5.6.9
Time taken with asort(): 0.0141618 seconds Time taken with sort(): 0.0258830 seconds
Output for 5.6.8
Time taken with asort(): 0.0134289 seconds Time taken with sort(): 0.0273590 seconds
Output for 5.6.7
Time taken with asort(): 0.0136371 seconds Time taken with sort(): 0.0240240 seconds
Output for 5.6.6
Time taken with asort(): 0.0141909 seconds Time taken with sort(): 0.0250981 seconds
Output for 5.6.5
Time taken with asort(): 0.0133071 seconds Time taken with sort(): 0.0262461 seconds
Output for 5.6.4
Time taken with asort(): 0.0139670 seconds Time taken with sort(): 0.0251021 seconds
Output for 5.6.3
Time taken with asort(): 0.0154488 seconds Time taken with sort(): 0.0250480 seconds
Output for 5.6.2
Time taken with asort(): 0.0170970 seconds Time taken with sort(): 0.0247891 seconds
Output for 5.6.1
Time taken with asort(): 0.0154679 seconds Time taken with sort(): 0.0237629 seconds
Output for 5.6.0
Time taken with asort(): 0.0145321 seconds Time taken with sort(): 0.0240850 seconds
Output for 5.5.38
Time taken with asort(): 0.0138240 seconds Time taken with sort(): 0.0227330 seconds
Output for 5.5.37
Time taken with asort(): 0.0143371 seconds Time taken with sort(): 0.0248702 seconds
Output for 5.5.36
Time taken with asort(): 0.0131989 seconds Time taken with sort(): 0.0223210 seconds
Output for 5.5.35
Time taken with asort(): 0.0139680 seconds Time taken with sort(): 0.0241539 seconds
Output for 5.5.34
Time taken with asort(): 0.0136261 seconds Time taken with sort(): 0.0232921 seconds
Output for 5.5.33
Time taken with asort(): 0.0159290 seconds Time taken with sort(): 0.0231941 seconds
Output for 5.5.32
Time taken with asort(): 0.0142241 seconds Time taken with sort(): 0.0234771 seconds
Output for 5.5.31
Time taken with asort(): 0.0161920 seconds Time taken with sort(): 0.0229928 seconds
Output for 5.5.30
Time taken with asort(): 0.0133300 seconds Time taken with sort(): 0.0234849 seconds
Output for 5.5.29
Time taken with asort(): 0.0158951 seconds Time taken with sort(): 0.0273368 seconds
Output for 5.5.28
Time taken with asort(): 0.0158911 seconds Time taken with sort(): 0.0229158 seconds
Output for 5.5.27
Time taken with asort(): 0.0164089 seconds Time taken with sort(): 0.0265169 seconds
Output for 5.5.26
Time taken with asort(): 0.0143352 seconds Time taken with sort(): 0.0238111 seconds
Output for 5.5.25
Time taken with asort(): 0.0167351 seconds Time taken with sort(): 0.0246050 seconds
Output for 5.5.24
Time taken with asort(): 0.0132439 seconds Time taken with sort(): 0.0235081 seconds
Output for 5.5.23
Time taken with asort(): 0.0136769 seconds Time taken with sort(): 0.0236199 seconds
Output for 5.5.22
Time taken with asort(): 0.0159400 seconds Time taken with sort(): 0.0227830 seconds
Output for 5.5.21
Time taken with asort(): 0.0133579 seconds Time taken with sort(): 0.0224562 seconds
Output for 5.5.20
Time taken with asort(): 0.0143070 seconds Time taken with sort(): 0.0254910 seconds
Output for 5.5.19
Time taken with asort(): 0.0133328 seconds Time taken with sort(): 0.0268221 seconds
Output for 5.5.18
Time taken with asort(): 0.0172820 seconds Time taken with sort(): 0.0228980 seconds
Output for 5.5.17
Time taken with asort(): 0.0153570 seconds Time taken with sort(): 0.0247781 seconds
Output for 5.5.16
Time taken with asort(): 0.0133090 seconds Time taken with sort(): 0.0226388 seconds
Output for 5.5.15
Time taken with asort(): 0.0166550 seconds Time taken with sort(): 0.0256541 seconds
Output for 5.5.14
Time taken with asort(): 0.0141859 seconds Time taken with sort(): 0.0247180 seconds
Output for 5.5.13
Time taken with asort(): 0.0136869 seconds Time taken with sort(): 0.0256619 seconds
Output for 5.5.12
Time taken with asort(): 0.0134780 seconds Time taken with sort(): 0.0236731 seconds
Output for 5.5.11
Time taken with asort(): 0.0131981 seconds Time taken with sort(): 0.0235271 seconds
Output for 5.5.10
Time taken with asort(): 0.0138571 seconds Time taken with sort(): 0.0260448 seconds
Output for 5.5.9
Time taken with asort(): 0.0162852 seconds Time taken with sort(): 0.0281649 seconds
Output for 5.5.8
Time taken with asort(): 0.0132110 seconds Time taken with sort(): 0.0233881 seconds
Output for 5.5.7
Time taken with asort(): 0.0139740 seconds Time taken with sort(): 0.0259159 seconds
Output for 5.5.6
Time taken with asort(): 0.0157661 seconds Time taken with sort(): 0.0238609 seconds
Output for 5.5.5
Time taken with asort(): 0.0140429 seconds Time taken with sort(): 0.0235002 seconds
Output for 5.5.4
Time taken with asort(): 0.0141490 seconds Time taken with sort(): 0.0245721 seconds
Output for 5.5.3
Time taken with asort(): 0.0147991 seconds Time taken with sort(): 0.0237172 seconds
Output for 5.5.2
Time taken with asort(): 0.0135219 seconds Time taken with sort(): 0.0237951 seconds
Output for 5.5.1
Time taken with asort(): 0.0135200 seconds Time taken with sort(): 0.0277581 seconds
Output for 5.5.0
Time taken with asort(): 0.0140409 seconds Time taken with sort(): 0.0249829 seconds
Output for 5.4.45
Time taken with asort(): 0.0140932 seconds Time taken with sort(): 0.0254421 seconds
Output for 5.4.44
Time taken with asort(): 0.0133011 seconds Time taken with sort(): 0.0265498 seconds
Output for 5.4.43
Time taken with asort(): 0.0163660 seconds Time taken with sort(): 0.0236440 seconds
Output for 5.4.42
Time taken with asort(): 0.0161409 seconds Time taken with sort(): 0.0227010 seconds
Output for 5.4.41
Time taken with asort(): 0.0141859 seconds Time taken with sort(): 0.0244088 seconds
Output for 5.4.40
Time taken with asort(): 0.0152800 seconds Time taken with sort(): 0.0272269 seconds
Output for 5.4.39
Time taken with asort(): 0.0136421 seconds Time taken with sort(): 0.0236790 seconds
Output for 5.4.38
Time taken with asort(): 0.0139408 seconds Time taken with sort(): 0.0231731 seconds
Output for 5.4.37
Time taken with asort(): 0.0136859 seconds Time taken with sort(): 0.0233510 seconds
Output for 5.4.36
Time taken with asort(): 0.0132940 seconds Time taken with sort(): 0.0240319 seconds
Output for 5.4.35
Time taken with asort(): 0.0138681 seconds Time taken with sort(): 0.0281570 seconds
Output for 5.4.34
Time taken with asort(): 0.0153580 seconds Time taken with sort(): 0.0236459 seconds
Output for 5.4.33
Time taken with asort(): 0.0135589 seconds Time taken with sort(): 0.0233450 seconds
Output for 5.4.32
Time taken with asort(): 0.0147419 seconds Time taken with sort(): 0.0281510 seconds
Output for 5.4.31
Time taken with asort(): 0.0152121 seconds Time taken with sort(): 0.0232949 seconds
Output for 5.4.30
Time taken with asort(): 0.0132399 seconds Time taken with sort(): 0.0229590 seconds
Output for 5.4.29
Time taken with asort(): 0.0136850 seconds Time taken with sort(): 0.0230830 seconds
Output for 5.4.28
Time taken with asort(): 0.0138900 seconds Time taken with sort(): 0.0241599 seconds
Output for 5.4.27
Time taken with asort(): 0.0143850 seconds Time taken with sort(): 0.0242159 seconds
Output for 5.4.26
Time taken with asort(): 0.0130181 seconds Time taken with sort(): 0.0239871 seconds
Output for 5.4.25
Time taken with asort(): 0.0132401 seconds Time taken with sort(): 0.0237710 seconds
Output for 5.4.24
Time taken with asort(): 0.0159011 seconds Time taken with sort(): 0.0278549 seconds
Output for 5.4.23
Time taken with asort(): 0.0142879 seconds Time taken with sort(): 0.0249650 seconds
Output for 5.4.22
Time taken with asort(): 0.0152409 seconds Time taken with sort(): 0.0249209 seconds
Output for 5.4.21
Time taken with asort(): 0.0143030 seconds Time taken with sort(): 0.0248220 seconds
Output for 5.4.20
Time taken with asort(): 0.0166030 seconds Time taken with sort(): 0.0259991 seconds
Output for 5.4.19
Time taken with asort(): 0.0130751 seconds Time taken with sort(): 0.0227191 seconds
Output for 5.4.18
Time taken with asort(): 0.0131390 seconds Time taken with sort(): 0.0227120 seconds
Output for 5.4.17
Time taken with asort(): 0.0134721 seconds Time taken with sort(): 0.0225580 seconds
Output for 5.4.16
Time taken with asort(): 0.0151000 seconds Time taken with sort(): 0.0248580 seconds
Output for 5.4.15
Time taken with asort(): 0.0131540 seconds Time taken with sort(): 0.0274129 seconds
Output for 5.4.14
Time taken with asort(): 0.0163150 seconds Time taken with sort(): 0.0234110 seconds
Output for 5.4.13
Time taken with asort(): 0.0173111 seconds Time taken with sort(): 0.0237532 seconds
Output for 5.4.12
Time taken with asort(): 0.0161400 seconds Time taken with sort(): 0.0238929 seconds
Output for 5.4.11
Time taken with asort(): 0.0133319 seconds Time taken with sort(): 0.0229909 seconds
Output for 5.4.10
Time taken with asort(): 0.0131471 seconds Time taken with sort(): 0.0279360 seconds
Output for 5.4.9
Time taken with asort(): 0.0140300 seconds Time taken with sort(): 0.0230088 seconds
Output for 5.4.8
Time taken with asort(): 0.0130520 seconds Time taken with sort(): 0.0229211 seconds
Output for 5.4.7
Time taken with asort(): 0.0134268 seconds Time taken with sort(): 0.0267591 seconds
Output for 5.4.6
Time taken with asort(): 0.0132449 seconds Time taken with sort(): 0.0259259 seconds
Output for 5.4.5
Time taken with asort(): 0.0133400 seconds Time taken with sort(): 0.0265751 seconds
Output for 5.4.4
Time taken with asort(): 0.0135522 seconds Time taken with sort(): 0.0235701 seconds
Output for 5.4.3
Time taken with asort(): 0.0135460 seconds Time taken with sort(): 0.0279748 seconds
Output for 5.4.2
Time taken with asort(): 0.0137551 seconds Time taken with sort(): 0.0240221 seconds
Output for 5.4.1
Time taken with asort(): 0.0136070 seconds Time taken with sort(): 0.0277991 seconds
Output for 5.4.0
Time taken with asort(): 0.0132091 seconds Time taken with sort(): 0.0265489 seconds
Output for 5.3.29
Time taken with asort(): 0.0150471 seconds Time taken with sort(): 0.0190060 seconds
Output for 5.3.28
Time taken with asort(): 0.0148380 seconds Time taken with sort(): 0.0193820 seconds
Output for 5.3.27
Time taken with asort(): 0.0144050 seconds Time taken with sort(): 0.0291102 seconds
Output for 5.3.26
Time taken with asort(): 0.0149961 seconds Time taken with sort(): 0.0275400 seconds
Output for 5.3.25
Time taken with asort(): 0.0153301 seconds Time taken with sort(): 0.0188870 seconds
Output for 5.3.24
Time taken with asort(): 0.0154810 seconds Time taken with sort(): 0.0254040 seconds
Output for 5.3.23
Time taken with asort(): 0.0216289 seconds Time taken with sort(): 0.0191939 seconds
Output for 5.3.22
Time taken with asort(): 0.0200291 seconds Time taken with sort(): 0.0181379 seconds
Output for 5.3.21
Time taken with asort(): 0.0160670 seconds Time taken with sort(): 0.0202742 seconds
Output for 5.3.20
Time taken with asort(): 0.0161099 seconds Time taken with sort(): 0.0179729 seconds
Output for 5.3.19
Time taken with asort(): 0.0238452 seconds Time taken with sort(): 0.0179062 seconds
Output for 5.3.18
Time taken with asort(): 0.0191290 seconds Time taken with sort(): 0.0219581 seconds
Output for 5.3.17
Time taken with asort(): 0.0164881 seconds Time taken with sort(): 0.0219960 seconds
Output for 5.3.16
Time taken with asort(): 0.0231559 seconds Time taken with sort(): 0.0185032 seconds
Output for 5.3.15
Time taken with asort(): 0.0159900 seconds Time taken with sort(): 0.0199859 seconds
Output for 5.3.14
Time taken with asort(): 0.0146739 seconds Time taken with sort(): 0.0192630 seconds
Output for 5.3.13
Time taken with asort(): 0.0200961 seconds Time taken with sort(): 0.0186319 seconds
Output for 5.3.12
Time taken with asort(): 0.0165529 seconds Time taken with sort(): 0.0261550 seconds
Output for 5.3.11
Time taken with asort(): 0.0245008 seconds Time taken with sort(): 0.0209870 seconds
Output for 5.3.10
Time taken with asort(): 0.0149531 seconds Time taken with sort(): 0.0180552 seconds
Output for 5.3.9
Time taken with asort(): 0.0147269 seconds Time taken with sort(): 0.0194571 seconds
Output for 5.3.8
Time taken with asort(): 0.0169160 seconds Time taken with sort(): 0.0227640 seconds
Output for 5.3.7
Time taken with asort(): 0.0156751 seconds Time taken with sort(): 0.0207880 seconds
Output for 5.3.6
Time taken with asort(): 0.0155120 seconds Time taken with sort(): 0.0289321 seconds
Output for 5.3.5
Time taken with asort(): 0.0151401 seconds Time taken with sort(): 0.0175891 seconds
Output for 5.3.4
Time taken with asort(): 0.0143180 seconds Time taken with sort(): 0.0277791 seconds
Output for 5.3.3
Time taken with asort(): 0.0139279 seconds Time taken with sort(): 0.0183618 seconds
Output for 5.3.2
Time taken with asort(): 0.0155041 seconds Time taken with sort(): 0.0188100 seconds
Output for 5.3.1
Time taken with asort(): 0.0146070 seconds Time taken with sort(): 0.0176308 seconds
Output for 5.3.0
Time taken with asort(): 0.0162859 seconds Time taken with sort(): 0.0197508 seconds
Output for 5.2.17
Time taken with asort(): 0.0070171 seconds Time taken with sort(): 0.0123549 seconds
Output for 5.2.16
Time taken with asort(): 0.0077949 seconds Time taken with sort(): 0.0122211 seconds
Output for 5.2.15
Time taken with asort(): 0.0082119 seconds Time taken with sort(): 0.0136189 seconds
Output for 5.2.14
Time taken with asort(): 0.0073140 seconds Time taken with sort(): 0.0120690 seconds
Output for 5.2.13
Time taken with asort(): 0.0070531 seconds Time taken with sort(): 0.0122080 seconds
Output for 5.2.12
Time taken with asort(): 0.0093591 seconds Time taken with sort(): 0.0168781 seconds
Output for 5.2.11
Time taken with asort(): 0.0072501 seconds Time taken with sort(): 0.0127079 seconds
Output for 5.2.10
Time taken with asort(): 0.0074520 seconds Time taken with sort(): 0.0147331 seconds
Output for 5.2.9
Time taken with asort(): 0.0110829 seconds Time taken with sort(): 0.0136440 seconds
Output for 5.2.8
Time taken with asort(): 0.0069180 seconds Time taken with sort(): 0.0110621 seconds
Output for 5.2.7
Time taken with asort(): 0.0077190 seconds Time taken with sort(): 0.0137720 seconds
Output for 5.2.6
Time taken with asort(): 0.0091710 seconds Time taken with sort(): 0.0134490 seconds
Output for 5.2.5
Time taken with asort(): 0.0109100 seconds Time taken with sort(): 0.0106421 seconds
Output for 5.2.4
Time taken with asort(): 0.0071580 seconds Time taken with sort(): 0.0164740 seconds
Output for 5.2.3
Time taken with asort(): 0.0076201 seconds Time taken with sort(): 0.0165510 seconds
Output for 5.2.2
Time taken with asort(): 0.0069861 seconds Time taken with sort(): 0.0137429 seconds
Output for 5.2.1
Time taken with asort(): 0.0067210 seconds Time taken with sort(): 0.0115299 seconds
Output for 5.2.0
Time taken with asort(): 0.0071349 seconds Time taken with sort(): 0.0125680 seconds
Output for 5.1.6
Time taken with asort(): 0.0074639 seconds Time taken with sort(): 0.0153010 seconds
Output for 5.1.5
Time taken with asort(): 0.0073469 seconds Time taken with sort(): 0.0122411 seconds
Output for 5.1.4
Time taken with asort(): 0.0076900 seconds Time taken with sort(): 0.0130999 seconds
Output for 5.1.3
Time taken with asort(): 0.0081792 seconds Time taken with sort(): 0.0147781 seconds
Output for 5.1.2
Time taken with asort(): 0.0074170 seconds Time taken with sort(): 0.0123281 seconds
Output for 5.1.1
Time taken with asort(): 0.0083852 seconds Time taken with sort(): 0.0109639 seconds
Output for 5.1.0
Time taken with asort(): 0.0072529 seconds Time taken with sort(): 0.0122609 seconds
Output for 5.0.5
Time taken with asort(): 0.0179031 seconds Time taken with sort(): 0.0249600 seconds
Output for 5.0.4
Time taken with asort(): 0.0168159 seconds Time taken with sort(): 0.0225458 seconds
Output for 5.0.3
Time taken with asort(): 0.0193820 seconds Time taken with sort(): 0.0323529 seconds
Output for 5.0.2
Time taken with asort(): 0.0160050 seconds Time taken with sort(): 0.0249240 seconds
Output for 5.0.1
Time taken with asort(): 0.0157840 seconds Time taken with sort(): 0.0225029 seconds
Output for 5.0.0
Time taken with asort(): 0.0158331 seconds Time taken with sort(): 0.0248470 seconds
Output for 4.4.9
Time taken with asort(): 0.0160220 seconds Time taken with sort(): 0.0218520 seconds
Output for 4.4.8
Time taken with asort(): 0.0242890 seconds Time taken with sort(): 0.0305320 seconds
Output for 4.4.7
Time taken with asort(): 0.0158340 seconds Time taken with sort(): 0.0247870 seconds
Output for 4.4.6
Time taken with asort(): 0.0195780 seconds Time taken with sort(): 0.0255370 seconds
Output for 4.4.5
Time taken with asort(): 0.0167330 seconds Time taken with sort(): 0.0212170 seconds
Output for 4.4.4
Time taken with asort(): 0.0191710 seconds Time taken with sort(): 0.0240250 seconds
Output for 4.4.3
Time taken with asort(): 0.0183550 seconds Time taken with sort(): 0.0230310 seconds
Output for 4.4.2
Time taken with asort(): 0.0195950 seconds Time taken with sort(): 0.0246560 seconds
Output for 4.4.1
Time taken with asort(): 0.0202780 seconds Time taken with sort(): 0.0270900 seconds
Output for 4.4.0
Time taken with asort(): 0.0183830 seconds Time taken with sort(): 0.0235810 seconds
Output for 4.3.11
Time taken with asort(): 0.0193150 seconds Time taken with sort(): 0.0302290 seconds
Output for 4.3.10
Time taken with asort(): 0.0171760 seconds Time taken with sort(): 0.0244450 seconds
Output for 4.3.9
Time taken with asort(): 0.0160660 seconds Time taken with sort(): 0.0225280 seconds
Output for 4.3.8
Time taken with asort(): 0.0192570 seconds Time taken with sort(): 0.0278020 seconds
Output for 4.3.7
Time taken with asort(): 0.0153060 seconds Time taken with sort(): 0.0223880 seconds
Output for 4.3.6
Time taken with asort(): 0.0189010 seconds Time taken with sort(): 0.0247680 seconds
Output for 4.3.5
Time taken with asort(): 0.0160880 seconds Time taken with sort(): 0.0239440 seconds
Output for 4.3.4
Time taken with asort(): 0.0152790 seconds Time taken with sort(): 0.0236550 seconds
Output for 4.3.3
Time taken with asort(): 0.0160390 seconds Time taken with sort(): 0.0234520 seconds
Output for 4.3.2
Time taken with asort(): 0.0155030 seconds Time taken with sort(): 0.0245910 seconds
Output for 4.3.1
Time taken with asort(): 0.0155520 seconds Time taken with sort(): 0.0227950 seconds
Output for 4.3.0
Time taken with asort(): 0.0157090 seconds Time taken with sort(): 0.0227310 seconds

preferences:
206.01 ms | 401 KiB | 322 Q