Statistics

Problem Statement for "ParkAmusement"

Problem Statement

A new ride is opened in an amusement park. It consists of N landings numbered from 0 to N-1. Some of the landings are connected with pipes. All of the landings are at different heights, so the pipes are all inclined and can only be traversed downwards.

A ride-taker begins his ride at some landing. The pipes are long enough that he cannot see where they lead before entering them. Therefore, at each landing, any descending pipe adjacent to it has an equal probability of being used by a ride-taker who reached this landing.

A ride is finished when a ride-taker reaches a landing which has no adjacent descending pipes. There are two types of such landings: exits and crocodile ponds. If the ride-taker reaches the exit landing, his ride is over and he safely returns home. If one reaches the crocodile pond, his trip is also over, but he never returns home.

You're given a String[] landings describing the ride. Element i of landings describes the i-th landing. If the landing is an exit, the i-th character of landings[i] will be 'E' and the rest of the characters will be '0's (zeroes). If it is a crocodile pond, the i-th character will be 'P' and the rest will be '0's. If the landing has at least one adjacent descending pipe, the j-th character of landings[i] will be '1' (one) if a pipe descends from the i-th landing to the j-th, and '0' (zero) otherwise.

A ride-taker began his ride at a randomly chosen landing, used a total of K pipes throughout his descent and safely returned home afterwards. Each of the landings has the same probability of being chosen as the initial landing of the ride. Compute the probability that he started the ride at landing startLanding.

Definition

Class:
ParkAmusement
Method:
getProbability
Parameters:
String[], int, int
Returns:
double
Method signature:
double getProbability(String[] landings, int startLanding, int K)
(be sure your method is public)

Notes

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

Constraints

  • landings will contain exactly N elements, where N is between 2 and 50, inclusive.
  • Each element of landings will contain exactly N characters.
  • Each character in landings will be '0' (zero), '1' (one), 'E', or 'P'.
  • If the i-th element of landings contains an 'E', it will contain only one 'E' as its i-th character, and all other characters in that element will be '0'.
  • If the i-th element of landings contains a 'P', it will contain only one 'P' as its i-th character, and all other characters in that element will be '0'.
  • If the i-th element of landings doesn't contain an 'E' or a 'P', it will contain at least one '1' character. The i-th character of such element will always be '0'.
  • K will be between 1 and N-1, inclusive.
  • startLanding will be between 0 and N-1, inclusive.
  • There will be no cycles in landings, i.e. it's never possible to return to the same landing after descending through several pipes.
  • There will be at least one landing from which it is possible to reach an exit using exactly K pipes.

Examples

  1. {"E000", "1000", "1000", "1000"}

    1

    1

    Returns: 0.3333333333333333

    The ride contains 4 landings, one of which is an exit. Each of the other landings has a single pipe descending to the exit landing. Therefore, each of them could be the starting landing with equal probability of 1/3.

  2. {"E000", "1000", "1001", "000P"}

    1

    1

    Returns: 0.6666666666666666

    This time, there is an exit landing and a crocodile pond. Of the other two landings, the first has a descending pipe only to the exit, while the second is connected both to the exit and to the pond. So, the probability of reaching an exit starting from landing 2 is lower and the chances of ground 1 being the start of the journey increase.

  3. {"01000100", "00111000", "00001010", "000E0000", "0000E000", "00000P00", "000000P0", "01000000"}

    1

    2

    Returns: 0.14285714285714288

    Analyzing the graph above, we can see that landings 0, 1 and 7 could be the starting landings. One can reach an exit from landing 0 using 2 pipes with probability 2/6, from landing 1 with probability 1/6 and from landing 7 with probability 2/3. Therefore, the probability that the ride-taker began from landing 1 is equal to (1/6)/(2/3+2/6+1/6)=1/7.

  4. {"0100", "0010", "0001", "000E"}

    0

    2

    Returns: 0.0

    Obviously, the only way to get to the exit landing using 2 pipes is from ground 1. Therefore there is no chance that landing 0 was the initial ground.

  5. {"E00", "0E0", "010"}

    0

    1

    Returns: 0.0

    Note that some sections of the ride might be disconnected.

  6. {"0100","0010","0001","000E"}

    0

    3

    Returns: 1.0

  7. {"E000000000","0000100000","00E0000000","1000000000","1000001000","0101000001","0001000100","1010000000","0000000100","000000000E"}

    7

    3

    Returns: 0.0

  8. {"001010001001011","0P0000000000000","010110000100011","000P00000000000","010100001101011","111110101101011","111010001101011","111111101101101","00000000E000000","000000000E00000","101111111101111","000100000100011","101111101101011","010000001100000","00000000000000E"}

    12

    3

    Returns: 0.16726738299659505

  9. {"P00000000000000000000","0E0000000000000000000","00P000000000000000000","010011111011010001001","010000010010100001000","010010111110001100011","100010010100100101100","0000000P0000000000000","101000100011000100100","000010000000100000001","0000000000E0000000000","101010010110100101001","000000000000E00000000","011000111001101000000","010010010111100101110","001010010110100000001","000011100101011101001","00000000000000000E000","111000000111100001000","111010001001100001101","00000000000000000000P"}

    3

    6

    Returns: 0.2704537165335397

  10. {"000101110001000000000000","0E0000000000000000000000","110000110000101100110010","000P00000000000000000000","111000000100101000010000","010000000101000000000000","000000P00000000000000000","000001101101000001000000","000101000100000100000000","000000000E00000000000000","011011000001100000001010","010000000000000101000000","000001010101000101100000","111110110011100001000001","100100001001000100000010","010100100100000000000000","000100001001001000010010","000100100100000100000000","100001111101000111000010","110100010001001000000010","111010001000100110100010","011010010101010110011010","100000100101000101000000","111010000111100101111000"}

    0

    6

    Returns: 0.008009019349626698

  11. {"0000010000000000000100001011001","1000010001000000001100000001000","0001000001001100101000000010000","0100010001000000100110000000011","0000001010000000100011000000110","00000P0000000000000000000000000","1111000111010100001011001001000","0101010000111001000000001011101","00000000E0000000000000000000000","0000000000000000001100000000100","0000000001000010000000000100111","0000010000000000000000000000000","0000000010110010001000000110011","0000010101000000100100000001110","0000000001000000000010000000000","0000010001011000001000001000100","0000000000000001000000000001000","0000111100010001100001000101110","0000000000000000000000000000001","0000000000000000000010000010010","0000000000000000001000000010000","1111000010110001100000011100000","0000010101010100001000010010000","0110000100000001000000001011000","0000000010010000000100000010100","0000000000010010001000001000010","00000000000000000000000000P0000","0000010000101001000000001000010","0000000000000000000000000000P00","0000000000000000000000000000101","000000000000000000000000000000P"}

    0

    8

    Returns: 0.0

  12. {"000011010101000100010001111001000","001010010000000010000010000011100","000010001000000100000000011000000","000011000000001110010000000000100","0000P0000000000000000000000000000","000010000000000000000000001100000","000011001001010100100010010000000","001001000000000000100000010000000","00000000E000000000000000000000000","000000000000000000110011000000101","100000010001001000010011111001000","011000000000000000001001000010100","010110101100011000000000001100000","101100001000000010010010100110000","100010010001000000010000000000000","000000000000000E00000000000000000","001010000000000000000000001100000","011111001000000110011000001010101","000000001000000000000000000010000","010001010001000110000010001000001","010010011000000100000001000000100","000001111110000000101001010011001","0000000000000000000000E0000000000","010010000000000000100010000111001","000000000000000000110001000111101","000001001000000000100000000010101","00000000000000000000000000P000000","000000000000000000000010001000000","000001001000000000000000000000000","000001001000000000000010000100000","000000001000000000000000001000000","001000100010110100001001101001000","000000000000000100000000001001100"}

    0

    8

    Returns: 0.0478859435404893

  13. {"00100010000000100010000010000011000000","00000000000000100000000000010000000001","01010000000100100010000000000010000110","00000001000000001010100100001111001001","00010010010000001100000000000000001000","00000001000000001000000000000011000000","000000P0000000000000000000000000000000","0000000E000000000000000000000000000000","10000110010000000110100000110100100100","00000010000000000000000000000001000000","10001000000011100001010001101000000000","00000000000000000000001101000000010000","00001100000000001100000000100101000010","00000000000000010000000000010001000010","00000000000000000010000000000000000001","00000001000000101000000000011000000101","00000000000000100010000000000000000001","01000000000000100000000000000000000000","00000001000000000000000000000000000001","01000011000000010000101000011000100000","01000010010000010000000000000000000000","10000001000001000100100110000100000010","01000110010010000000000001001000001101","01000001000000001110000001100000000100","00010001000000100000000000110001100000","00000000010000010000000000100110000001","00000010000000101010000000000000000000","000000000000000000000000000P0000000000","00000010010000000100000000000000000101","00000101010000000010000000010000000100","00000000000000010000100000100000001100","00000001000000000000000000110000000000","00000001000000000100001000000100000010","00011000000001010100000110000001100001","00000001000000000000100000000000000001","00000000000000000000000000000000000E00","00010010000000000000000100001000000001","00000010000000000000000000000000000000"}

    2

    10

    Returns: 0.09193640604121392

  14. {"P0000000000000000000000000000000","0E000000000000000000000000000000","00000001000000000100010000000100","000E0000000000000000000000000000","0000P000000000000000000000000000","00000P00000000000000000000000000","000000E0000000000000000000000000","0000000E000000000000000000000000","00000000P00000000000000000000000","000000000P0000000000000000000000","0000000000E000000000000000000000","00000000000E00000000000000000000","00001000000000000000000000000000","0000000000000P000000000000000000","00000000000000P00000000000000000","000000000000000E0000000000000000","0000000000000000E000000000000000","00000000000000000E00000000000000","000000000000000000P0000000000000","0000000000000000000P000000000000","00110000000100000100000000000000","000000000000000000000E0000000000","0000000000000000000000E000000000","00000000000000000000000E00000000","000000000000000000000000P0000000","00000010000000001010000000000000","00000000000000000000000000E00000","000000000000000000000000000E0000","0000000000000000000000000000E000","00000000000000000000000000000P00","000000000000000000000000000000E0","00000101000000000100000000000000"}

    31

    1

    Returns: 0.23529411764705885

  15. {"P000000000000000000000000000000000000","0P00000000000000000000000000000000000","1000000000000000000010000000000000010","0000000000001000000000010000001000010","0000010000000000000000000100000100000","1000000000000000000000000000000000000","000000P000000000000000000000000000000","0000000000000000000001000000000000100","0001000000100100010000000000100000000","0000010000000000010000001001000000000","0000000001000001000000000000000000000","0010000000000000000000000000000000000","0000100000000000000000000100000000000","0011000000000000000000100000000000010","00000000000000E0000000000000000000000","000000000000000E000000000000000000000","0000100001000000000010100000000000000","0000000000000000000000000000000000001","000000000000000000E000000000000000000","0000000000000000000010000000101100000","0001000000000001000000000000000000001","1000000000000001000000000000000000000","0000000000000000000000P00000000000000","00000000000000000000000P0000000000000","000000000000000000000000E000000000000","0000000000000000000000000E00000000000","0000000100000000100001000001000000000","0000000100000000001000000100000001011","1000000000000000001000100000000000001","0000100000010000000000000000000000001","000000000000000000000000000000P000000","0000000001000000000000001000000000000","0000000000000000000000001000010100000","000000000000000000000000000000000E000","0000000000000000000000000000000000P00","0000000000000000000000000000001001000","0000000000000000000001000000000000000"}

    31

    5

    Returns: 0.184304534801702

  16. {"0101001101010100111100000001100001110","0000010000100000100000000100000001001","00P0000000000000000000000000000000000","0100000011001000000000101000000100100","0010001000101000000000000000100100011","0000000000010000000100000010010000000","000000P000000000000000000000000000000","0000000E00000000000000000000000000000","00000000E0000000000000000000000000000","0000000110000000000101000000010000001","0000000000P00000000000000000000000000","0000001001001000000011000000010000010","000000000000E000000000000000000000000","0011100000010000101011000101000000000","0111010000000000010001110011010100011","1000000101000100010011101011000100000","0000000000000000E00000000000000000000","00000000000000000E0000000000000000000","0010010001101010000000100100111010010","0000000000000000000E00000000000000000","0000000100000000000000000000000000010","000000000000000000000P000000000000000","0100001110010000000000000110000001010","0100001010000000000101100100010000000","0100011111110000100000110000000101011","0000000000000000000000000E00000000000","00000000000000000000000000P0000000000","0001000100001000010111100000000100001","0000001100010000000010001000000001010","00000000000000000000000000000P0000000","0010100000010000000001001000000000000","0000000000000000000000000000000P00000","0011010000101000010001110010000001000","0000000001101000000000000010000000000","0000001000010000000110000000001000001","0000000010000000010000000000000001001","000000000000000000000000000000000000P"}

    22

    6

    Returns: 0.018438938615270885

  17. {"0000110001010010001000001001000100010010","0E00000000000000000000000000000000000000","00P0000000000000000000000000000000000000","000E000000000000000000000000000000000000","0000000010001000000000000000000010000000","0001000001000000000000001000000000000000","0110100000000000010000010010000000010000","0100000010100001001000000000000000001100","00000000E0000000000000000000000000000000","0001100000000000000000000000000000001000","0000000000001000001000000000000000001100","0000001011001001001000001010000100000000","000000000000P000000000000000000000000000","0100000100001000111000010010010110011000","0110001001000001100001010100110101011010","0010110000000000000000000000010000010001","0011010011010001000000000000000010000001","00000000000000000E0000000000000000000000","0111000001000000010000010000010000001000","0000000000011100110000100000110011000100","1100000011000111110001000011000001000111","0000001000000000100000000001000000000110","0110000100100011010001000100000001001011","00000000000000000000000E0000000000000000","0010000001101000000000000000010000010000","0001010100000001010000000001100100010000","00000000000000000000000000P0000000000000","0011000100100101001000000000000000001011","0100000000000000100001010001000010000101","0100000000000000000000010010000000000000","1110000000100001000010111010000100000100","0100010000000000001000010010000000001100","00000000000000000000000000000000P0000000","0000001001100001000001001110100000000111","0001100000011000001001110010010000010101","0101000000001000000000010000010000001000","000000000000000000000000000000000000P000","0000000000000000000000000000000000000E00","0000001010000100011000001000000100001000","0010001011100000000000001010000100010000"}

    14

    16

    Returns: 0.03988136408234385

  18. {"01000000000100000010010000000100000100000100000000","00000100000000000000000000000000000100000000000000","01000010000100000010000000000100000100010100010000","01000100010001011010001100110100110110011010000000","01110111000110101011010111101000001010000000001100","00000P00000000000000000000000000000000000000000000","000000P0000000000000000000000000000000000000000000","10010010010100011000110100110100100010000101010000","11101111010111100001110001111001101010111001101101","01100010000000000010010100100000010000010110010000","11110111010000011000011000110110100100011011000001","01000010000000000010010100000100000000000100000000","01010101010001001011110001111010000111000111111000","10100110010100000010010000010100010100001100010000","01100111010101011011100011011110110011001111011000","11000000000001000000011100110000010000001110000000","11100110010101000010111000100100010110000110000001","01100111001101111011110111111000110010001110011101","01000100000000000000010000000000000100000000000000","01110111001101001000111010011110010111000111011000","11000010000000010010000100110000110100001001000001","000000000000000000000E0000000000000000000000000000","01100110010001000000010000100100010100001110010000","00000000000000000000000P00000000000000000000000000","10000110011101010000001100111110000110001100000001","01000110010100000000011010001010010111011010000001","11100100000100000000010100000100000100010100010000","11100010010000000000010000100100010100011100000000","00110011011001010010101100110110110010011110011000","01000010000000000010000000000000000100000100000000","10110101000101001000011000010000110000000110010001","11111111000110011110111011100110000010111100111001","11000100000001010000000100110100000010011111010001","01000110000000000010010000100000000000001111000000","11110110010101101011011110100100110110001111011000","00000000000000000000000000000000000E00000000000000","11100110000100000000011100010100010100011100000001","11100110001000011010111110100100010100001010011001","11110111011011111001101011001100110011001100000100","000000000000000000000000000000000000000E0000000000","11100010000100000000010000100100000100010100010000","00000000000000000000000000000000000000000E00000000","11100010000100000000010000100100000100011000000000","11100110000100000000000100100000000100011010010000","10110010010001111111011111111110011110000111011101","10000110000100000000000100000000000100010100000000","10110011001101001010011000110110010010010001010001","10000100010101111010111101001110101101011010011001","10001101111100011011111100001110011111011101111001","00100010000000010010001100010100010100010111010000"}

    4

    28

    Returns: 0.05312238350311187

  19. {"00000000000000000000000000000000100000000100101000","10010001110001000000000000000100000001000000001000","01011110101111111111110111100110111011001101010111","00000000001000000000000000000000100000000100100000","11010001011000000000001000000100000100001111101010","01001000101000101000001010000100011101000100011000","11001000000010010100011110101110101101110110011010","10000000111001000100000000000000100000000011101000","00000000P00000000000000000000000000000000000000000","00010000100000000000000000000000100000000100100000","0000000000P000000000000000000000000000000000000000","11011101111011110010111111010000111111111110001110","10001100110001111010001100111010011101101101000010","10010000111000000000000000000000100100000110101000","01011001000000000000000000000100101000000110101000","11001001011000100000001000000100101100001101101000","11001001011001000000001000001110100000100101100000","00010000011000000000000000000000100100000111100000","11010000111001011100011010010110100101110110110000","11011111011110011110001111111110010010110011111111","11000101110000001000011111111100110011111111001110","10011001101001101100001010010000101101111101011000","01010001001001000100000000000000101001000111100010","00011100101000101100011000001100111101011111011010","11011000111000110100000000000010101100001111101000","10010110111011010100011100010110111001010110011010","01001101111001110000011110011110110101000111100010","11011000000000100000001000000100100100011111100010","11001001111000110100000000000100100101000011100010","10010001011000000100000000000000100100000010001000","11000001111001110100001000001100101001001101001000","01011101110111111010011110101010111000110110110110","00000000000000000000000000000000000000000100100000","11011000000001110110001000010100101101101010001010","00010001010000000100000000000100000001000001001000","10010000111000000000000000000000100000000100100000","11001111111010011110011110001110111100111101111010","00010001110000000100000000000100000100000110101000","11010001100001000100000010000110100101000110101000","00001000011001011100001010001100100101101110100010","01010001110001000100000000000100101101000100001000","00000000000000000000000000000000000000000E00000000","00010000010000000000000000000000100000000100100000","10000000110001000000000000000000000100000010001000","00000000000000000000000000000000000000000000E00000","11011000011000001100001010010000100000011111101010","00000000001000000000000000000000100000000110100000","11000110001000001010001100111010110111001010011010","01010001111001000100000000000100100101001111101000","10010011111101010000110110110111111101101010111100"}

    2

    40

    Returns: 0.771058596029959

  20. {"01101110000011101111001110101111110010000010101100","00100110111000110100100111011001111111011100011100","00001110110100010111000010111100000111111100011111","00100110110101001000001011100100111111011110011100","0000P000000000000000000000000000000000000000000000","00000010100000000001001101111100000100000010111100","000000E0000000000000000000000000000000000000000000","01110110111001101110101010110001010001001111100000","00001010000000000100000001000000000000010010001000","00001010000000000100001000101100000100010000011110","00001100110000010100000111100100001011011001000110","00001100001000010011000011110000001010111111111110","00111111100101101111101011111101111111111000000001","00101010110100000110000110011100000100010111110011","00011100111100010010001100111000110110010011110110","00001110110000000001000001101000001100100000111010","00001110110101010101001101100100010011011111110011","00001000000000000000000101101100001000100010011100","00001100011000010100000111111000001100111001100110","00000010010000000000001001101100001100110000010110","00010110110000101011001011011100110001100111011101","11001011111101101111001011011101010011010011111111","00000000100000000000000001001000001100100000111100","00001010000000000000000001000000000000000010101000","00000100100000000001001101101000001111101011101110","0000000000000000000000000P000000000000000000000000","00000000000000000000000000E00000000000000000000000","00000010100000000001001000100100000100100000101110","00001000000000000000000101100000001000100010111000","00000000000000000000000000000P00000000000000000000","01100111000110001111000111010001101111000110111011","00110110111001111101101000110100110101010001000110","00101110111001010111000010111100001111001011011001","00000100110001010010000101001100101000101101010001","00001010000000000000000101000000000000010010001100","00001010100000000100000100101000001000010000110100","00001100110000000000001000010100001001110010100110","00001100110000010100001001000100001000110000001010","00000000000000000000000000000000000000P00000000000","00000010000000000000000100100000000000000010111000","00000110010000010101001001111000001100110011110010","00000000101000000110000011010100001001111010011010","00000000000000000000000001000100000000100000111100","00001100100000000100001000101100000011100010011110","00000000000000000000000000000000000000000000E00000","00001010000000000000000001100000000000100000001100","00000000000000000000000001100100000000100000100000","00001010000000000000000000100000000000000000001000","00000000100000000000001100100100001100110010011100","00001000000100010110000001000000000001011010001110"}

    2

    34

    Returns: 0.0

  21. {"01100000001000000000001110111010100101101000110110","00111100011010100001000100110000000000111000010101","00P00000000000000000000000000000000000000000000000","00100100000010000001010000100010010000010000000010","00100000011000000000001100110000000011011100100111","00000P00000000000000000000000000000000000000000000","10010000000001111000011000111110011100000111000100","10011000001000110000001111100111110101000101010011","10001000011000110101010100000010000111001001000101","00010000001000000000000100100110010011000010000110","00000000000000100000010000010000000000011000000000","01101100001000110000110000001111101010111011001001","000000000000E0000000000000000000000000000000000000","00101101010100011100110001010000101111010100110011","00100100000000000000000000000000000000001000000010","00100000001000000000010000010100000000000001000011","11011100000010100001010100111110001100011101100011","00010101000010100001100101110001110001001000100111","10000010000110001000101000111101111111110010001011","00000100000010010000000000000010010000000000100101","11101101000000100001011101000010000110101100000100","000000000000000000000E0000000000000000000000000000","00010000000000010001010100010010000000010111010000","00100100000000110000000000000000010000000100010000","00000100010010010001000001000010100011011111100110","01101000010000000001011100000110000010110000100010","00000100000000100000000000000010010000000010000100","000000000000000000000000000E0000000000000000000000","01011100010010000000001000000010000101110111010100","00000100000010000000010000000000000000001001000000","00100100001010100000000000000000010000000001000011","11110000011010100000001111101000000100101101110110","00000000011010010001000101100000010000110011100110","00000000001000110000010000010000000000001000000011","01011000111010100001101001100010000011001011110001","01111100010010000001011110000010000000000111100001","00110000000010100000010000000110010000011000100110","00000100000000010000001000110110000000001100100000","00011000010010100001011000110110010000000001000000","00000000000010000000010000000000000000000000000000","00000000000000000000000000000000000000010000000010","00000000001010110000000000010100000000000000010010","00000100000000100000010000000010010000011000000001","00100000001010000000010000000000000000011000000000","00000000000010000000000000100110000000001011000101","00110000001010100001010000010100010010000010000100","01111001111000101101000110011100010111100011100000","00000000000010000000010000000010000000000010000010","00100000000010000000000000000000000000000000000000","00000000001000000000000000010100000000011001000000"}

    28

    31

    Returns: 4.090534058827745E-6

  22. {"01101010100000101001100001111010001000010000101010","0E000000000000000000000000000000000000000000000000","00010000010001100000000001100011110000010000000111","000P0000000000000000000000000000000000000000000000","01010100101000011001010100101000010000010010011011","00010001011111000001000001111011111000110100001011","000000P0000000000000000000000000000000000000000000","01100000001110010000000000100110010000010010100000","01010110010010000010000100001010001001100100011110","000000000P0000000000000000000000000000000000000000","0000000000E000000000000000000000000000000000000000","00000000000P00000000000000000000000000000000000000","000000000000E0000000000000000000000000000000000000","0000000000000P000000000000000000000000000000000000","00000000000000P00000000000000000000000000000000000","000000000000000E0000000000000000000000000000000000","01110011010011100010000101010111100000110110010111","01001100101010000011110000101101011001100110100010","00100000011101000000010100000101011000110010000110","00000011000010010010010001000101010000110010010010","01000100001111011000010000110101010000100000100101","01110011000101110000000101100011111001000010110001","00010001000010110111100100010100101110010110011001","00000000000000000000000E00000000000000000000000000","00000001110000110101000000001000111001110000011010","0000000000000000000000000E000000000000000000000000","00000010001000000000000100010100010000100100000111","000000000000000000000000000E0000000000000000000000","01100010001101000011000101100010010000110110101000","00000000000000000000000000000E00000000000000000000","000000000000000000000000000000P0000000000000000000","00000010000110010000000001100100000000110110000100","00000000000000000000000000000000E00000000000000000","000000000000000000000000000000000P0000000000000000","0000000000000000000000000000000000E000000000000000","01000101000110000100010000011000111011011010100011","10100011001100001010110000000111011001001100101011","0000000000000000000000000000000000000E000000000000","00000000000000000000000000000000000000E00000000000","000000000000000000000000000000000000000P0000000000","10010010001100011101110110101011000000010101100010","00000000000000000000000000000000000000000P00000000","01000000001010100000000101000100101000100100010001","10000011110001101011100010111000110001010110011101","00000000000000000000000000000000000000000000E00000","000000000000000000000000000000000000000000000E0000","01110011001100011000010000010110111000110000010110","00000000000000000000000000000000000000000000000E00","01010010000111110000000100000000111000100110000000","0000000000000000000000000000000000000000000000000E"}

    17

    11

    Returns: 0.014488458006945591

  23. {"P00000000000000000000000000000000000000000000000","000010100100010010000000111110100011000011000001","00E000000000000000000000000000000000000000000000","111000100010001101010011010110111110000010100000","0000E0000000000000000000000000000000000000000000","000000110101000000100100010111110011100100100010","000000E00000000000000000000000000000000000000000","100000000100010111000001011100100010000011110010","00000000E000000000000000000000000000000000000000","001010100001100101000000000100010000000010001010","0000000000E0000000000000000000000000000000000000","00000000000P000000000000000000000000000000000000","000000000000P00000000000000000000000000000000000","001000100101000111100100000011010000000111001000","100000001000100111000100110010101111111000011010","000000000000000P00000000000000000000000000000000","100010101010100001000100001000000000000011001010","00000000000000000P000000000000000000000000000000","000000000000000000E00000000000000000000000000000","0000000000000000000P0000000000000000000000000000","110010000100101111000000001000010000011100110100","000000000000000000000E00000000000000000000000000","011000000011110011010000000100000010000111001000","111000100111000000000110100101010111000010011011","000010001100100111010100000110110010000011001001","000000101110110110110100000011010010000011000000","00000000000000000000000000E000000000000000000000","000000000000000000000000000P00000000000000000000","0000000000000000000000000000P0000000000000000000","000000001111000110110100100000010011000110001011","000000000000000000000000000000E00000000000000000","0000000000000000000000000000000E0000000000000000","001011110100100001000000010111010010011101110001","110010001010000000000110001001000000001011101010","0000000000000000000000000000000000E0000000000000","00000000000000000000000000000000000E000000000000","111000110001010101110011011110010100000100010000","110010001011100110000011011101000101101111011000","111010001011100010100100111010010011000010100011","000000000000000000000000000000000000000E00000000","0000000000000000000000000000000000000000P0000000","00000000000000000000000000000000000000000P000000","100010000101000001110010100111000010000111001010","101010001010110000010110010000110100001100101000","00000000000000000000000000000000000000000000P000","010001111110011110100000110010111010101101001000","0000000000000000000000000000000000000000000000P0","00000000000000000000000000000000000000000000000E"}

    7

    4

    Returns: 0.05228976620986733

  24. {"P00000000000000000000000000000000000000000000000","0E0000000000000000000000000000000000000000000000","00E000000000000000000000000000000000000000000000","000E00000000000000000000000000000000000000000000","0000P0000000000000000000000000000000000000000000","00000E000000000000000000000000000000000000000000","000000E00000000000000000000000000000000000000000","100011001110111001101000010011111001100011001010","00000000E000000000000000000000000000000000000000","000000000E00000000000000000000000000000000000000","0000000000E0000000000000000000000000000000000000","00000000000P000000000000000000000000000000000000","000000000000E00000000000000000000000000000000000","0000000000000E0000000000000000000000000000000000","00000000000000E000000000000000000000000000000000","000000000000000E00000000000000000000000000000000","0000000000000000E0000000000000000000000000000000","00000000000000000P000000000000000000000000000000","000000000000000000E00000000000000000000000000000","0000000000000000000E0000000000000000000000000000","00000000000000000000P000000000000000000000000000","000000000000000000000P00000000000000000000000000","0000000000000000000000P0000000000000000000000000","00000000000000000000000P000000000000000000000000","000000000000000000000000P00000000000000000000000","0000000000000000000000000E0000000000000000000000","00000000000000000000000000E000000000000000000000","000000000000000000000000000E00000000000000000000","0000000000000000000000000000E0000000000000000000","00000000000000000000000000000P000000000000000000","000000000000000000000000000000E00000000000000000","0000000000000000000000000000000E0000000000000000","00000000000000000000000000000000E000000000000000","000000000000000000000000000000000E00000000000000","0000000000000000000000000000000000P0000000000000","00000000000000000000000000000000000E000000000000","000000000000000000000000000000000000P00000000000","0000000000000000000000000000000000000E0000000000","00000000000000000000000000000000000000P000000000","000000000000000000000000000000000000000P00000000","0000000000000000000000000000000000000000P0000000","00000000000000000000000000000000000000000P000000","000000000000000000000000000000000000000000P00000","0000000000000000000000000000000000000000000E0000","00000000000000000000000000000000000000000000E000","000000000000000000000000000000000000000000000E00","0000000000000000000000000000000000000000000000E0","00000000000000000000000000000000000000000000000E"}

    7

    1

    Returns: 1.0

  25. {"P00000000000000000000000000000000000000000000000","0E0000000000000000000000000000000000000000000000","00P000000000000000000000000000000000000000000000","000E00000000000000000000000000000000000000000000","0000P0000000000000000000000000000000000000000000","00000E000000000000000000000000000000000000000000","000000E00000000000000000000000000000000000000000","111101001000100100011111110100010111000111010011","00000000P000000000000000000000000000000000000000","000000000P00000000000000000000000000000000000000","0000000000E0000000000000000000000000000000000000","00000000000E000000000000000000000000000000000000","000000000000P00000000000000000000000000000000000","0000000000000P0000000000000000000000000000000000","00000000000000P000000000000000000000000000000000","000000000000000P00000000000000000000000000000000","0000000000000000E0000000000000000000000000000000","00000000000000000E000000000000000000000000000000","001000110010101000001001110101001010100000110010","0000000000000000000E0000000000000000000000000000","00000000000000000000P000000000000000000000000000","000000000000000000000P00000000000000000000000000","0000000000000000000000P0000000000000000000000000","00000000000000000000000E000000000000000000000000","000000001101101101010110001110010111100111001000","0000000000000000000000000E0000000000000000000000","00000000000000000000000000E000000000000000000000","000000000000000000000000000P00000000000000000000","0000000000000000000000000000E0000000000000000000","00000000000000000000000000000E000000000000000000","000000000000000000000000000000E00000000000000000","0000000000000000000000000000000E0000000000000000","00000000000000000000000000000000E000000000000000","000000000000000000000000000000000P00000000000000","0000000000000000000000000000000000P0000000000000","00000000000000000000000000000000000E000000000000","000000000000000000000000000000000000E00000000000","0000000000000000000000000000000000000E0000000000","00000000000000000000000000000000000000E000000000","000000000000000000000000000000000000000P00000000","0000000000000000000000000000000000000000E0000000","00000000000000000000000000000000000000000P000000","000000000000000000000000000000000000000000E00000","0000000000000000000000000000000000000000000E0000","00000000000000000000000000000000000000000000E000","000000000000000000000000000000000000000000000P00","0000000000000000000000000000000000000000000000E0","00000000000000000000000000000000000000000000000E"}

    7

    2

    Returns: 0.25568181818181823

  26. {"P000000000000000000000000000000000000000000000000","0E00000000000000000000000000000000000000000000000","00P0000000000000000000000000000000000000000000000","000P000000000000000000000000000000000000000000000","0000E00000000000000000000000000000000000000000000","00000E0000000000000000000000000000000000000000000","000000P000000000000000000000000000000000000000000","0000000P00000000000000000000000000000000000000000","00000000P0000000000000000000000000000000000000000","000000000E000000000000000000000000000000000000000","0000000000P00000000000000000000000000000000000000","00000000000P0000000000000000000000000000000000000","000000000000P000000000000000000000000000000000000","0000000000000E00000000000000000000000000000000000","00000000000000E0000000000000000000000000000000000","000000000000000P000000000000000000000000000000000","0000000000000000P00000000000000000000000000000000","00000000000000000P0000000000000000000000000000000","000000000000000000P000000000000000000000000000000","0000000000000000000E00000000000000000000000000000","00000000000000000000P0000000000000000000000000000","000000000000000000000E000000000000000000000000000","0000000000000000000000E00000000000000000000000000","00000000000000000000000E0000000000000000000000000","1111101010100000111000010101000010001001110000100","0000000000000000000000000E00000000000000000000000","00000000000000000000000000P0000000000000000000000","000000000000000000000000000E000000000000000000000","0000000000000000000000000000E00000000000000000000","00000000000000000000000000000P0000000000000000000","000000000000000000000000000000P000000000000000000","1011011110110100011011000011000010100110011010100","00000000000000000000000000000000E0000000000000000","000000000000000000000000000000000E000000000000000","0000000000000000000000000000000000P00000000000000","00000000000000000000000000000000000E0000000000000","000000000000000000000000000000000000E000000000000","0000000000000000000000000000000000000E00000000000","00000000000000000000000000000000000000P0000000000","000000000000000000000000000000000000000P000000000","0000000000000000000000000000000000000000P00000000","00000000000000000000000000000000000000000P0000000","000000000000000000000000000000000000000000E000000","0000000000000000000000000000000000000000000P00000","00000000000000000000000000000000000000000000E0000","0000100011010101101011001011100110010100100000000","0000000000000000000000000000000000000000000000E00","00000000000000000000000000000000000000000000000P0","000000000000000000000000000000000000000000000000P"}

    45

    2

    Returns: 1.0

  27. {"E0000000000000000000000000000000000000000000000000","0E000000000000000000000000000000000000000000000000","00E00000000000000000000000000000000000000000000000","000P0000000000000000000000000000000000000000000000","0000P000000000000000000000000000000000000000000000","00000P00000000000000000000000000000000000000000000","000000P0000000000000000000000000000000000000000000","10011010110000100101101001010000111000111011010101","00000000E00000000000000000000000000000000000000000","000000000E0000000000000000000000000000000000000000","0000000000P000000000000000000000000000000000000000","00000000000P00000000000000000000000000000000000000","000000000000P0000000000000000000000000000000000000","0000000000000E000000000000000000000000000000000000","00000000000000E00000000000000000000000000000000000","000000000000000E0000000000000000000000000000000000","0000000000000000P000000000000000000000000000000000","00000000000000000P00000000000000000000000000000000","000000000000000000E0000000000000000000000000000000","0000000000000000000P000000000000000000000000000000","00000000000000000000E00000000000000000000000000000","000000000000000000000P0000000000000000000000000000","0000000000000000000000E000000000000000000000000000","00000000000000000000000E00000000000000000000000000","000000000000000000000000P0000000000000000000000000","0000000000000000000000000E000000000000000000000000","00000000000000000000000000P00000000000000000000000","000000000000000000000000000E0000000000000000000000","0000000000000000000000000000E000000000000000000000","00000000000000000000000000000E00000000000000000000","00101011010100011000110010011000010101001110101010","0000000000000000000000000000000P000000000000000000","00000000000000000000000000000000P00000000000000000","000000000000000000000000000000000P0000000000000000","0000000000000000000000000000000000P000000000000000","00000000000000000000000000000000000P00000000000000","000000000000000000000000000000000000P0000000000000","0000000000000000000000000000000000000P000000000000","11001000010110010000100001001000101010001101100001","000000000000000000000000000000000000000P0000000000","0000000000000000000000000000000000000000P000000000","00000000000000000000000000000000000000000E00000000","000000000000000000000000000000000000000000P0000000","0000000000000000000000000000000000000000000P000000","00000000000000000000000000000000000000000000E00000","000000000000000000000000000000000000000000000P0000","0000000000000000000000000000000000000000000000E000","00000000000000000000000000000000000000000000000E00","000000000000000000000000000000000000000000000000E0","00111000010110000001111001011100110010011011010100"}

    49

    1

    Returns: 0.22739018087855295

  28. {"01001010000100100111100011011111100111110111110000","00101000010100100000000111010010000100000010011100","00000110010000000001001101000010000110010011000000","00100000000000000100001000001100000111010010011100","00000000000000100000000100010010000100010110011100","00000E00000000000000000000000000000000000000000000","000000P0000000000000000000000000000000000000000000","01001000000100100101100100001001000001000100101000","11110100011001111100000111110010100010011110000001","000000000E0000000000000000000000000000000000000000","10001001000111101100100111000010110010010010010011","00000000000E00000000000000000000000000000000000000","01000101010001000001001100000111100000010010101111","11000001000100101110000001000010100110110101000110","00000000000000E00000000000000000000000000000000000","00000101001001000001101000101001000100110000100011","01001011000000100000101100011010000101100010110110","01001010000100000001000010000011000010000000000100","00110100010100101000001010000100010000110111010100","00001000000100100000000111000010000110010000011100","01101000000100100001001110000000000011110010100010","00110010001000110000001110000101001111011011001000","0000000000000000000000P000000000000000000000000000","00000100010000000000000011000000000100010110010000","00000100010100100000000000010000000010000000000000","0000000000000000000000000P000000000000000000000000","10010010001100001101000000011011000011110010110001","000000000000000000000000000P0000000000000000000000","01101010010100100101001010000000000000110110101100","01000001000100001000000010001011000111000000010010","00000100010100100000000110010000000110010110010000","01001010010000100001001110010000000111000000010000","00000010000000100011000010001001010000010000010000","01011011010100101001101001010001000001010010101010","10100010100000000000101000110010100110010011100011","00000000000000000000000000000000000P00000000000000","000000000000000000000000000000000000P0000000000000","0000000000000000000000000000000000000P000000000000","00000100010000000100001011000001000001010111001000","000000000000000000000000000000000000000E0000000000","10010100011010111101001010100101100100000010000011","00000000000000000000000000000000000000000P00000000","000000000000000000000000000000000000000000E0000000","0000000000000000000000000000000000000000000P000000","01101100000000000001001010000000000110110101011000","00000000000100000000000010000000000000010000000000","0000000000000000000000000000000000000000000000E000","00000110000100100000001011010010000000010010011000","01100110000000100100001000001000000101100100011100","00011010000101001111101101011010100011100010010000"}

    21

    1

    Returns: 0.022500176839354527

  29. {"E00000000000000000000000000000000","100110010000000110010000100001000","010100001000001000000100010000001","000P00000000000000000000000000000","0000P0000000000000000000000000000","100000010000000000010100000000000","000000000010110000001000010000000","0000000E0000000000000000000000000","110001000000010001010100000000000","001100001011011000000100000000000","0000000000P0000000000000000000000","00000000000P000000000000000000000","000000010010000101011010010000000","000000000000100000100000010000000","000010110001100101000010010011000","000000000000000E00000000000000000","000000010010000000100000100000000","00000000000000000E000000000000000","000000000000000000E00000000000000","0000000000000000000E0000000000000","00000000000000000000E000000000000","000000100010100000000010011000000","0000000000000000000000P0000000000","001011111101001101010010000010000","000111000001100000001000010000000","000000000000000001110010000000000","000100100001000000000010000000000","011100010000010010000100001010000","010010011001000000000100011001000","000100100000000011000000000000000","101001011011000100000000010000000","101010011000000110110100000011001","000001001000101110101110000000000"}

    12

    1

    Returns: 0.10043679806283741

  30. {"P00000000000000000000000000000000","0P0000000000000000000000000000000","00P000000000000000000000000000000","010000000100010000101001000000000","101000000000010001001000000010010","00000E000000000000000000000000000","000001000000000001001000000000000","0000000P0000000000000000000000000","000100100100000001100000010000000","000000010000100001100000010000111","100000100001011011100010000001000","001110010000100000100001100000001","000011010000000000000000000000010","0000000000000E0000000000000000000","101010000100010001001010000001000","101101000011100000011000000101011","0000000000000000P0000000000000000","00000000000000000E000000000000000","001000100000000000000000000000001","001001111001001001000010010001000","00000000000000000000P000000000000","000000001010101000110001000010000","000010110100110010101000000110001","100001000100000000100000010000101","111100100000010000000000010011100","0000000000000000000000000P0000000","011100011100000101100001100001101","110101001001110001000000000001010","0000000000000000000000000000E0000","00000000000000000000000000000E000","000000000000000000000000000000E00","001000100000010000001000010000000","00000000000000000000000000000000E"}

    10

    5

    Returns: 0.0835583975878622

  31. {"E0000000000000000000000000000000000000000","00000001000000000000000100000000000001001","00000000000000000000000000000000001000001","00101000000000100000000000000000000000000","0000P000000000000000000000000000000000000","00000000000000000000000000000100000100000","00000001000000000000001001001000000000001","00000000000000000000000001000001000000000","00000000000000000001000000000000000100000","000000000P0000000000000000000000000000000","00010000000010001000000000000000000000000","00000000000000000000000000100000010000000","000000000000E0000000000000000000000000000","0000000000000P000000000000000000000000000","00000000000000P00000000000000000000000000","00000000000010000000000000000000100000000","00000000000000000000000000000000010000000","00001000000100000000000000000000100000000","000000000000000000E0000000000000000000000","10000000000000000000000000000000000000000","00000000000000000000000000010001000000000","00000000000000100001000000000000000000000","0000000000000000000000P000000000000000000","00000000000000000000000P00000000000000000","000000000000000000000000P0000000000000000","0000000000000000000000000P000000000000000","00000000000000000000000000P00000000000000","00010000000000100000000000000000000000000","00000000000000000000001000000000000000000","00000000000000000000000000000P00000000000","000000000000000000000000000000P0000000000","0000000000000000000000000000000E000000000","00000000000000000000000000000000P00000000","00000000000000000000000000000100000100000","00000001000010000000000000000001000001000","00000000000000000000000000001000001000000","000000000000000000000000000000000000P0000","00000000000000000000000000000010000000000","00000000000000000000000000000000000000P00","10000000000001000010000000000000000000100","0000000000000000000000000000000000000000E"}

    10

    4

    Returns: 0.06722689075630252

  32. {"P000000000000000000000000000000000000000000000000","0011000000001000000000110000000000000000000000000","00P0000000000000000000000000000000000000000000000","0000000010000000100000000000010000000000000000001","0010000000000001000000000000000000000100000000001","0000000000000000100000100010000000000000000000000","0000000000000000000000000100000000000000001000000","0000000E00000000000000000000000000000000000000000","0000010000000000000000000000000000000000000000010","0000000000000100000000000000000000000000000000100","0000000000P00000000000000000000000000000000000000","0000001001000000001000100000000000000000000001000","0000000110000000000000000000000001001110001000000","0000100000000000000000100000000000000000000000001","0010000000000000000000000000000000000000000000000","000000000000000P000000000000000000000000000000000","0000000000000000E00000000000000000000000000000000","0010000000000000000000000000000010000000000001000","0000100000000100000000000000000010000010000000000","0000000000000000000P00000000000000000000000000000","0000000110100000001000000000000000000110000000000","0000010000000000000000000000000110000100000000000","0000000100000001000000000000000100000000000000000","0000000000100000000000000001100001100010000000000","0010000000000000000000000000000000000000000000000","0000000000000010000000001001000000010000000000000","0000000000000010000000000001000000000000000100000","000000000000000000000000000P000000000000000000000","0010010000000000000100000000000000000000000000000","0000000000001100000000000000000100010000000000000","0000000000000000000000000000000000000010100000100","0010000000000000000000000100000000000000001000000","1000000000000000000000100000000000000000000000000","0000010000000000100000000000000000000000000001100","0000000000000000000000001000001000001000000010000","00000000000000000000000000000000000E0000000000000","0000000000000000000011000010000010000000000000000","0000000000000000000000000000000000000P00000000000","0000000000000000000100000000000000000000000000000","000000000000000000000000000000000000000E000000000","1000000010000000000001001000100000000000000000000","00000000000000000000000000000000000000000E0000000","0010000000000000000000000000000000000000010000000","0000000000000000000000000000000000000000000E00000","0000000000000000000000100000000000000000000000000","0000000000000100000000000000000000000000000000000","0000000000000000011000000000000100000000000000000","1010011100000010000100000000000000000000001000000","0000000000000000000000000000000000000000100000000"}

    46

    3

    Returns: 0.049574095567839795

  33. {"010000000000010010011000000001000011000000010","0P0000000000000000000000000000000000000000000","00P000000000000000000000000000000000000000000","011010010000000011001001000100010010100011000","001000000000000100000000000000001010000010000","100000100100011011101000001000011101001111101","001010000000100000011001000000000000100010010","001000101000110101111001000011000110000001000","010000000000000000000000000000000011000000000","110000000001100110110001000010001000000000000","101000000001101000101100000010011011000101111","000000100000000010010000110011001000100110010","000000000000E00000000000000000000000000000000","000010000000000010010001010000000010010100000","110100000000000000110000100000000000100100001","000000000000000P00000000000000000000000000000","001000100000000100010000000001000111010000000","000000000000100100000000000000000000010000010","111000000000100101010000010001000000000110010","000010001000000100001000000000001001000110000","001000000000100100000000000001001000010000000","000100000000000111101000011010010100100001011","010100100010001111010100110000100010010010001","001000000000000000011000000000001111000010000","001010000000010101100000000000001000100000010","001000101000000100001000000001001100100000010","000110110100011001001000010000001000010011010","010000000000110010110001100000011000100100010","100000001000000101001000000000001011110010000","010010000000100100000000000000000100000000010","000000010110000000001101000111011100000111010","110000000101010110000000100011000010100100000","00000000000000000000000000000000E000000000000","000000000000000001000000000000000000000010000","0000000000000000000000000000000000P0000000000","00000000000000000000000000000000000P000000000","010010000000000000011001000001001110000100000","011000001000000000000000000000000010000100010","010100011011101010000010010010101000000010101","001000001000100100000000000000000000000000000","011000001000000100000000000000000001010100000","000000101000110000100000000010000111010010011","100100001000100011001000001000000011010011000","010000001000000100000000000000000000000100000","011010000100010101100001100000010000100110000"}

    22

    26

    Returns: 0.11472096151600492

  34. {"01011001010000100100000100000000100101000000010010","0E000000000000000000000000000000000000000000000000","11011101010000100100000100010000100101000000010110","01000000000000000000000100000000000000000000000000","01010000000000000100000100000000000100000000000000","11011001010000100100000100010000100101000000010110","11111101011001100111111101111011111111101100011110","01011000000000100100000100000000100101000000000010","11111111011101110111111101111111111111111100111110","01011001000000100100000100000000100101000000010010","11111101010000100100001100010000110101000000010110","11111111011001100111111101111011111111111100011110","11111101111100111111111111111111111111111111111111","11111101011000100111111101110011110101101000010110","01011000000000000100000100000000100101000000000010","11111111011101100111111101111111101111111100111110","11111111111101110111111101111111111111111100111110","01010000000000000000000100000000000000000000000000","11111101011000100101111101110011110101101000010110","11111101011000100100111101110011110101100000010110","11111101011000100100011101010011110101000000010110","11111101010000100100001100010001110101000000010110","11111101010000100000000100010000100101000000010110","00000000000000000000000E00000000000000000000000000","01111111111101111111111101111111111111111100111110","11111101011000100100011100010011110101000000010110","11111101011000100100111101000011110101000000010110","11011001010000100100000100000000100101000000010010","11111101011001100111111101100011111111101100011110","11111111011101100111111101111011111011111100011110","11111101011000100100011100010001110101000000010110","11111101011000100100001100010000110101000000010110","01011000000000000100000100000000000000000000000000","10111101010000100100001100000000100101000000010110","11111101011001100111111101110011110101101000000110","01010000000000000100000100000000000000000000000000","11111101011001100111101101100011111101101100011110","01001000000000000100000100000000100100000000000010","11111101011000100100111101110011110101000000010110","11111111011001100111111101101011111111100000011110","11111101011000100101111101010011110101100000010110","11111101011001100111111101110011111101101000011110","11111011111101111111111111111111111111111101111110","11111111111001111111111111111111111111101100111110","11111111011101100111111101111111111111111100011110","01011001000000100100000100000000100101000000000010","11111101011001000111111101110011111101101000010110","11011001010000100100000100010000100101000000010010","01011000000000000100000100000000100100000000000000","11111111111101111110111111111111111111111111111110"}

    12

    47

    Returns: 0.959931798806479

  35. {"01111111101111111110111111111101111111101110111111","00000000000011000000000100000000000000000000000000","01011000110111011010011101110100111101101110011111","01000000000011000000010100000100000000001000000000","01010000000011000000010100110100000100001000011110","01111011110111111110011111110100111111101110111111","01111001110111111110011101110100111111101110111111","01011000010011011000011100110100101101101110011111","01011001010111011000011100110100001101101110011111","01011000000011010000011100110100100100001010011111","01111111110111111110011111111100111111101110111111","01011000010011010000011100110100101101101110011111","000000000000E0000000000000000000000000000000000000","00000000000010000000000100000000000000000000000000","01111001110111011010011101110100011101101110011111","01011000000011000000010100110100000100001000011110","01011000010111010000011100110100101101101110011111","01111001110111111010011101110100111111101110111111","01011001110111011000011100110100111101101110011111","11111111111111111110111111111011111111111111111111","01111111111111111110011111111100111111101110111011","01000000000011000000000000000000000000000000000000","01011000000011010000010100110100100100001010011110","00000000000000000000000E00000000000000000000000000","01111011110111111110011101110100111111101110111111","01011001110111011010011100110100111101101110011110","01010000000011000000010100000100000000001000000000","01010000000011000000010100100100000100001000000000","01111111110111111110011111110100111111101110111111","01000000000011000000010100000000000000001000000000","11111111111111111110111111111101111111111111111111","01111111111111111110111111111100111101101110111111","01011000000011010000010100110100000100001000011100","01011001110111011000011100110100101101101110011111","01011000010011010000011100110100100100001110011111","00010000000001000000010100100100000000001000000000","01111001110111111010011101110100111101101110111111","01001000010011010000011100110100101100101110011111","01001000010011010000011100110100101100001110011111","11111111111111111110111111111101111111101110111111","01000000000011000000010100000000000000000000000000","01011000010011010000011100110100100100001010011111","01011000000011010000010100110100100100001000011111","11111111111111111110111011011101011111111110111111","01111001110011111010011101110100111101101110011111","01010000000011000000010100110100000100001000000000","01010000000011000000000100110100000100001000010010","01010000000011000000010100110100000100001000011010","01010000000011000000010100110100000100001000010000","01011000000011010000010100100100100100001000011110"}

    19

    48

    Returns: 1.0

  36. {"01101110101000101110010000001011010011011110111110","00001010101000101000010000000000010000010010101000","01001010101000101000010000000000010000010010101000","11101110101000101110010000011011010011011110101110","00000000001000100000010000000000010000000000001000","01101010101000101010010000000011010000010010101000","00001000101000100000010000000000010000010010001000","11111110101001111111010101011011011011111110111101","00000000001000100000000000000000000000000000001000","11111111101111111111111111111111111111111111111111","00000000000000100000000000000000000000000000000000","11111111100001111111010101101111111011111110110101","11111111101101111111010101111111111011111110111111","11111110101000111110010000011011111011111100111110","00000000000000E00000000000000000000000000000000000","11111110101000001110010000011011011011011110111010","00001010101000000000010000000000010000010010101000","01101110101000101010010000001011010001010010101110","01101010101000101000010000000000010000010010101000","11111110101001111110010000011011111011111110111111","11111111101111111111011111111111111111111111111111","00000000101000100000000000000000010000000000001000","11111111101111111111010111111111111111111111111111","11111110101001111111010001011011111011111110111111","11111111001111111111010101111111111011111110111111","11111110101001111111010000011011111011111110101111","11111111101001100111010101011111111011111110111111","11101110101000101110010000001011010011011110111110","01101110101000101010010000000011010000010010001000","11111111101001111111010101011011111011111110111111","01101010101000101010010000000000010000010010101000","00101010101000101010010000000010010000010010101000","11111110101000111110010000011011011011011110111110","00000000101000100000000000000000000000000000001000","11111110101000101110010000011011010011011110101110","11111111101111111111010111111111111011111111011111","01101100101000101110010000001011010001011110111110","01101110101000101010010000001011010000010010101110","11111110101000110110010000011011111011011110111110","00001000101000100000010000000000010000000000001000","01101110101000101110010000001011010001010110101110","01100110101000101110010000001011010001010010101110","00001000101000100000010000000000010000010000001000","11111111101111111111010111111111111011111110111111","00001010101000100000010000000000010000010010001000","01101110101000101110010000001011010001011110101110","00000000001000100000000000000000000000000000000000","01101110101000101010010000001011010000010010101000","01101110101000101010010000001011010000010010101100","11111110101001111110010000011011111011011110111110"}

    9

    48

    Returns: 0.9580479452054794

  37. {"00111111111111101111111001110111111111101110111111","10111111111111111111111011110111111111111110111111","00011111111111101111111011110111111111101110111111","00000100010110001100000000100001010000001000000000","00010110110110001110111000100000111000001100010110","00000000010110001100000000100000010000001000000000","00010100010110101110101000100001011000001000000000","00011110111110101110111001100001110111101100111111","00010110010110101110111000100001111000001000010110","00000000000100000000000000000000000000000000000000","00011110110110101110111001100001111111101100111111","00000000000E00000000000000000000000000000000000000","00000000010100000000000000000000000000000000000000","00011111111110101111111011110111111111101110111111","00010100010110001110001000100001011000001000000000","10111111111111101111111011110111111111111110111111","00000000010110000000000000000000000000000000000000","00000000010110001000000000000000000000000000000000","00010100010110001100001000100001011000001000000000","00011111111110101110111001000011111111101110111111","00010100010110101110001000100001011000001000000000","00010110010110101010101000100001111000001000000010","00010100010110001100000000100001010000001000000000","11111111111111111111111011110111111111111110111111","00011111111010101111111001110111111110101110111111","00011110110110101110111000100001111000001100010111","00000000010110001100000000000000000000000000000000","00011111111110101111111001000011111111101110111111","11111111111111111111111111110111111111111111111111","00010111111110101111111001110011111111101110111111","00011111111110101110111001100001111111101100111111","00000100010110001100000000100000010000001000000000","00010110010110101110101000100001011000001000000010","00000000010110001100000000100000000000001000000000","00010100010110001100001000100001010000001000000000","00001110100110101110111001100001111011101100110111","00011110110110101110111001100001111000101100110111","00011110110010101110111001100001111010101100110111","00011110110110101110111001100001111000001100110111","10111111111111101111101011110111111111101110111111","00000000010110001100000000100000000000000000000000","00010110010110101110111000100001111000001000000010","00011111111010101110111001100011111111101100111111","11111111111111111111111111110111111111111010111110","00011110110110101110111001100001111000001100010101","00010110010110101110111000100001111000001100000110","00011010110110001110111001100001111111101100110111","00010110010110101110111000100001111000001100000010","00010110010110101110101000100001011000001000000000","00011110110110101110111000100001111000001100010110"}

    28

    49

    Returns: 1.0

  38. {"00111111111111101111111001110111111111101110111111","10111111111111111111111011110111111111111110111111","00011111111111101111111011110111111111101110111111","00000100010110001100000000100001010000001000000000","00010110110110001110111000100000111000001100010110","00000000010110001100000000100000010000001000000000","00010100010110101110101000100001011000001000000000","00011110111110101110111001100001110111101100111111","00010110010110101110111000100001111000001000010110","00000000000100000000000000000000000000000000000000","00011110110110101110111001100001111111101100111111","00000000000E00000000000000000000000000000000000000","00000000010100000000000000000000000000000000000000","00011111111110101111111011110111111111101110111111","00010100010110001110001000100001011000001000000000","10111111111111101111111011110111111111111110111111","00000000010110000000000000000000000000000000000000","00000000010110001000000000000000000000000000000000","00010100010110001100001000100001011000001000000000","00011111111110101110111001000011111111101110111111","00010100010110101110001000100001011000001000000000","00010110010110101010101000100001111000001000000010","00010100010110001100000000100001010000001000000000","11111111111111111111111011110111111111111110111111","00011111111010101111111001110111111110101110111111","00011110110110101110111000100001111000001100010111","00000000010110001100000000000000000000000000000000","00011111111110101111111001000011111111101110111111","11111111111111111111111111110111111111111111111111","00010111111110101111111001110011111111101110111111","00011111111110101110111001100001111111101100111111","00000100010110001100000000100000010000001000000000","00010110010110101110101000100001011000001000000010","00000000010110001100000000100000000000001000000000","00010100010110001100001000100001010000001000000000","00001110100110101110111001100001111011101100110111","00011110110110101110111001100001111000101100110111","00011110110010101110111001100001111010101100110111","00011110110110101110111001100001111000001100110111","10111111111111101111101011110111111111101110111111","00000000010110001100000000100000000000000000000000","00010110010110101110111000100001111000001000000010","00011111111010101110111001100011111111101100111111","11111111111111111111111111110111111111111010111110","00011110110110101110111001100001111000001100010101","00010110010110101110111000100001111000001100000110","00011010110110001110111001100001111111101100110111","00010110010110101110111000100001111000001100000010","00010110010110101110101000100001011000001000000000","00011110110110101110111000100001111000001100010110"}

    27

    49

    Returns: 0.0

  39. {"00000101111011110011011101100100111100110001110110","10100101111011110011011111110110011100110001110110","10000101111011110011011111100110111100110001110110","11100101111011110011011111111110111100110001110111","11110111111110011011111111111110111100111001110111","00000000111011110011011101100100111100110001110100","11110100111111111011011111111110111100110001110111","00000100111011110011011101100100111100110001110100","00000000E00000000000000000000000000000000000000000","000000000E0000000000000000000000000000000000000000","00000000110000010011011100000100111000000001010100","11110101111011110011011111111110111100110001110111","00000000011001110011011100000100111000100001110000","00000000111000010011011000000100111000000001010100","00000000111001010011011100000100111000000001010100","000000000000000E0000000000000000000000000000000000","10110101111111110011011111111110110100110000110111","11111111111111111011111110111110111100111101110111","000000000000000000E0000000000000000000000000000000","0000000000000000000E000000000000000000000000000000","11110111111111111011011111111110111100110001110111","000000000000000000000P0000000000000000000000000000","0000000000000000000000P000000000000000000000000000","00000000000000000000000E00000000000000000000000000","10000101110011110011011101100110111100110000110110","00000000111011110011001100100100111100110001110100","00000000111011110011011100000100111100110001110100","10100101111011110011011111100110111100110001110110","11100101101011110011011111110110111100110001110111","00000000000000000000000000000P00000000000000000000","10000101111011110011011101100100111100110001110110","11111111111111111111111111111110111111111101111111","00000000100000010011011100000100011000000001000100","000000000000000000000000000000000P0000000000000000","0000000000000000000000000000000000E000000000000000","00000000111010110011011100000100111000100001110100","11111111111111111111111111111110111100111101110111","11110111111111111111111111111110111110111101110111","00000000111001110011011100000100111000000001110100","00000000111011110011011100000100111100100001110100","11110111111111111011111111111110111100110001110111","11111111111111111001111111111110111100111001110111","11111111111111111110111111111111111111111101111111","00000000110000010011011100000100011000000000000100","00000000111001110011011100000100111000000001010100","00000000110000010011011100000100111000000001000100","11111111111111111111111111111110111111110101110111","00000000000000000000000000000000000000000000000P00","00000101111011110011011101100100111100110001110100","11100101111010110011011111110110111100110001110110"}

    4

    28

    Returns: 1.225210388348973E-4

  40. {"01000000000010000100011000010000000000110000000000","00000100000000001000000101010000000001000100000100","10010001010001110101001011000101011101001000101101","00001010010010001001110101100100010101000000000110","00000110000000001000000000000000000000000100001100","00000001011010000001000000100100000000000001000000","00000100000000000001010010010000010001000101000100","0000000E000000000000000000000000000000000000000000","10110000010000000000000010100000110011110100000011","00000001001000000000000011100100100000000000000100","0000000000P000000000000000000000000000000000000000","11101000100000011111001001001110000001110000000000","00000000011000000000000000110000100000000101000000","00001111000010011001101100100000001100110100000100","00001000001000000100010000010001000101011000100011","00010011001000000100000001010000000100100000000010","00000000010000000000000000000100000000000000000000","00000110010000000000000000000000100001000101001110","00001001001000001000011100000111100000000101001110","0000000000000000000P000000000000000000000000000000","11000000000000001010010010010000010000000100000010","00000100000000001000000110000000000001000100000000","00001010001000000001010001000000010001000100001000","00000000000000000000000E00000000000000000000000000","000000000000000000000000P0000000000000000000000000","0000000000000000000000000E000000000000000000000000","00000001001000000000000000000100000000000000001100","000000000000000000000000000P0000000000000000000000","00010000001010011000110001010000101000011000000000","00000000000000000000000000000P00000000000000000000","01000000001000000000010001010101010001010000000000","10000000010000001000010110010000000000000000000000","00000000000000000000000000000000P00000000000000000","01000000010000001001010110010000100000000101000100","00000001001000000010011000000000010001001000000010","10001010001000000001000100000001100000100100000111","01111011011010100010000010001000100100000001001001","00000000000000001000000001010100000000000000000000","00000000000010001001011000100000100000010000000100","01000000000000001100001000100000010000000001000000","11010100000010010010110010010000100001000000001000","00000001011000001000000101010000000001000000000000","11001111110001000000101110000000001000100001110000","0000000000000000000000000000000000000000000E000000","00001001011010010010000000101000100000000100001000","00100010100100001001000100100111001000010000100000","0000000000000000000000000000000000000000000000E000","00000000000000000000000000000000000000000000000E00","00000010001000000001001010110000000000000100000100","11000000000010000010100001110010000000010001001000"}

    2

    31

    Returns: 9.495770229250893E-4

  41. {"00000101110100100010001100000000010000001001100001","00000000001110000000000010000000010100010101100000","00E00000000000000000000000000000000000000000000000","10000000010100000100000100001000010111000100001000","10010000000000000011000001000001101101000100010000","00000E00000000000000000000000000000000000000000000","11000100000000100010001000000010010000000001000000","0000000P000000000000000000000000000000000000000000","00000001000101101001000000010000010001000011000000","00000000000010000000100000000000000100000001000000","00000101000000000000001000000000000100010000000000","00100100011000000000000000000000000100000000000000","000000000000E0000000000000000000000000000000000000","01000100000100101010001000000000000000001110100000","00100000001000001000101000000001000000010000000010","01100001111001001000001110101100000000001001100110","0000000000000000E000000000000000000000000000000000","00000010011100101000101001010000000001000010100010","01000001001100000001000000000001000100010001100011","00000001000000001000001000000011000000000011000011","00000000000000000000E00000000000000000000000000000","00000110010010001001000010110000000000101101100000","00000000010000001000000110000000000100010000000000","00000000000000000000000P00000000000000000000000000","00000101010010000000100100000000000100000000000000","01000010001111101000000000000000010000001001000010","10000001011110000111000011011000001100100111000000","01000100000000000011100100000001010001001010100010","00000100000110000000000010000001011001101100100001","00001100001100000101000101010000110000100000101101","00000101000100001000000100000000000000001010000011","00000001011100000000100000000000000100000000000010","00010110010001000010011011100000001111000000100110","00100001001010000000000000000000000000000000000011","01000110000010000010001000010000000100101000100000","00000000000000000000000000000000000P00000000000000","10100011000110000011011000100000010000100011010000","00100000000101100010000000000011000100010001000000","00000001100000001100000100000010000001011101000011","000000000000000000000000000000000000000E0000000000","00000000000000000000100000000000010000010000000001","00100000000110001000001100000000000000000010000011","00000000000010101000000100000000010000011000000001","0000000000000000000000000000000000000000000E000000","00000000000000100001100000000001010100000110000010","11100001100000100110000111001010011000010000000000","10000011110011001000001000100010011011010000010001","10100000000000000001111010000000000001101111000000","00000000000100001000000110000000000000000000000000","00000001010100101000001010000000000000000000000010"}

    3

    25

    Returns: 0.05826299991940961

  42. {"00000000000101000000000000010000100000001001000100","00110000000000000000100010000000010001000100000000","00000000001100000000000101000100000000000000000111","00000010001000000000000000000000000001000000000010","00100000000000000000100000000000010011000000000001","00000000000000000000100000000000001000001110000000","000000P0000000000000000000000000000000000000000000","00000000000001000000010111000000101000000000000000","01000000000100100000001000000000000000000110110111","11000000001000101001000001100000010010000000000110","0000000000P000000000000000000000000000000000000000","00000000000000000000000000000100100000000000010010","01101000000001001000100000000000000100000000000000","00000000000000000000100000000000000000000001000000","00000000000000000001110000000000100000000001000001","10000000000010001000000000100010010000100110001010","00000000001000100001001000000100000100000110000001","00010001000000000001000000001010000001100001000000","00100010100001000100100000000100010000011000001100","0000000000000000000P000000000000000000000000000000","00100000000000000000000000000000000010000000010111","10100000000000000000000000010000100011000000000000","01000000000000000000010010000000000101100000000000","00000000000000000000000000100000000000000000000001","00111000000000000000000101100000001000000000000000","00000010000100000001000000000000100000000000000100","00000000000000000001000001000000100000001001010000","00000000000000000000100000000000000001000000000000","11000000010100010000001000000101010001000000100010","00000000000000000000000000000E00000000000000000000","00000000010001001001011100000000010000000000000001","01100000100100000000000010010010000100100000001000","00010000000000000000000000000000000010001000000100","10010000000000100000000100010000000000000000000111","00110000000001000000000000000100000100000000010000","10011000000000100000000000000000000000000000010011","000000000000000000000000000000000000P0000000000000","0000000000000000000000000000000000000E000000000000","10100010000101000000010001000000001000001100001100","00001000100000000001110001001000100010101000110000","0000000000000000000000000000000000000000E000000000","10000001000001000000000110000000100000000010000010","10000000000001000000000100010000010100000000000001","0000000000000000000000000000000000000000000P000000","00000000000110001000010000000100111001000001000000","000000000000000000000000000000000000000000000P0000","01000100000100000000000000110100000010000001000000","00010000000000000000000000000100000001000000000001","00000000001000000001000000000100000000000000000000","0000000000000000000000000000000000000000000000000P"}

    1

    15

    Returns: 0.01087181159542519

  43. {"00001000000000000000000000000000100101000100000000","0E000000000000000000000000000000000000000000000000","01000000000001000001001000001001101110000000010101","00000010100000000000000001010000000000010000000100","01000000000000000000001000100100000000010000010100","00000000000000000000011100010000010000010110000011","00001000100001100000000000000001000101010100100100","00010000000000000000000000000000010100100000100001","00000000000000000000000000000001000100010000000000","00111001001000000101010011000000100100001010000000","00000011000000000100000010010000000101000010100000","10000011010010000000100000010000001000000010000000","00000000110000010110111000101000000101111000010000","00000000000000000000000000100001000000000000000000","00000000000000E00000000000000000000000000000000000","01001000000000000000010000000000000000000000000000","00000000100101000001000000000000001010000001000000","01100000100000000001000000010100001001000000010100","000000000000000000E0000000000000000000000000000000","00000000000001000010010000000000000101001000000001","00010010000000000000010000000001010000000000000000","00001000000000000000000000011000000001000000010000","0000000000000000000000P000000000000000000000000000","01100000001010110100010000000101000010000001000000","00000000100000000100100000100000000001010110000000","01000000000001110010010000010000000000010100000000","00000000000000000000000000E00000000000000000000000","000000000000000000000000000P0000000000000000000000","00000000000000100010000000100100000000000000000000","00000000000000000000000000000E00000000000000000000","10010101100001001010100000011000100000000010010000","0000000000000000000000000000000E000000000000000000","01000000000000000000010000010000010000000000000000","00001000100000000010000000010000000000000000000000","00001000000000110001001000000000000011010000000001","00001000000000010000001001011100000001000000000000","01010010000000000000001000100000000000001000000000","00000000000000000000001000000100000000000000000000","00000010000000000000001011000100000010010000000001","01000000000000000000000000001000000001000000000000","01000000000000010000001000010000010000010000000100","00000000000000000000000000000000000000000E00000000","00000010100001000100100000000000001000000000000000","00100000101100010100000000000000010000000000010001","10000000000000100011000000000001010000010000010000","000000000000000000000000000000000000000000000E0000","00101000010001000000000100001011000100001001000000","00000000000000000000000000010001000001000100010000","00010001000100011000000000100001000010001001100001","00000000000000010000010000100100010000001100010000"}

    0

    10

    Returns: 0.0023972226265655434

  44. {"00000100000000000000000000000000000000000000000000","0E000000000000000000000000000000000000000000000000","10000000001000001010000000000000000000000000001000","00000000000000000000001000000000000000000000000000","00000000000000000000000000000001000000000000000000","00000E00000000000000000000000000000000000000000000","00001000000001000000000000010000100000000000001000","00000000000000000001000000100000000000000000000010","00000100000000000000000000000000000100100000000100","000000000P0000000000000000000000000000000000000000","00000000100000000000000000000000000000000001000000","00000000000000000000000010000000000000000000100000","00000100000000000001000000000000000000000000001000","00010000001000000000000000000010001000000000001000","00000000000000000000000000000000010000000000000000","00000000000000000000001001000000000000000001000000","00000000000000000000000000100000000000000000000000","00000000000000000E00000000000000000000000000000000","00000000000000001000000000110000000000000000010000","01001100000000010000000000000000000000000000100001","00000000000000000000P00000000000000000000000000000","10000000000000000000000000000000000000000000000000","10000000000000000000000000000000000000000000000000","00000000000000000001001000000001000000000010000000","00000000000001010000000000010000000000100000000000","00000000000000000000000000000000000010000001000000","00000000000000000000000000001000000000000000000000","00010000101000000000000000000000000000000000000000","10000000000000000000000000000000000000000000000000","00000000000000010000000000000000000000001000000000","000000000000000000000000000000P0000000000000000000","00000000000000000000000010100000000000000010000000","10000000000000000000000000000000000000000000000000","10000010000001000100000001000000000000000000000000","0000000000000000000000000000000000P000000000000000","00000000000000000000000000000000000000010000000000","000000000000000000000000000000000000P0000000000000","10000000000000000000000000000000000000000000000001","00000000000000000000000000001000000000000000000000","00000000000000000000010000000000000000000000000000","10000000100000000000000000000000000000010000000000","00000000000000001100000000000000000000000000000100","00000000000001000000000000000000000000000000000000","00000000000000000000000000000000100000010000000000","00000000000000000000000010000000000010000000010000","00000000000000000000000000000000000000000000000100","0000000000000000000000000000000000000000000000P000","00000000000000000100000000000000000000000000001000","00000000000000000000000000000000000000000010000000","0000000000000000000000000000000000000000000000000E"}

    4

    10

    Returns: 0.19002174693326015

  45. {"E000000000","1000000000","0100000000","0010000000","0001000000","0000001000","0000000100","0000000010","0000000001","000000000E"}

    3

    3

    Returns: 0.5

  46. {"E000000000","1000000000","0100000000","0010000000","0001000000","0000001000","0000000100","0000000010","0000000001","000000000E"}

    8

    4

    Returns: 0.0

  47. {"E0","10"}

    1

    1

    Returns: 1.0

  48. {"01","0E"}

    1

    1

    Returns: 0.0

  49. {"000001010000001010000000001010100010001011010","101100110010101000000111001011100000111011010","000000100000000000000000001000000010100001000","001001110000100010000000001011100010101001010","0000E0000000000000000000000000000000000000000","00000E000000000000000000000000000000000000000","000000000000000010000000000000000000001001000","001001000000000010000000001000000000001001000","00000000E000000000000000000000000000000000000","000000000E00000000000000000000000000000000000","101101010000001000000001001010100010101010000","101011000000011011100111111111001110011111011","000000000000E00000000000000000000000000000000","100101011010001000000010000010000110110011010","000001100000100010000000001010000000100000000","011000101010111011011101100111101001011111010","0000000000000000E0000000000000000000000000000","00000000000000000E000000000000000000000000000","000000000000000000E00000000000000000000000000","101011100000110010100101001110001110000011011","00000000000000000000E000000000000000000000000","000000000000000000000E00000000000000000000000","100101011010001000000100001010100000101011010","101101100000100010000000000011100000001010010","101101101010101000110101011101100000110110001","0000000000000000000000000E0000000000000000000","00000000000000000000000000E000000000000000000","010111011010111010000111010011100100011111011","0000000000000000000000000000E0000000000000000","000000110000000000000000001010000000101011010","000000000000000000000000000000E00000000000000","110101111111110011111111110101101001110011000","111111100010011010000101000011100100110101001","000000000000000000000000000000000E00000000000","000000100000000010000000001000000000101001000","001110010001010011000011111111100010100110111","000000100000000000000000001000000000000001000","101100101010100000000101000011100010101011010","000000000000000010000000000000000000000000000","000000000000000000000000000000000000000E00000","000001100000000010000000001000000000101000000","000000000000000010000000000000000000000000000","010101001011111011110011111111101110111111011","0000000000000000000000000000000000000000000E0","010011000010100000000011001011100000100011010"}

    15

    19

    Returns: 0.4989525298030675

  50. {"P0000000000000000000000000000000000000000000000","10111011111111111111111111110111111011111111111","00E00000000000000000000000000000000000000000000","00001000000001001000000100100000000000010010010","00000000000000001000000000000000000000000000000","00000P00000000000000000000000000000000000000000","10111001111111011101000111111111111111111111111","10111000001001011001000100100000000001111010010","00000000E00000000000000000000000000000000000000","10111101101101011101000110001111101011111001111","0000000000P000000000000000000000000000000000000","10111001001001011001000100100001001001111011010","10111101111101011101000111111111101111101111011","00001000000000000000000000100000000000000000000","10111111111111011111110111111111111111111111011","10111000001001001000000100100000001000010010010","0000000000000000P000000000000000000000000000000","10111001001101011001000110100011001011100010010","10111110111111011101000111111111111111111111111","0000000000000000000P000000000000000000000000000","10111111111111011111000111111111111101111111110","10111111111110011111100111111101111111111111111","0000000000000000000000P000000000000000000000000","00001000000001001000000000100000000000010010010","000000000000000000000000E0000000000000000000000","0000000000000000000000000P000000000000000000000","00001000000000001000000000000000000000000000000","000000000000000000000000000P0000000000000000000","0000000000000000000000000000P000000000000000000","10111001001001011100000110100011101011111011010","10111001000101011000000010100001001011111011010","10111001001001011001000100100000001001111010010","10011001001100011101000110100011001011110011010","000000000000000000000000000000000P0000000000000","0000000000000000000000000000000000E000000000000","10111101111101011101000110111111101000111011011","000000000000000000000000000000000000P0000000000","0000000000000000000000000000000000000P000000000","10111000001001011000000100100000001000010010010","000000000000000000000000000000000000000P0000000","00111000001001011001000100100000001001110010010","10111101111101011001000010111111101111111011111","00001000000001001000000000100000000000010000000","0000000000000000000000000000000000000000000P000","00000000000000000000000000000000000000000000E00","00001000000001001000000000100000000000010000000","0000000000000000000000000000000000000000000000P"}

    14

    18

    Returns: 0.13577234711584882

  51. {"0000100000111001000000010101001000111000001100000","1000100011111001000110100101001000111010011100100","1100110111111111110110011001111110111110110111010","1010111111010011111010110101101111111101111111111","0000000000000000000000000000000000011000000100000","00000E0000000000000000000000000000000000000000000","1110010111111011110110111101101110111111111111110","1100000010111001100110010101000000100000011100100","1000100000111001000000110101001000111010010100000","1000100010111001000010110100001000111010011100100","0000100000011000000000010001001000011000000100000","00000000000E0000000000000000000000000000000000000","000000000000E000000000000000000000000000000000000","0000000000000E00000000000000000000000000000000000","1100110111101101110100111101111110111110011111110","000000000000000E000000000000000000000000000000000","1100100011101001000110110101001000101010011100000","00000000000000000E0000000000000000000000000000000","0010111111101101110100101101111111110111111111111","1000100000010001000000110101000000111010011100000","1000100010111001000100110101001000111010011100100","1011111111111111111110111111110101111111111101111","1000100000101000000000010101001000111000001100000","00000000000000000000000E0000000000000000000000000","000000000000000000000000E000000000000000000000000","0000000000000000000000000000000000001000000100000","1111111101011111111010111101111111111111111110111","000000000000000000000000000E000000000000000000000","1100010101111001100010111101010110010110111011110","00000000000000000000000000000E0000000000000000000","000000000000000000000000000000E000000000000000000","1100100101111101110110111101011010110110111101110","00000000000000000000000000000000E0000000000000000","000000000000000000000000000000000E000000000000000","0000000000000000000000000000000000E00000000000000","0000000000000000000000000100000000001000000100000","000000000000000000000000000000000000E000000000000","1100110111111101110110111001011010111010111101110","0000100000111001000000110001001000011000001100000","1110110111111111110110111101111100111110111111110","0000000000000000000000000000000000000000E00000000","1000100000001001000000110100001000110010001000000","0000100000111001000000010101001000111000000000000","0000000000000000000000000000000000000000000E00000","00000000000000000000000000000000000000000000E0000","1100110111111101110110111101011010111010111100100","1000100010001001000000110101001000110000010100000","1100100111111100110110111101011010111010111001100","0110110111111111100110111101110110111011111111110"}

    18

    25

    Returns: 0.0059866210179108275

  52. {"0000010000000000000000000000000001000000000001001","1001110000011110011001101010011001000111010101011","1101110111011111111111101001011001010111010101011","1000010000001010000000000000000001000000000001001","0001010000011010000001001010000001000000000101001","0000000000000000000000000000000001000000000000000","1111100111011111111111101010111101010110011101111","1101110011011111011111101011011001010111010101011","1101110000011110011101101011011001010101010101011","000000000P000000000000000000000000000000000000000","0111111101011111111111111111111111011111011111111","1001010000001010000001000010000001000000000100001","0000010000000000000000000000000001000000000001000","1001110000011010011101001011011001000011000001001","1000010000000000000000000000000001000000000001001","1101100010011110011101101011011001010101010101011","0000000000000000P00000000000000000000000000000000","1001110000011010001101001011011001000000000101001","1001110000011010000000001011010001000000000101001","0000000000000000000P00000000000000000000000000000","1101110010011111011101101011011001010111010101011","1001010000001010000000000000000001000000000001001","1001110000011110011100001011011001000111010101001","00000000000000000000000P0000000000000000000000000","000000000000000000000000E000000000000000000000000","1111111111011111110111101001111111011111011111111","00000000000000000000000000P0000000000000000000000","1001110000011010000001001010000001000000000101001","1111110111011111110111101011011101010111011101111","1001110000011010000001001011000001000000000101001","1001110000001000001101001001010001000001000101001","1111110111010111111111101001011001010111010100011","1111111111011111110111101011111101010111011101111","000000000000000000000000000000000P000000000000000","1111111101111111111111111111110111001111101111111","1101110000011110011101101011011001000111010101011","1111011111011111111101101011111110010111011111111","1001110000011110011101001011001000000011000101011","00000000000000000000000000000000000000E0000000000","1001010000011010001001001011010001000000000101001","0000000000000000000000000000000000000000E00000000","1001110000011110010101001001011001000011000101011","000000000000000000000000000000000000000000E000000","0000000000000000000000000000000000000000000P00000","00000000000000000000000000000000000000000000P0000","0000010000000000000000000000000001000000000000000","1011110111011111111111101011011101000111010101011","1001110000011010011101001011011000000011000100001","0000010000001000000000000000000001000000000001000"}

    34

    25

    Returns: 0.9362881864736006

  53. {"00101111010111000110111001010110001110000101101111","0E000000000000000000000000000000000000000000000000","01000001000010000000011000000010000000000001001100","01000000000010000000011000000010001000000001000100","0000E000000000000000000000000000000000000000000000","00110001000010000100011000000010001000000001001101","00111100011101010110111000000110001110000101101111","0000000E000000000000000000000000000000000000000000","00000000E00000000000000000000000000000000000000000","01111101001110010110111001000110001100000001001110","01100001000010000000011000000010001000000001100101","01110101001010000100011001000110001010000001101011","000000000000E0000000000000000000000000000000000000","01100101001110000100010000000110000010000001101111","11111111111110011111101101101110101111111011111111","000000000000000E0000000000000000000000000000000000","11111111111111010110111001110100001110111101011111","00000000000000000E00000000000000000000000000000000","01110001001101000100011001000010001010000001101011","0000000000000000000E000000000000000000000000000000","00110101001011010110011001000110001110000001101111","01000000000000000000000000000000000000000001001000","01000000000000000000010000000010000000000001001100","00000000000000000000000E00000000000000000000000000","11111111111011111111101101111110101110111111011011","01110101000010000100001000000010001000000001101101","11111111011111010100111001010010001110000101101111","01111111001111010010111001000110001110000101101111","10111011110111011110111001110110001110111101101011","01100101001010000100011001000010001010000000101101","01000000000000000000010000000000000000000001001100","0000000000000000000000000000000E000000000000000000","11111111111110011011111101111110000111111011111101","000000000000000000000000000000000E0000000000000000","01100001000000000000011000000010000000000001001100","01110101001011000100010001000110001010000001101111","01110101001010000100011001000000001000000001101101","0000000000000000000000000000000000000E000000000000","00000000000000000000000000000000000000E00000000000","11111111111111010110111001110110000110100101111111","0000000000000000000000000000000000000000E000000000","00000000000000000000000000000000000000000E00000000","10111111111111011000101101101110001110111101111111","01000000000000000000000000000000000000000000000000","01110101000010000000011000000010001000000001001100","11111101011111010110111001010110001110000101101111","01000000000000000000000000000000000000000001000000","00000000000000000000000000000000000000000000000E00","01110101001000000100001001000110001010000001000101","00110000000010000100000000000010001000000001001100"}

    24

    31

    Returns: 1.0

  54. {"01100100010010010000000000001101100010101111110000","00100100010010010000001000001101000001101101110000","00P00000000000000000000000000000000000000000000000","11100101010010110100001000001000100011111111110000","11010101010010110100001000001101100001111111110000","00100000010010010000001000000001100000001010010000","11011101011111110101101011011000100111111101010000","11100000010010110000001000001101100011110111110000","11111011011101100101101010111101100111111111110101","00100000000000010000001000000001100000001010010000","11110100010000010100001000000101100111111001000000","01111101010010110100001000011000100111001101110000","00100000010000010000001000000000100000001010100000","0000000000000E000000000000000000000000000000000000","11100100000000010000001000000101100011100011110000","00100000000000000000001000000001100000001010010000","11111111111110110101100011111001010101111111110001","11100100010010110000001000001101100011111110110000","11111101111110011100101011111101110101111111110111","11011101011110110100101010011101100111111111110001","11110101010110010100001010011100100110110110100001","11111111111111111011101011111111111111111111011111","00100000000000000000000000000000000000001010110000","11001011111101111111011011111010111111110111111110","01111101001110010100001000011101100111111111100001","0000000000000000000000000E000000000000000000000000","00000000000000000000000000E00000000000000000000000","11111101011010110000001000001101100111111101110000","00100100010010010000001000000001100000001010100000","00100100010010010000001000001001100011101011100000","11111011111101111110101001111101110111111011111011","00100000000000000000001000000000000000001000110000","00000000000000000000000000000000P00000000000000000","11101111011111110101101011111100100111111110100101","11110111111111101011001011100111100111110111011110","11111001010010110100001000001001100011111101110000","00100100010010010000001000001001100001101111110000","00100100010010010000000000001001100000001000110000","00100100000010010000001000001001100001001011110000","10100100010010110000000000001101000011100101110000","0000000000000000000000000000000000000000E000000000","00100100010010010000001000000001100001101010110000","00100000000000000000000000000000000000000000100000","00100100010010010000001000001001100001001010010000","00000000000000000000000000000000000000000000E00000","00100000000000000000000000000000000000000010000000","11111101111010101111100001110001100111011011010101","00000000000000000000000000000000000000000000000P00","11011111011101010101100011011100110111101111110101","11111101001110110100001000011100100011111110010000"}

    21

    38

    Returns: 0.05952262112494026

  55. {"01000001000101000100000000000000010101100001000101","0E000000000000000000000000000000000000000000000000","11011001110111000100011111011100111101101001111111","000E0000000000000000000000000000000000000000000000","11000001100101000100000000000000010101100001000101","11111011111111111101111111111111111111111111111111","11111001110111000100011111011101111101101001111111","01000000000000000100000000000000000100000001000000","00000000E00000000000000000000000000000000000000000","11001001100101000100000000010000010101100001000101","0000000000E000000000000000000000000000000000000000","01000001000000000100000000000000000100000001000000","11011001110101000100001110011100111101101001110111","01000001000100000100000000000000010100000001000000","11111011110111001100111111011111111111111111111111","11111011110111101100111111111111111111111111111111","11111011110111000100011111011111111111111111111111","01000000000000000000000000000000000000000000000000","11111111111111111101111111111111111111111111111111","11111011110111111100111111111111111111111111111111","11111011110111001100011111011111111111111111111111","11011001110111000100001110011100111101101001110111","11001001110101000100000000010000010101100001000101","11001001110101000100001000010000110101100001000101","11011001110101000100001100011000110101100001110111","11011001110111000100011110011100111101101001111111","11111011110111101100111111011111111111111111111111","11001001100101000100000000000000010101100001000101","11011001110101000100001100010000110101100001100101","11011001110101000100001110011000111101100001110111","11111011110111000100011111011101111101101001111111","0000000000000000000000000000000E000000000000000000","00000000000000000000000000000000P00000000000000000","01000001000100000100000000000000000100000001000000","11011001110101000100001110011000110101100001110111","01000000000000000100000000000000000000000000000000","000000000000000000000000000000000000P0000000000000","01000001000101000100000000000000010100100001000100","01000001000101000100000000000000010100000001000100","11111011110111000100011111011111111101101011111111","11011001110101000100001110011100111101100001110111","11111011110111000100011111011111111101111011111111","11111011110111000100011111011111111101101001111111","0000000000000000000000000000000000000000000P000000","11011001110101000100001100010000110101100001000101","11011001110101000100001100011000110101100001100111","11011001110111000100011110011100111101101001110111","01000001000101000100000000000000010100000001000000","000000000000000000000000000000000000000000000000E0","01000001000101000100000000000000010101100001000100"}

    5

    40

    Returns: 0.0477117818889971

  56. {"01100100000000000000000010000010000001000000000100","00100000000000000000000010000000000000000000000100","00E00000000000000000000000000000000000000000000000","11101111111111111111111110101110101011111110111111","11100101001001010000010010000010000001110100010110","00100000000000000000000010000000000000000000000000","000000E0000000000000000000000000000000000000000000","10100100000000000000000010000010000001010100010110","11101101001011011000011010101110000011110100100111","11101101101111111111101011101010001011110110111111","11100101000001010000010010000010000001110100010110","11101001101011011111011111101110000011110100110101","11101101001001011000011011101110000011110100110111","11100101000000010000010010000010000001110100000110","11101101101111011111001101101110000011110100110111","11100101000000000000010010000010000001110000010110","11101101001001010000011011101110000011110100110111","11101101101011011000011111101110000011110000110111","11101101101011011101011111101110000011110100110111","10101101101011011100011111001110000001110100110111","11101101101111111111001111100110001011110110110111","11100101000000000000000010000010000001010100010110","11101101001000010000010010000010000001110100000110","11101101101011011000001011101110000011110100010111","00100000000000000000000000000000000000000000000000","11101101001001010000011010001010000001110100010110","11101101001001010000011011001010000001110000110110","11111110111111011111111101101110101011011110111111","11101101000001010000011010000010000001110100010110","00000000000000000000000000000E00000000000000000000","01100100000000000000000010000000000001000000000100","11111111111111110111111111101110111111111110111111","11101101111111111111010111101110001011111110111101","11111111111111111111111111001110001011111100111111","11101101101111111111011111101110000011010110110111","11111001111111110111111111111110111011111110111111","11100101001000010000011011100110000001110100110110","01100100000000000000000010000000000000000000000100","11100101000000000000010010000010000001010100010110","11100100000000000000000010000010000001000100010110","11101101101111111111111111101110001011110110111111","11100100000000000000000010000010000001000000000100","000000000000000000000000000000000000000000P0000000","11111111111111111110111111111111111111111100111111","00000000000000000000000000000000000000000000E00000","11000100000000000000000010000010000001000100000110","10101101101111101111111111101110001011110110110111","00000100000000000000000010000000000000000000000000","11100100000000000000000010000010000001000100000100","11101101001001010000011011101110000011110100110110"}

    43

    43

    Returns: 1.0

  57. {"00000011010000001100000010000000001000001000111011","10000011010000011100100010000000001000001000111011","11000011011000011100110010010000001000001000111011","11101111111111111110111111011011101101101101111011","11100111111000011100110010010000001000001100111011","11100011011000011100110010010000001000001000111011","00000001010000001100000010000000001000000000111011","00000000010000001100000010000000000000000000111011","11100111011000011100110010010000001000001100111011","00000000000000001100000010000000000000000000111011","11000011010000011100100010000000001000001000111011","11101111111000011110111110011011101100101101111011","11101111111100111110111110011011101100101101111011","11101111111110111110111110011011101101101101111011","11101111111100011110111110011011101100101101111011","10000011010000001100100010000000001000001000111011","00000000000000000000000010000000000000000000101010","00000000000000001000000010000000000000000000101011","11101111111000011100110010010010001000101101111011","11111111111111111110111111011111111101101101111111","10000011010000001100000010000000001000001000111011","11000011011000011100100010000000001000001000111011","11101111111000011110110110011010101100101101111011","11101111111000011110110010010010101000101101111011","00000000000000000000000000000000000000000000000010","11101111111111111110111110011011101101101101111011","11111111111111111111111111011111111111111101111111","11000011011000011100110010000000001000001000111011","11101111111000011110110110010010101000101101111011","11111111111111111110111111011011111101101101111011","11101111111000011100110010010000001000001100111011","11101111111000011110111110011010101100101101111011","11101111111000011110110010010010001000101101111011","11111111111111111110111111011011101101101101111011","00000001010000001100000010000000000000000000111011","11101111111000011110110110011010101000101101111011","11111111111111111111111111011111111101111101111111","11101111111110111110111110011011101100101101111011","11101111111000011100110010010010001000001100111011","11111111111111111111111111011111111101101101111111","00000011010000001100000010000000001000000000111011","11100111011000011100110010010000001000001000111011","11111111111111111111111111111111111111111101111111","11101111111000011100110010010010001000101100111011","00000000000000000000000010000000000000000000000010","000000000000000000000000000000000000000000000P0000","00000000000000000000000010000000000000000000100010","11111111111111111110111111011111111101101101111011","000000000000000000000000000000000000000000000000E0","00000000000000001000000010000000000000000000101010"}

    36

    46

    Returns: 0.0032595409479831577

  58. {"01111110111111111111111011111111111111111111111111","00110010111101010001110000011101101011001110011011","00010000010000000001110000000100000011001000001000","00000000000000000001100000000100000011001000001000","01110010111101010001111010011101101011001110011011","01111010111101111111111011111111101111111111111111","00110000110000000001110000000100000011001000001001","11111110111111111111111111111111111111111111111111","00110000010000000001110000000100000011001000001001","00010000000000000001100000000100000011001000001000","00110010110101010001110000011101101011001110011011","00110010110000000001110000011100100011001100011001","01111110111101111111111011111111111111111111111111","00110010110100000001110000011100101011001110011001","01111010111101010101111010011101101011101110011011","00110010110101000001110000011101101011001110011001","01111010111101110111111010111111101111111110111111","01111010111101010001111010011101101011101110011011","01111010111101110101111010011101101011111110011111","00000000000000000000100000000000000010001000001000","00000000000000000000000000000000000010000000001000","00010000010000000001100000000100000011001000001000","01110010111101010001110000011101101011001110011011","11111110111111111111111011111111111111111111111111","01110010111101010001111000011101101011001110011011","01111010111101111111111010111111101111111111111111","01111010111101110111111010011101101011111110011111","00110010110000000001110000001100000011001100011001","00110010110000000001110000000100000011001000011001","00000000000000000001100000000000000010001000001000","01111010111101110111111010111101101111111110111111","00110010110101000001110000011100101011001110011001","00110010110000000001110000011100000011001100011001","01111110111101111111111011111111101111111111111111","00110010110100000001110000011100100011001110011001","01111010111101110111111010111101101011111110111111","00000000000000000000000000000000000000000000001000","00000000000000000001100000000100000010001000001000","01111010111101010001111010011101101011001110011011","01111010111101110101111010011101101011101110011111","0000000000000000000000000000000000000000E000000000","00110010110000000001110000001100000011001000011001","00110010110100000001110000011100100011001100011001","01111010111101111111111010111111101111111110111111","01111010111101110111111010111101101011111110011111","00110010110000000001110000000100000011001000001001","0000000000000000000000000000000000000000000000P000","01111010111101110101111010011101101011101110011011","00110010110101010001110000011101101011001110011001","00110000010000000001110000000100000011001000001000"}

    7

    46

    Returns: 1.0

  59. {"P00000000000000000000000000000000000000000000","101101000001011110111011001101110111111111110","100000000001001100101011000100000111101010110","101000001001001100101010000100100111111110110","111101111111111111111111101111110111111111111","101100001001011100001011000101110111111110110","000000E00000000000000000000000000000000000000","111101001101111111111111101101110111111111111","101000000001001100101011000100100111111110110","000000000E00000000000000000000000000000000000","111101011101111011111111111101110111111111111","100000000000001100000000000000000000000000000","000000000000P00000000000000000000000000000000","0000000000000P0000000000000000000000000000000","100000000000000100000000000000000000000000000","100000000000000000000000000000000000000000000","101101001000011100111011001101110111111111110","00000000000000000E000000000000000000000000000","000000000000000000P00000000000000000000000000","0000000000000000000P0000000000000000000000000","100000000001001100000011000100000111101010010","000000000000000000000E00000000000000000000000","100000000000001100000000000000000000000000000","100000000001001100000010000000000001000000000","111101001001111110111111001101110111111111111","101101011101111111111111101101110111111111111","101101001001011100111011000101110111111110110","100000000001001100000011000000000001000010000","111101111011111111111111111101110111111111111","00000000000000000000000000000E000000000000000","101000000001001100101011000100000111101110110","101100001001011000101011000101100011111110110","111111111111111111111111111111110111111111111","000000000000000000000000000000000E00000000000","0000000000000000000000000000000000E0000000000","00000000000000000000000000000000000E000000000","000000000000000000000000000000000000P00000000","101000000001000100101011000100100111101110110","00000000000000000000000000000000000000E000000","100000000001001100101010000100000111101010110","100000000001001100000011000000000001000000000","101101001000011100111011001101110111111110110","000000000000000000000000000000000000000000E00","0000000000000000000000000000000000000000000P0","111101001001011110111011001101110111111111110"}

    41

    13

    Returns: 4.719017032191955E-5

  60. {"00111001010111001011010000100111010110111000101010","0P000000000000000000000000000000000000000000000000","00000001010001000011000000000000000000001000100000","000P0000000000000000000000000000000000000000000000","00100101010101000011010000100100000110001000101000","00000E00000000000000000000000000000000000000000000","10111101010111101011010000100111011110011100111010","00000000000000000011000000000000000000001000100000","10101111010111111110011101101111011111111101111011","00000001000001000010000000000000000000001000100000","10111111110111111011011111111011111111111101111111","00000000000P00000000000000000000000000000000000000","000000000000P0000000000000000000000000000000000000","0000000000000E000000000000000000000000000000000000","10111101010111001011010000100111010110111000101010","10111111010111101111011101101111011111111001101110","00111101010101000011010000100111000110111000101010","00000000000000000P00000000000000000000000000000000","00000000000000000001000000000000000000000000000000","0000000000000000000P000000000000000000000000000000","10111111111111101011011111111111111111111101111111","000000000000000000000P0000000000000000000000000000","0000000000000000000000P000000000000000000000000000","10111111010111101111011001101111011111111101111111","10111111110111111111011101101111011111111101111110","10111111010111101110011000101011011111111100111111","00100001010101000011010000000100000000001000101000","10111111110111111111011111101111111111111101111111","10111111010111101011010000100110011110111100111010","00100001010001000011000000000000000000001000000000","00111101010101000011010000100101000100111000101010","00111101010101000011010000100100000110111000101010","10101111110111111111011111101111011111110101111111","000000000000000000000000000000000P0000000000000000","0000000000000000000000000000000000P000000000000000","00100101010101000010010000100100000010001000101000","000000000000000000000000000000000000P0000000000000","0000000000000000000000000000000000000P000000000000","00111101010101000011010000100100000110011000101000","00111001010101000011000000100100000110001000101000","00000000000000000011000000000000000000000000100000","10111101010111101011010000100111010110111000101010","000000000000000000000000000000000000000000P0000000","0000000000000000000000000000000000000000000P000000","00000000000000000011000000000000000000000000000000","10111101010111101011010000100111011110111100101010","0000000000000000000000000000000000000000000000P000","00000000000000000000000000000000000000000000000P00","00111101010101000011010000100100000110101000101000","10111111010101101011010000101111011110111100111010"}

    49

    19

    Returns: 1.1314771561898136E-5

  61. {"001001010010000000101000011100010011010001010011","101011010111110111110001011011010011010001011011","00E000000000000000000000000000000000000000000000","111011010111110110111100011111110111000001011011","101001010111010011101001001101010011010001010011","000000010010000000101000011001000011010001010011","111111010111110111111111011111110111010100010111","000000000000000000001000011000000000000000010000","111111110111111111111111111111110111110111101111","101001010011010000101001011101000011010001010011","000000010000000000001000001000000000000000010000","000001010010000000101000011001010011010001010011","101011010011010010101001011111010011010001010011","101001010011000010101001011101010011010001010011","111111110111110111111111011110110111111011111111","101011010111110011101001011111010011010001010010","101001010011000000101001011101010011010001010011","101001010111010010101001011101010011010001010011","000000010010000000001000011000000011000000010000","101011010111110111101001011111010011010001010001","00000000000000000000E000000000000000000000000000","000000000000000000000E00000000000000000000000000","0000000000000000000000E0000000000000000000000000","101001010011000000101000011101010011010001010011","111111110111110111111111011111110111111111011111","000000000000000000001000000000000000000000000000","000000000000000000001000010000000000000000000000","000001000011000000101000011001010011010001010011","100011010111010011100001011101010011010001010011","000000010010000000101000011000000011000000010000","110010010111110111111101011110010111010001001011","000001010010000000101000011001000011000001010011","111111111000111111111111111101110111111111111111","111011010111110111111101011111010011010001011011","000000010010000000001000011000000000000000010000","000000010010000000001000011000000010000000010000","101111110111110111111111011111110111011011011111","0000000000000000000000000000000000000E0000000000","111111110111110111111111001110110111010101011110","111111010111110011100111011011100111010001011111","0000000000000000000000000000000000000000E0000000","000000000010000000101000011001000011010000010000","000000000000000000000000000000000000000000E00000","000000000000000000001000011000000000000000000000","101011010111110111111001011111010011010001010011","111111010111110111111101011111100111010001011011","000000010010000000101000011001000011010001010001","000000010010000000101000011001000010010001010000"}

    3

    32

    Returns: 1.7962275479656332E-6

  62. {"E000000000000000000000000000000000000000000000000","0000000000000100000000000000000000000000000000000","0101111111101111101111111111111111111111111111111","0100111100101111101111110111110101011110001111101","0100000000000100000010000010100000000100000000000","00000E0000000000000000000000000000000000000000000","0100100100001101100111110111100100011110001101001","0100100000001101100111110111100100011110001101001","00000000E0000000000000000000000000000000000000000","0101111100101111101111110111110101011110011111101","0100111100001111101111110111110101011110001111001","0111111111101111101111111111111111111111111111111","0100100000000101000010010010100000010110000001001","0000000000000E00000000000000000000000000000000000","0100110100000101101111110111110101011110001111001","0100100000000100000010000000100000000100000001000","0100100000001101000010010011100100010110000001001","1111111111111111101111111111111111111101111111111","000000000000000000E000000000000000000000000000000","0000000000000000000P00000000000000000000000000000","0100000000000100000000000010000000000100000000000","0100100000001101100110110011100100011110001001001","0100100000001001100010010011100100010110000001001","0100100000000101000010000010100000000110000001001","0101111101101111101111110111111111111111111011101","0100100000001101100111110010100100011110001101001","00000000000000000000000000E0000000000000000000000","0100100000001101000010010010100100010110000001001","0100000000000100000010000010000000000100000000000","0100101100001101100111110101100100011110001101001","000000000000000000000000000000P000000000000000000","0100100000001101000010010010100000010110000001001","00000000000000000000000000000000E0000000000000000","0100111100001101100111110111110100011110001111001","0101111101101111100111110111110101011111011111111","0100100000000101000010010010100000000110000001001","0000100000001101100110110011100100010110001001001","0100000000000100000000000000000000000000000000000","0000100000000101000010000010100000000100000001000","0101111101101111101111110111100101011110010111111","0101111101101111101111110111011111111111011111111","0101111100101011101111110111110101011110001111101","0100100000001101100110110011100100010110000001001","0100100000001101100111110011100100011110001001001","0100100100001101100111110111110100011110001101001","0100100000000100000010000010100000000100000000000","0100101100101111101111110111110101011110001111001","0101111101101111101111110111110101001110011111101","0100100000000101000010000010100000000110000001000"}

    42

    17

    Returns: 2.700667057671992E-7

  63. {"01000100", "00111000", "00001010", "000E0000", "0000E000", "00000P00", "000000P0", "01000000" }

    1

    2

    Returns: 0.14285714285714288

  64. {"E0000000000000000000000000000000000000000000000000", "10000000000000000000000000000000000000000000000000", "11000000000000000000000000000000000000000000000000", "11100000000000000000000000000000000000000000000000", "11110000000000000000000000000000000000000000000000", "11111000000000000000000000000000000000000000000000", "11111100000000000000000000000000000000000000000000", "11111110000000000000000000000000000000000000000000", "11111111000000000000000000000000000000000000000000", "11111111100000000000000000000000000000000000000000", "11111111110000000000000000000000000000000000000000", "11111111111000000000000000000000000000000000000000", "11111111111100000000000000000000000000000000000000", "11111111111110000000000000000000000000000000000000", "11111111111111000000000000000000000000000000000000", "11111111111111100000000000000000000000000000000000", "11111111111111110000000000000000000000000000000000", "11111111111111111000000000000000000000000000000000", "11111111111111111100000000000000000000000000000000", "11111111111111111110000000000000000000000000000000", "11111111111111111111000000000000000000000000000000", "11111111111111111111100000000000000000000000000000", "11111111111111111111110000000000000000000000000000", "11111111111111111111111000000000000000000000000000", "11111111111111111111111100000000000000000000000000", "11111111111111111111111110000000000000000000000000", "11111111111111111111111111000000000000000000000000", "11111111111111111111111111100000000000000000000000", "11111111111111111111111111110000000000000000000000", "11111111111111111111111111111000000000000000000000", "11111111111111111111111111111100000000000000000000", "11111111111111111111111111111110000000000000000000", "11111111111111111111111111111111000000000000000000", "11111111111111111111111111111111100000000000000000", "11111111111111111111111111111111110000000000000000", "11111111111111111111111111111111111000000000000000", "11111111111111111111111111111111111100000000000000", "11111111111111111111111111111111111110000000000000", "11111111111111111111111111111111111111000000000000", "11111111111111111111111111111111111111100000000000", "11111111111111111111111111111111111111110000000000", "11111111111111111111111111111111111111111000000000", "11111111111111111111111111111111111111111100000000", "11111111111111111111111111111111111111111110000000", "11111111111111111111111111111111111111111111000000", "11111111111111111111111111111111111111111111100000", "11111111111111111111111111111111111111111111110000", "11111111111111111111111111111111111111111111111000", "11111111111111111111111111111111111111111111111100", "11111111111111111111111111111111111111111111111110" }

    49

    49

    Returns: 1.0


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