Statistics

Problem Statement for "BridgeBuilding"

Problem Statement

This problem has a non-standard time limit: 3 seconds.

You have two rows of nodes. Each row contains N nodes, numbered 0 through N-1 from the left to the right.

Within each row, adjacent nodes are already connected by edges. You are given the lengths of these edges as int[]s a and b, each containing N-1 elements. For each valid i, a[i] is the length of the edge between nodes i and (i+1) in the top row, and b[i] is the length of the edge between nodes i and (i+1) in the bottom row.

You want to add exactly K new edges to this graph. Each of the new edges must be vertical -- i.e., it must connect some vertex i in the top row to the vertex i in the bottom row. All new edges will have length 0.

By adding the K new edges we will produce a connected graph. The diameter of this graph is the maximum of all shortest distances among pairs of its nodes. In other words, the diameter is the smallest number D such that it is possible to travel from any node to any other node using a path of length D or less.

Given a, b, and the int K, compute and return the smallest possible diameter of the resulting graph.

Definition

Class:
BridgeBuilding
Method:
minDiameter
Parameters:
int[], int[], int
Returns:
int
Method signature:
int minDiameter(int[] a, int[] b, int K)
(be sure your method is public)

Constraints

  • N will be between 2 and 200, inclusive.
  • a,b will contain exactly N-1 elements each.
  • K will be between 1 and N, inclusive.
  • Each element of a,b will be between 1 and 50, inclusive.

Examples

  1. {2,1,1,1,2}

    {1,9,1,9,1}

    4

    Returns: 6

    One example of an optimal solution is to draw the bridges as follows:

  2. {1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50}

    {50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1}

    43

    Returns: 42

  3. {50,10,15,31,20,23,7,48,5,50}

    {2,5,1,8,3,2,16,11,9,1}

    3

    Returns: 124

  4. {50,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}

    {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,50}

    4

    Returns: 17

  5. {2,4,10,2,2,22,30,7,28,14,17,6,32,41,1,3,16,20,40,39,6,4,18,3,3,7, 3,2,2,14,10,6,38,6,13,3,6,1,23,26,9,17,1,38,1,21,2,12,3,13,28,6,4, 10,3,1,1,43,15,11,18,6,41,1,2,5,6,26,43,9,5,13,1,27,1,33,12,16,1,12, 1,37,34,6,20,3,21,3,1,17,3,10,2,1,8,25,2,6,7,1,7,22,11,8,49,9,1,7,1, 13,17,20,27,31,43,1}

    {5,26,1,2,6,2,16,3,15,1,1,38,2,4,6,1,2,3,11,2,2,2,25,16,2,15,45,3,10, 4,17,5,6,1,16,13,29,3,1,2,4,47,4,10,1,2,23,3,29,20,4,21,1,28,7,25,6,6, 10,1,2,1,17,6,1,28,2,2,12,2,3,42,39,11,18,3,15,4,1,15,3,9,4,26,4,13,41, 1,27,1,14,1,2,14,5,33,1,34,5,17,23,3,33,14,23,2,29,18,3,41,1,45,5,4,6,2}

    5

    Returns: 1184

  6. {1,1,5,1,1,5,1,1}

    {1,50,30,5,5,30,50,1}

    4

    Returns: 40

  7. {9,10,50,11,10}

    {50,1,1,1,50}

    4

    Returns: 24

  8. {5,13,36,17,46,8,1,37,4}

    {2,36,40,12,8,37,1,22,20}

    2

    Returns: 168

  9. {12,5,48,1,2,5,1,35,5}

    {1,2,13,1,3,10,39,34,20}

    3

    Returns: 91

  10. {25,28,1,2,4}

    {1,26,6,17,49}

    2

    Returns: 74

  11. {14,1,37,44,7,39,8,48,1,40,34,2,4,19,12,1,1,3,7,2,6,4,9,9,6,22,2,3,28,10,2,13,5,1,3,9,2,1,33,17,2,1,6,10,5,1,49,2,28,21,21,14,1,3,39,14,1,11,6,3,6,4,26,2,8,6,2,3,13,11,14,1,2,35,3,34,1,36,5,6,10,1,2,2,5,6,18,13,13,11,7,1}

    {36,2,35,29,7,19,2,2,4,35,7,1,1,2,2,21,1,14,12,2,29,1,1,6,37,3,26,1,4,11,24,21,5,11,1,2,2,4,7,14,10,14,36,9,43,10,48,9,24,41,4,34,2,36,20,3,1,1,9,10,27,49,8,13,5,2,34,7,6,22,5,9,12,34,15,11,7,13,1,45,8,1,21,1,1,13,8,2,3,1,2,28}

    9

    Returns: 809

  12. {4,1,10,8,11,18,32,1,4,36,47,8,8,1,16,21,2,1,1,4,6,5,2,13,3,2,26,7,15,1,2,2,1,4,13,8,6,5,14,29,19,1,1,9,2,2,1,1,1,49,37,1,17,1,1,8,4,2,6,3,2,24,1,1}

    {3,11,10,24,26,46,33,8,7,23,1,17,3,19,1,16,5,24,36,27,8,3,1,25,17,3,5,8,9,13,4,3,19,42,12,1,2,3,8,2,2,1,27,42,7,8,3,3,5,1,4,37,1,15,2,1,8,2,5,24,29,14,29,23}

    24

    Returns: 304

  13. {4,30,29,8,35,32,12,18,47,35}

    {42,4,22,29,27,5,7,45,15,11}

    2

    Returns: 220

  14. {25,13,25,32,13,36,9,15,26,28}

    {2,38,21,16,43,19,2,28,29,44}

    3

    Returns: 204

  15. {2,17,28,1,22,27,20,26,14}

    {35,3,38,5,34,9,40,37,3}

    5

    Returns: 138

  16. {7,5,38,42,8,43,2,22,49,15,25,48,16,29,13,21,27,9,20,19,34,28,2,50,48,50,2,12,33,40,41,15,17,5,23,18,17,46,26,18,49,18,11,15,37,38,31,24,11,41,32,16,4,26,23,18,21,26,46,43,1,14,2,7,31,6,22,49,26,36,18,19,20,37,26,43,43,26,1,46,48,40,17,20,48,35,36,5,2,20,48,26,50,36,42,25,39,48,22,29,48,23,49,30,3,19,38,7,36,50,34,31,17,6,31,50,37,4,10,45,48,24,38,6,20,33,11,49,4,26,13,43,24,38,8,40,20,7,33,41,40,35,44,24,27,4,16,7,17,14,22,16,15,14,2,36,37,39,6,24,7,28,1,17,10,15,31,10,4,27,25,10,26,20,21,18,29,27,45,9,24,43,27,8,28,24,8,34,28,31,17,47,46,22,27,38,21,45,43}

    {15,2,8,11,33,4,35,9,22,11,21,24,42,22,48,23,1,4,39,1,39,39,30,40,8,8,17,1,28,3,40,12,12,25,41,49,38,27,18,2,36,43,23,5,12,43,12,38,8,43,45,9,38,20,7,9,1,48,23,1,34,1,4,14,9,22,21,42,9,7,15,5,40,38,3,17,23,43,49,31,26,28,43,12,5,25,8,27,43,30,41,28,36,50,26,18,49,16,40,40,9,42,32,48,45,25,36,2,7,23,22,50,10,42,30,21,50,19,37,24,5,36,47,30,7,23,30,20,15,43,45,2,7,5,46,24,7,40,17,21,23,9,28,5,46,42,34,22,28,1,5,14,9,26,3,33,44,49,35,2,34,17,9,17,30,5,41,27,5,17,2,17,16,46,43,4,47,1,20,32,20,37,41,26,38,27,23,43,7,31,34,46,4,45,16,47,7,43,45}

    57

    Returns: 3515

  17. {28,5,7,45,38,8,22,49,4,8,50,17,16,13,10,40,50,16,1,48,25,38,29,17,28,13,5,20,50,48,35,30,26,41,18,9,33,11,29,50,8,32,17,22,15,34,5,40,16,34,9,44,5,7,35,50,15,32,29,47,27,13,3,25,27,35,18,16,34,50,8,45,24,1,30,16,39,8,37,23,14,46,48,15,18,49,42,7,37,42,28,42,6,2,34,14,8,16,18,42,19,37,35,36,38,38,15,45,7,22,1,33,33,27,18,36,35,33,37,43,6,38,8,15,15,14,50,25,42,50,12,9,38,16,22,39,8,17,34,3,23,42,45,41,1,49,45,23,28,17,49,35,5,1,42,13,10,11,9,25,41,6,35,24,43,23,38,39,32,23,10,12,24,24,7,1,8,40,30,12,41,50,44,23,42,41,25,42,2,10,28,46,25,50,41,31,37,23,38}

    {21,29,33,15,13,46,34,10,13,8,50,48,38,13,35,40,16,8,8,46,33,4,35,4,36,47,35,31,32,32,4,9,47,30,50,25,24,45,34,26,47,27,29,19,32,23,8,33,6,49,12,21,32,37,34,10,12,31,19,15,5,22,29,28,10,30,10,35,9,35,28,44,35,26,24,40,34,38,18,36,2,4,6,42,2,49,7,1,31,26,38,10,2,16,12,31,42,11,45,33,6,40,23,9,17,43,28,22,9,32,33,26,15,2,31,29,30,43,49,22,23,17,39,24,49,35,41,41,35,16,7,41,22,6,50,17,11,32,4,2,32,13,3,11,15,23,24,7,6,23,48,46,33,4,28,40,9,20,30,18,31,43,10,21,37,23,47,25,33,20,9,6,39,14,31,5,2,23,39,38,8,2,6,10,34,38,38,10,14,8,21,15,17,50,33,32,26,16,12}

    62

    Returns: 3606

  18. {45,22,22,4,3,8,25,9,16,50,26,28,9,35,7,42,38,27,6,35,36,44,4,29,20,41,47,42,44,33,25,22,34,18,39,20,50,22,36,36,45,42,41,32,9,4,50,46,42,5,23,28,14,40,44,6,50,14,47,3,18,10,13,36,28,36,41,50,50,19,14,34,50,17,41,28,28,8,40,29,34,50,23,15,45,22,1,5,18,43,42,28,16,29,30,34,43,36,14,13,35,12,12,20,39,41,31,15,50,2,28,37,47,38,25,43,36,37,45,12,33,25,4,27,1,18,13,26,13,15,29,10,28,45,16,10,26,20,47,25,48,43,37,18,41,39,30,6,47,30,35,3,49,49,37,33,19,17,30,43,25,9,43,43,28,14,23,45,22,46,20,42,31,4,4,42,9,48,42,6,3,46,28,8,31,23,18,2,21,25,16,26,46,12,8,20,4,3,32}

    {32,33,1,50,36,8,50,40,30,46,36,13,31,18,47,4,25,43,7,2,34,12,9,50,46,29,47,42,5,50,36,49,46,25,26,42,16,3,27,49,45,26,6,48,40,36,43,50,5,39,19,44,44,49,19,17,24,21,14,10,40,10,31,4,41,5,2,7,33,48,11,10,48,50,13,13,14,29,32,10,3,24,38,27,13,10,23,17,15,39,35,27,25,1,28,34,31,9,42,23,4,24,24,24,15,47,2,20,19,12,2,44,27,27,38,8,31,21,4,40,11,3,26,13,11,16,23,17,26,1,47,14,50,26,9,20,17,42,3,16,34,18,5,5,15,28,17,21,20,1,11,9,48,39,18,15,10,25,12,36,38,44,28,32,37,32,19,27,14,40,35,33,33,36,26,19,15,13,2,49,9,10,37,28,35,41,2,43,12,48,9,37,40,19,30,9,43,41,16}

    105

    Returns: 3474

  19. {27,23,1,7,50,13,50,4,49,8,33,50,22,45,44,14,9,33,37,10,29,3,34,4,47,36,26,1,22,39,50,15,32,40,21,43,49,23,2,40,4,36,45,11,46,21,14,8,5,45,48,34,6,42,1,39,37,24,28,42,3,6,39,49,41,15,38,50,41,3,1,37,5,18,32,6,39,12,49,44,24,8,5,15,19,35,46,43,48,18,13,38,1,38,43,33,5,26,37,11,48,26,45,15,27,31,28,2,28,21,3,44,21,47,46,29,30,47,19,22,49,23,22,23,2,7,16,42,43,34,26,3,41,46,43,18,27,29,39,4,28,49,2,6,47,16,46,4,48,39,34,2,28,34,19,23,27,19,12,11,13,11,35,9,49,22,36,46,23,10,14,11,4,5,20,24,48,5,8,26,9,27,10,49,2,33,44,4,29,10,45,7,39,33,36,6,14,5,14}

    {12,49,47,24,41,50,41,16,39,27,14,5,49,21,47,33,50,43,8,25,21,7,4,9,45,10,33,20,6,25,36,9,7,5,34,9,17,35,33,38,41,21,35,45,21,24,35,17,17,25,24,3,40,24,32,10,32,33,14,41,16,3,6,38,24,37,41,35,14,5,39,37,37,36,4,39,24,9,19,35,38,22,11,20,10,50,16,15,10,49,30,15,6,3,32,19,3,14,34,8,21,50,8,48,35,47,5,41,25,49,25,18,4,25,16,22,12,4,17,7,24,21,29,43,43,29,43,42,31,30,6,16,10,34,11,22,34,12,46,39,36,47,45,1,37,20,13,21,9,17,38,9,40,22,50,31,31,9,24,9,4,12,21,13,26,38,29,36,29,46,43,22,47,41,15,50,44,29,32,17,14,8,50,17,40,42,46,40,26,34,34,29,14,38,19,31,31,11,3}

    104

    Returns: 3354

  20. {4,6,15,47,4,17,1,8,33,4,21,38,1,3,14,3,43,30,8,1,1,10,8,1,5,18,23,7,1,5,5,2,1,44,1,1,25,2,2,21,4,20,32,34,7,1,8,22,5,20,4,22,8,28,14,31,16,17,12,2,6,41,1,34,1,39,20,21,18,7,2,9,19,8,17,4,24,9,13,8,3,3,10,14,42,3,46,6,1,3,7,3,12,3,40,5,2,1,22,1,5,33,27,4,48,2,14,1,8,3,4,5,7,6,25,25,4,16,1,4,11,32,10,2,9,6,4,36,1,9,9,12,45,23,25,38,3,4,30,1,12,8,5,1,1,45,6,6,21,2,31,1,7,1,2,6,3,28,1,2,35,25,14,3,5,46,39,1,9,1,1,1,49,25,3,7,1,1,8,4,5,22,2,44,3,1,1,3,17,14,1,6,35,1,41,2,30,1,18}

    {1,3,2,1,3,1,4,1,7,14,17,49,1,42,1,7,11,4,45,40,1,3,2,1,42,13,20,15,22,1,27,4,39,4,1,3,22,5,5,49,19,2,2,41,1,3,4,48,4,1,2,25,1,5,4,25,1,7,14,4,38,13,8,16,11,2,46,7,23,35,28,23,1,9,2,8,1,2,17,3,1,5,6,2,8,5,2,33,37,46,13,2,15,44,1,7,9,18,3,18,1,3,1,2,14,1,3,25,17,9,5,40,16,1,1,6,47,14,5,27,4,3,1,12,4,2,45,2,5,4,30,29,21,5,11,4,1,14,13,28,2,2,1,18,4,8,20,12,9,1,3,9,3,9,17,1,2,31,24,22,7,15,1,32,1,3,20,41,21,49,13,2,9,5,38,1,2,9,15,2,2,3,8,7,8,12,35,20,1,7,31,7,6,1,26,9,1,12,48}

    95

    Returns: 1058

  21. {5,6,5,47,16,19,22,42,10,1,5,5,1,42,8,1,1,5,37,2,13,1,39,10,13,24,46,8,39,8,5,1,15,4,1,44,3,1,12,1,15,32,26,41,6,44,14,2,38,36,13,10,3,4,16,4,1,8,1,39,23,36,8,2,3,3,16,1,29,15,17,41,7,5,26,2,2,5,6,27,42,6,2,9,9,3,40,14,1,1,15,48,2,4,39,17,17,2,1,48,2,5,3,10,1,1,3,2,13,2,1,3,10,20,39,6,33,15,1,16,5,1,2,3,10,2,6,1,4,35,4,1,38,23,6,3,1,1,5,1,21,26,22,5,11,9,10,5,2,2,5,1,11,36,3,16,3,4,20,4,35,21,8,29,1,18,2,1,5,1,7,4,38,3,32,47,4,1,33,5,1,9,2,1,6,7,3,8,31,5,6,4,8,2,1,4,29,1,1}

    {1,5,1,4,2,6,20,6,10,4,46,3,11,19,2,5,38,22,4,3,22,2,5,1,35,21,2,3,4,7,15,8,16,29,1,23,13,18,1,10,9,1,8,47,18,22,18,22,19,42,4,2,17,5,6,3,1,2,20,22,4,5,1,1,34,7,32,2,5,4,8,2,2,30,1,3,42,1,16,5,9,4,28,1,26,6,10,1,13,36,3,3,34,37,6,10,3,28,2,13,1,23,1,6,4,4,3,3,31,8,1,12,1,3,9,6,23,16,1,4,49,6,20,6,7,3,30,12,1,1,1,1,13,33,4,1,1,41,12,2,26,36,14,1,6,1,4,29,32,11,1,14,4,37,46,6,1,14,1,1,1,1,2,1,1,1,45,5,13,10,35,49,4,31,4,16,6,4,15,3,7,1,26,4,9,14,11,5,43,1,16,5,4,8,1,41,20,9,11}

    88

    Returns: 1095

  22. {17,23,1,2,1,1,7,2,8,19,15,44,1,18,5,8,36,6,2,14,49,1,4,5,5,19,26,3,9,26,12,8,1,1,21,1,15,2,29,23,8,12,3,14,2,10,3,11,1,1,1,7,6,2,10,1,3,3,9,1,4,4,2,4,40,45,1,3,49,2,1,1,10,3,19,20,15,29,3,17,44,4,7,1,2,2,16,1,27,1,1,1,17,13,29,4,8,15,5,6,21,1,2,1,41,2,2,4,7,1,19,24,13,1,16,9,1,2,5,32,10,14,4,6,12,7,11,2,34,4,32,2,6,1,35,7,5,22,27,7,5,26,1,15,42,7,4,13,2,7,1,7,8,1,2,2,6,6,26,32,5,12,15,2,1,11,4,4,43,37,25,35,2,10,32,6,38,7,19,1,30,4,5,17,7,14,1,1,1,13,10,2,20,2,38,1,5,1,25}

    {3,4,4,43,15,17,4,39,1,20,38,2,32,1,44,1,1,2,17,8,14,5,12,5,10,16,18,1,3,1,5,1,2,5,1,3,19,32,9,8,4,39,1,33,40,27,2,3,3,16,5,24,1,2,25,1,1,6,5,1,5,4,1,25,45,1,7,1,19,2,1,2,1,7,41,28,1,23,35,23,2,2,25,1,2,25,32,8,3,2,29,2,19,2,29,1,41,4,24,33,1,44,14,24,2,27,12,2,3,11,5,9,3,2,31,3,1,8,7,9,16,10,1,7,1,1,11,10,3,14,18,3,6,10,20,3,40,4,1,23,47,26,12,13,8,7,7,5,7,1,5,2,10,1,25,10,22,1,6,5,3,1,1,3,2,2,7,4,1,17,15,15,26,3,5,29,1,49,1,7,24,1,11,7,7,1,1,6,1,4,15,15,20,29,44,5,8,6,17}

    85

    Returns: 1101

  23. {20,2,44,6,5,2,9,21,16,4,4,9,11,8,37,44,4,43,6,8,8,1,32,5,1,9,3,27,2,13,11,12,1,3,6,3,29,1,1,1,1,21,1,1,3,6,11,6,1,18,3,1,1,2,2,42,1,3,3,35,1,1,11,7,17,13,20,6,14,8,3,3,11,12,15,6,3,13,10,2,3,2,19,47,9,9,33,9,8,5,1,21,1,4,9,2,22,41,1,3,1,4,1,1,4,38,1,30,1,4,6,7,3,18,42,4,20,1,2,10,18,1,3,4,5,37,1,7,20,9,22,48,1,44,5,14,1,9,2,2,21,2,1,8,7,3,10,44,3,9,5,3,1,20,19,10,1,2,1,2,8,1,5,24,17,1,15,2,1,1,2,24,25,10,14,3,14,15,2,5,21,1,1,10,11,23,17,21,49,36,15,1,1,1,19,29,7,15,1}

    {35,8,17,2,5,1,14,46,12,42,1,1,33,15,1,14,6,21,24,3,3,1,17,14,1,5,2,3,12,21,1,1,3,7,2,15,8,38,12,4,9,19,17,2,43,22,2,3,1,5,24,19,16,9,24,3,2,14,43,20,1,1,35,1,33,2,14,32,2,25,3,38,1,1,41,7,20,12,36,1,13,8,23,17,16,4,10,4,19,8,20,3,30,25,35,28,15,12,45,1,8,37,10,3,4,31,2,8,4,3,44,15,3,2,9,1,18,5,1,25,1,31,1,3,37,4,7,1,12,34,23,20,43,4,14,10,1,1,2,2,7,9,1,1,3,1,18,1,11,2,27,1,30,10,16,1,1,37,39,16,5,10,24,1,4,1,39,24,2,10,22,12,2,1,3,2,3,1,1,8,9,34,1,2,3,29,15,4,3,2,41,27,8,8,1,3,1,15,27}

    100

    Returns: 1027

  24. {32,14,20,2,2,1,10,1,2,21,27,1,10,30,1,2,26,2,1,3,7,46,2,49,14,1,3,5,5,12,4,8,24,6,2,1,1,17,5,3,9,2,16,25,40,7,22,1,1,43,2,3,28,6,1,1,2,26,10,27,24,15,3,1,4,2,2,47,2,11,2,31,1,4,4,10,25,29,9,2,1,10,10,2,32,2,18,1,2,14,32,1,15,2,49,28,1,1,1,16,19,1,6,24,2,16,35,2,27,22,1,2,2,16,2,17,19,8,19,1,10,4,34,1,12,3,10,1,1,2,34,2,13,1,1,1,9,6,14,15,2,29,13,2,11,1,8,6,2,1,4,25,14,24,45,12,1,1,38,28,4,2,3,10,19,5,8,20,1,3,4,1,1,8,13,2,8,6,18,30,2,1,1,39,2,9,35,42,34,5,42,26,5,1,6,27,2,30,23}

    {5,9,1,1,1,9,5,11,4,13,1,8,30,1,1,9,1,12,1,2,3,2,27,34,11,4,16,11,1,44,1,1,22,14,27,3,1,9,48,14,43,30,1,45,9,2,9,1,5,2,3,23,24,28,36,6,1,1,18,2,10,4,33,1,17,48,3,3,8,11,2,42,2,11,34,14,4,2,2,1,23,40,1,2,4,31,4,3,48,1,13,1,1,4,12,29,3,1,2,1,3,47,36,1,9,2,7,2,1,27,3,34,18,14,9,1,2,1,3,41,9,6,13,1,38,1,1,5,4,2,2,28,6,45,24,5,1,3,16,15,3,4,39,1,17,1,5,1,3,1,12,5,30,8,11,1,20,13,25,1,34,11,1,17,10,10,4,7,6,2,1,22,28,10,18,3,42,1,1,6,1,27,15,48,2,12,4,2,8,38,10,2,3,27,25,15,39,4,4}

    83

    Returns: 995

  25. {7,16,3,45,18,8,7,22,16,1,34,16,43,29,10,4,24,35,10,9,3,13,1,1,8,9,23,4,1,12,8,43,16,1,24,20,14,1,1,4,9,8,1,2,2,35,16,6,44,1,1,1,7,1,1,25,2,26,2,4,5,44,3,5,16,18,43,6,1,13,33,2,3,5,25,1,30,17,2,1,7,48,4,2,2,19,41,10,3,11,3,13,19,49,32,2,20,2,39,3,2,45,1,45,20,36,19,1,2,4,3,2,16,10,8,2,22,13,1,9,1,39,3,3,6,7,1,3,22,1,2,2,19,6,8,3,27,1,1,20,47,1,2,16,8,11,16,1,17,26,4,15,2,3,2,3,4,44,43,23,1,10,2,18,39,1,34,11,1,3,15,33,12,3,2,12,7,3,4,28,30,3,34,1,3,3,20,1,3,20,1,1,37,6,9,10,5,2,32}

    {23,23,43,2,23,9,2,1,7,11,2,3,3,17,7,1,3,5,14,15,20,1,7,1,2,7,8,24,1,6,20,43,2,3,7,3,46,36,32,2,1,38,1,1,37,1,28,30,1,8,2,2,1,22,15,19,37,15,1,4,29,33,2,14,7,12,13,9,48,30,1,2,41,38,3,1,6,25,9,8,23,17,1,2,10,33,14,10,13,1,8,45,2,20,39,2,7,17,37,18,9,3,28,42,4,6,12,6,7,2,18,29,19,10,19,30,3,2,18,22,17,13,4,20,2,37,4,42,24,1,3,2,1,6,29,1,1,20,14,1,7,38,18,2,7,30,11,1,41,38,7,11,37,7,1,5,4,3,5,22,2,33,2,1,1,2,17,1,42,27,1,5,28,1,17,14,2,4,1,17,1,2,12,2,3,22,3,22,3,13,2,1,28,1,1,9,1,1,5}

    75

    Returns: 1225

  26. {1,47,17,5,9,34,4,6,40,3,14,5,15,6,3,45,17,12,1,3,37,13,3,1,7}

    {3,5,20,34,11,2,11,3,48,35,1,1,7,22,15,16,2,39,14,1,1,35,2,3,6}

    11

    Returns: 172

  27. {1,6,39,30,1,5,5,20,1,5,12,3,25,48,2,15,2,18,3,2,23,17,1,1,2,3,37,1,15,13,1,5,8,3,4,36,30,1,1,5,20,19,2,38,47}

    {31,4,38,18,6,9,3,16,9,14,12,1,4,3,46,1,3,8,32,2,17,2,1,9,1,6,1,29,21,5,8,1,4,1,1,5,13,10,5,4,1,1,1,6,38}

    5

    Returns: 391

  28. {7,2,4,8,1,45,1,6,6,1,46,6,45,1,3,15,8,1,10,4,2,3,8,6,31,2,3,2}

    {7,28,17,2,41,2,23,30,5,6,6,30,5,1,49,4,3,22,4,9,1,3,2,16,6,3,44,43}

    2

    Returns: 337

  29. {4,8,6,24,7,3,48,21,11,3,3,6,7,1,1,36,1,5,4,1,2,1,28,8,4,2,9,37,2,3,3,15,23,7,3,4,2,1,1,36,13,4}

    {1,2,6,15,2,34,1,4,26,1,4,2,1,10,6,2,6,14,6,7,11,7,17,1,1,4,41,2,1,5,1,1,21,1,21,6,3,13,27,2,1,1}

    17

    Returns: 161

  30. {7,3,42,41,7,14,5,3,4,2,31,3,3,7,19,24,3,28,11,4,2}

    {4,4,1,3,29,6,1,1,4,1,15,40,1,3,5,30,1,2,1,47,31}

    3

    Returns: 211

  31. {41,2,38,40,5,2,2,7,7,13,1,23,7,8,1,5,14,9,6,4,41}

    {11,26,1,12,40,3,4,26,2,1,30,9,2,42,4,13,6,2,2,2,1}

    2

    Returns: 245

  32. {9,2,42,1,8,3,20,38,3,1,13,2,4,8,45,7,2,1,17,28,5,11,2,28,47,6,20,27,2,36,4,4,15,4,1,12,3,22,1,19,1,34,4,1,2,1,23,29,4,1,25,6,4,31,2,42,10,1,35,32,2,24,2,4,24,2,11,1,1,33,4,1,37,34,5,1,10,6,23,4,1,2,1,12,19,28,38,1,34,8,48,1,40,13,6,24,1,2,3,2,2,14,2,1,8,24,5,6,1,41,37,2,3,24,31,23,7,10,25,7,1,1,2,5,9,12,6,2,1,12,44,28,10,4,3,2,38,9,8,3,4,17,46,4,1,7,46,7,2,1,4,32,2,8,11,4,19,5,25,23,2,2,14,13,44,2,39,32,1,25,19,1,46,41,1,32,22,15,4,37,5,12,2,15,15,4,45,38,33,22,9,17}

    {11,15,5,1,28,5,6,3,1,20,5,2,1,4,2,1,6,1,25,3,1,27,2,14,48,1,1,2,23,1,1,4,2,47,43,27,1,3,2,40,2,1,3,1,41,1,3,1,9,6,17,1,2,2,1,1,48,11,21,20,11,7,7,3,34,1,14,39,38,1,17,18,19,3,6,2,13,10,2,48,16,1,5,20,32,1,26,2,19,17,13,5,45,26,1,33,24,1,2,38,1,5,23,8,3,4,1,1,12,3,5,6,10,1,10,2,3,15,1,10,4,9,2,39,3,2,31,22,24,2,16,4,3,2,4,42,2,2,7,1,7,31,3,4,48,1,1,16,3,20,43,8,42,21,2,4,18,30,10,2,5,5,46,16,2,7,3,2,2,1,12,3,35,1,4,5,43,1,4,2,23,6,1,18,2,5,34,7,11,14,1,42}

    159

    Returns: 1076

  33. {3,39,23,1,3,15,24,5,29,3,4,31,2,11,9,1,14,35,1,16,6,41,29,8,1,3,38,21,32,20,12,27,24,1,2,2,15,1,1,1,4,5,12,26,2,23,9,3,5,5,22,1,8,7,12,20,19,2,14,18,39,1,21,2,2,39,40,16,5,16,2,2,34,2,3,8,36,12,7,8,7,4,1,1,5,2,4,2,32,29,5,4,2,5,16,6,3,49,4,28,7,19,33,2,10,12,8,6,37,4,1,34,1,5,27,3,1,15,3,12,3,38,3,12,2,15,21,49,5,3,1,11,17,2,1,1,1,3,35,1,3,9,4,1,47,1,2,2,6,4,20}

    {34,1,8,1,22,12,10,4,14,7,1,45,5,1,2,14,29,1,23,37,1,49,3,2,11,10,6,27,1,1,7,1,9,1,3,13,36,14,11,28,8,14,32,3,2,15,7,15,14,6,3,5,1,1,3,1,8,2,5,2,12,43,33,6,23,4,4,7,7,26,6,12,1,1,4,1,10,1,41,1,2,47,1,5,2,3,21,9,17,8,34,20,3,32,1,25,9,13,1,22,6,1,39,20,14,3,2,14,7,13,4,19,38,15,2,1,6,11,47,5,3,1,11,43,1,5,10,33,1,4,6,7,3,33,12,7,3,41,20,24,26,1,3,31,3,13,32,44,19,1,6}

    150

    Returns: 809

  34. {23,20,6,12,1,35,5,2,1,1,17,11,2,4,3,1,36,23,6,5,42,13,4,1,8,24,10,10,3,5,7,1,1,4,34,9,16,48,1,35,10,3,4,8,32,8,30,21,32,2,3,4,1,26,4,28,6,7,2,37,4,1,33,16,8,4,7,11,3,11,2,16,4,40,1,1,18,24,25,1,6,23,24,7,2,33,16,14,1,25,44,1,1,38,19,22,13,7,5,5,3,22,23,12,4,8,4,20,1,1,1,33,6,36,3,2,3,1,11,5,2,9,23,6,1,1,4,30,7,23,28,3,24,2,1,15,2,8,48,24,34,27,3,1,11,7,6,2,21,18,18,14,1,26,4,4,2,5,1,1,3,2,20,4,18,8,27,15,2,4,9,1,1,2,3,7,1,2,3,2,15,1,5,10,5,1,11,8,10,16,6,1,4,4,14,45,2,40}

    {20,9,35,41,10,12,1,3,1,2,49,40,15,44,19,8,1,4,31,12,29,33,3,5,26,1,6,25,21,3,8,1,2,13,42,2,8,3,6,4,2,40,2,11,30,2,10,7,1,15,23,33,1,29,13,1,1,4,1,3,2,4,38,3,6,4,1,1,2,12,2,18,1,12,6,2,24,26,6,22,19,7,3,26,1,44,32,1,1,1,45,3,17,27,39,1,19,2,4,43,4,4,13,28,43,29,15,25,46,25,1,24,4,1,1,13,3,12,1,2,2,29,16,1,5,14,12,2,18,30,8,7,21,6,11,1,34,5,5,3,2,47,20,23,43,2,9,2,5,3,1,3,23,3,2,10,1,14,22,6,42,6,1,30,2,1,6,16,2,6,1,38,1,10,9,3,33,1,45,42,16,14,5,2,3,1,7,1,40,4,3,1,25,6,42,5,28,4}

    190

    Returns: 1170

  35. {41,9,1,5,1,6,1,1,32,3,5,12,1,3,12,19,10,5,5,6,1,2,1,4,14,6,1,27,1,18,2,1,2,4,13,1,14,1,7,46,2,38,9,45,1,4,1,2,3,7,6,3,10,11,21,8,2,4,8,15,3,2,5,20,6,1,25,7,1,4,1,1,5,33,21,1,10,24,11,8,3,4,1,22,1,1,1,1,1,23,20,1,36,2,3,9,5,28,4,1,3,40,2,14,15,1,5,1,9,13,1,1,8,2,47,4,7,35,12,24,7,13,2,2,1,5,11,1,20,3,2,39,1,14,8,6,1,13,20,5,2,6,2,44,1,4,1,1,7,34,34,1,1}

    {2,16,4,39,1,39,1,6,10,3,7,2,12,46,47,28,17,6,2,16,2,2,34,2,2,49,12,9,3,35,7,2,1,1,5,44,2,4,11,1,1,11,28,7,10,27,16,13,47,1,3,12,7,2,20,13,39,31,3,6,3,1,1,8,20,4,1,19,9,1,3,22,48,7,1,1,27,1,10,9,8,3,10,27,7,10,21,7,5,3,4,6,9,1,34,4,3,47,19,9,4,15,8,13,28,3,30,1,2,3,26,40,19,4,33,1,36,5,26,27,40,2,37,47,24,32,1,35,1,14,4,1,13,2,34,6,42,1,2,1,3,17,30,14,1,5,1,1,7,37,1,37,6}

    154

    Returns: 716

  36. {3,31,6,10,10,34,43,3,26,7,1,21,30,1,22,7,17,35,2,15,17,8,2,1,1,4,24,12,14,16,1,40,41,7,10,3,23,27,2,12,2,1,45,5,1,1,6,4,36,30,4,3,22,1,23,1,2,1,14,45,8,1,2,11,9,1,6,1,11,4,7,3,38,38,3,1,13,1,1,16,4,1,13,12,4,9,25,38,11,3,16,28,7,40,13,1,38,1,6,9,1,7,21,2,4,1,1,18,1,23,20,49,20,8,32,3,1,9,20,4,2,20,6,2,6,12,2,8,9,36,44,49,2,1,4,15,1,21,8,1,47,38,19,6,7,2,46,1,24,23,31,14,18,1,2,20,20,24,6,8,34,48,18,35,2,28,1,1,1}

    {3,1,5,6,47,41,3,1,8,4,2,41,12,10,3,2,1,3,3,31,26,1,21,10,5,4,1,25,5,11,9,2,1,29,1,15,6,26,2,6,3,19,13,1,32,1,40,33,12,11,37,12,1,36,3,1,2,40,12,14,1,8,23,46,11,42,8,8,5,2,48,26,2,12,6,1,20,10,44,1,2,21,6,6,2,3,14,6,15,1,9,11,29,1,21,1,4,33,4,3,1,5,9,6,2,20,6,1,2,15,26,21,1,2,10,40,13,27,29,11,23,2,20,2,1,6,25,17,1,2,32,2,15,3,3,1,3,3,13,28,11,8,40,5,4,6,17,9,2,10,17,5,5,24,3,1,19,6,5,3,10,1,1,15,1,2,8,2,4}

    157

    Returns: 920

  37. {27,1,1,13,1,1,1,4,31,8,22,11,7,2,6,8,42,48,1,5,17,8,11,19,48,1,13,1,45,17,1,2,7,2,25,13,7,9,2,17,16,14,22,2,35,1,13,42,6,11,26,5,2,2,14,47,1,17,1,5,32,3,17,17,16,11,6,4,11,10,1,9,22,45,3,8,2,28,39,33,18,36,4,6,32,28,7,3,1,26,19,31,3,15,9,2,10,45,25,1,6,24,2,2,7,2,19,9,2,1,9,47,8,1,13,1,16,30,11,5,8,45,24,1,15,35,1,1,5,10,8,2,4,2,2,34,46,27,1,9,17,1,1,1,5,4,6,49,5,21,4,3,1,41,5,16,5,23,9,1,1,8,1,28,14,1,15,5,4,15,19,1,3,6,8,7,2,35,3,3,5,1,2,2,1,7,15,8,24,6,1,3,37,31,1,1,48,18}

    {1,42,6,18,10,2,29,29,3,2,5,6,25,8,15,1,20,5,9,4,1,8,1,1,3,5,9,1,33,9,2,3,16,40,4,2,16,9,38,5,47,13,2,40,2,21,7,1,11,7,1,5,32,8,1,11,2,13,38,2,4,2,2,25,22,14,19,36,29,1,7,3,24,11,6,2,47,33,27,10,34,24,3,1,1,25,1,16,1,2,39,2,1,9,17,6,22,22,43,37,8,3,24,34,28,2,2,3,1,28,4,39,4,2,3,1,6,1,1,6,12,7,38,2,1,7,38,2,5,1,14,3,1,8,2,4,1,11,3,1,1,7,17,1,20,23,23,24,36,48,28,14,45,1,4,1,6,25,2,13,1,3,18,3,4,2,38,21,1,2,2,3,5,4,9,42,3,8,38,16,36,1,1,9,32,1,30,12,23,4,5,37,6,3,1,11,1,21}

    154

    Returns: 1120

  38. {3,32,34,4,27,1,10,13,4,2,21,6,7,1,35,2,26,47,5,40,13,5,20,1,10,9,3,1,34,1,1,43,16,1,16,10,12,2,3,43,39,14,12,8,2,4,1,32,1,12,42,1,11,1,19,19,33,31,22,3,31,40,2,27,4,1,9,2,4,31,45,2,2,2,15,42,7,34,37,1,14,1,35,1,10,1,6,30,10,31,43,1,8,1,8,3,4,12,1,42,2,19,5,27,40,1,1,15,2,45,3,44,27,12,4,4,7,1,2,29,6,13,1,10,26,3,42,1,3,1,3,11,32,20,3,1,5,2,10,1,13,3,28,5,49,26,5,1,1,22,1,11,20,3,8,25,32,9,3,26,5,5,22,10,3,4,2,12,2,4,1,21,1,1,1,30,3,15,2,2,5,2,1,8,2,11,14,12,4,41,3,6,12,3,4,2}

    {3,2,29,6,43,3,30,1,35,1,12,3,41,2,3,2,7,47,12,30,9,3,2,23,24,1,2,6,2,2,17,1,22,1,2,10,2,2,34,44,3,1,23,2,14,4,1,11,18,1,15,2,3,2,11,3,5,1,1,2,5,1,1,8,9,1,5,1,1,44,1,42,26,9,1,1,18,10,8,3,3,7,19,7,7,1,2,1,34,15,5,3,6,11,7,3,7,47,15,2,2,14,45,1,1,2,1,4,32,12,1,9,5,1,29,18,30,2,24,9,19,42,1,4,20,3,2,2,11,1,2,39,6,1,11,48,26,4,3,22,25,17,1,27,30,44,29,11,4,5,9,1,12,6,11,10,5,7,9,14,16,25,25,1,26,1,3,18,4,2,20,1,19,5,3,3,4,5,34,47,20,22,41,1,1,36,10,2,48,1,16,13,1,3,6,37}

    184

    Returns: 1049

  39. {16,15,6,36,2,2,2,19,2,1,14,2,2,10,9,25,1,16,16,43,1,18,3,11,22,33,3,7,2,7,23,27,8,1,40,1,47,46,3,2,24,2,11,26,3,2,2,7,2,12,22,3,17,4,43,27,9,2,1,41,3,8,4,1,43,19,19,18,3,16,27,9,36,28,6,27,25,1,5,3,27,2,3,2,4,3,7,1,3,2,1,14,21,9,20,1,18,39,17,33,14,3,1,5,6,1,15,5,8,2,39,8,2,39,5,40,2,5,3,12,47,2,1,6,16,10,3,17,3,1,3,2,5,5,13,3,17,33,13,45,29,2,4,37,3,11,5,10,2,1,16}

    {1,5,6,30,2,7,1,2,29,1,1,11,2,1,1,5,1,12,20,37,6,34,21,5,4,11,16,26,4,7,3,30,16,1,2,11,5,33,1,1,3,10,1,25,1,34,2,1,1,15,12,7,6,22,4,2,1,18,1,1,43,2,1,7,1,1,36,2,12,2,1,1,1,23,1,12,20,2,1,9,2,33,6,10,42,1,4,2,1,29,18,25,28,1,3,13,1,39,10,1,43,6,24,2,20,16,36,2,47,7,20,1,1,46,3,5,16,48,4,18,8,3,22,6,7,14,27,5,12,1,5,2,42,8,1,20,8,12,2,2,24,5,14,2,13,37,17,4,37,7,17}

    151

    Returns: 880

  40. {1,36,23,5,5,22,6,15,20,31,6,1,49,7,2,14,44,17,42,14,3,6,1,8,15,1,4,36,8,6,5,2,19,1,17,2,2,28,2,13,6,6,1,34,2,1,3,1,48,13,3,24,4,6,19,2,2,7,6,2,1,1,5,14,1,2,32,18,2,14,1,22,3,18,2,16,34,13,2,6,1,14,3,1,6,16,39,1,16,31,38,28,1,5,2,8,1,3,12,4,19,2,5,2,6,2,2,9,3,3,1,5,6,4,2,32,2,10,2,3,1,1,1,34,2,3,36,7,11,17,2,9,4,1,1,9,5,48,41,9,1,2,45,1,2,4,19,6,30,10,19,6,5,10,20,2,5,5,8,2,2,1,2,45,2,2,1,1,3,3,29,43,1}

    {40,22,5,18,5,1,3,2,2,42,30,18,2,3,23,8,8,8,9,7,23,3,2,7,27,3,1,12,11,2,2,1,9,5,13,39,40,1,1,1,2,1,7,6,1,29,6,11,3,20,3,6,2,1,6,5,22,15,37,39,4,26,7,1,3,19,1,4,16,16,3,34,3,23,2,2,45,43,1,5,9,9,42,4,36,2,1,2,17,11,1,2,26,6,4,4,22,19,12,1,29,9,17,23,10,27,4,10,1,16,28,4,4,3,12,4,16,3,1,7,1,1,1,32,6,2,9,1,6,2,35,6,1,32,1,2,30,2,3,1,1,6,15,3,24,44,15,7,26,46,1,1,3,3,13,28,1,7,5,2,5,13,18,12,2,24,1,2,15,44,11,6,3}

    168

    Returns: 826

  41. {1,9,1,1,1,14,2,23,2,43,6,2,37,12,13,1,7,1,33,3,10,8,3,14,1,37,32,6,40,23,2,1,28,2,20,3,5,9,10,27,5,10,1,26,4,1,13,1,1,16,23,2,1,5,5,19,3,7,3,39,3,16,6,1,22,5,6,5,1,31,5,1,2,8,10,8,40,8,3,17,2,6,13,4,7,1,1,19,1,5,7,20,13,17,1,2,2,6,3,4,25,5,16,1,2,1,25,4,15,19,1,22,2,6,41,10,1,21,8,45,20,1,9,9,21,1,29,21,3,1,2,12,28,37,49,1,3,10,1,8,14,21,5,1,33,7,4,6,37,6,36,9,10,5,8,33,9,2,1,1,7,27,15,48,2,1}

    {9,1,8,13,26,12,4,10,3,3,28,3,3,48,11,32,1,33,16,3,16,34,22,9,9,6,13,15,32,9,5,2,42,1,23,6,1,6,8,19,7,15,40,32,1,1,2,1,11,30,8,1,2,1,1,1,7,2,30,3,14,3,1,5,7,35,18,1,3,36,7,2,32,3,32,4,24,18,47,1,2,21,13,9,1,1,2,1,3,21,12,12,35,5,15,2,6,22,8,1,33,39,4,19,11,9,1,41,24,1,6,2,1,3,9,5,1,2,7,1,10,12,17,17,4,2,1,1,1,22,38,18,42,1,12,31,3,18,1,22,4,48,7,3,1,9,1,1,1,1,13,40,33,16,7,4,4,3,24,1,1,40,11,1,7,2}

    153

    Returns: 920

  42. {15,48,9,25,13,6,33,1,13,40,22,45,31,1,16,2,45,11,6,7,3,13,1,10,6,38,29,3,2,2,3,47,1,7,1,2,2,1,20,3,48,5,7,1,28,2,3,9,30,47,33,1,7,11,1,29,2,42,2,13,7,2,1,9,19,32,2,5,4,19,31,10,12,40,8,2,1,1,1,9,1,28,1,45,13,3,3,7,12,26,20,5,11,38,39,10,29,37,7,3,1,4,4,5,15,3,20,6,1,9,15,13,7,12,6,11,38,30,25,32,45,4,3,13,1,5,18,15,2,4,42,8,1,6,14,5,2,35,1,27,5,3,3,15,1,1,1,3,21,39,12,6,19,41,1,4,33,36,13,2,28,3,7,5,14,3,15,18,4,4,3,41,30,1,5,1,2,12,22,41,29,45,34,2,1,4,5,23,11,38,12,5,1,4,2,17,1,24}

    {2,20,1,7,22,26,7,28,38,1,8,23,6,5,2,2,6,21,4,1,1,1,5,14,1,31,1,7,1,33,9,4,11,1,16,12,25,10,8,3,1,1,31,2,1,15,8,29,21,1,5,5,7,5,2,17,6,1,16,40,16,6,18,1,24,1,5,1,2,4,19,6,2,23,17,7,34,3,1,1,17,3,13,2,2,10,6,33,30,1,24,3,33,30,39,4,4,4,1,7,19,20,4,2,14,1,29,11,1,6,4,49,1,23,1,11,16,22,1,3,1,10,1,1,4,2,4,4,1,43,3,20,5,1,3,35,3,1,6,5,1,20,5,2,4,6,34,6,38,2,5,45,39,1,7,1,2,6,10,1,3,1,30,2,5,1,2,7,1,46,12,7,13,23,2,37,24,10,2,3,1,28,8,2,48,10,3,39,1,2,13,24,4,13,1,22,19,11}

    171

    Returns: 1060

  43. {4,17,24,1,4,8,5,7,3,3,8,3,6,8,1,12,25,18,4,6,19,21,3,41,8,4,33,5,19,21,9,10,37,1,30,7,14,2,44,23,3,1,1,22,3,6,12,4,26,6,29,17,3,22,20,4,2,11,10,3,3,3,24,4,22,8,1,11,6,4,12,1,3,6,9,12,42,20,42,4,16,3,10,5,1,31,1,1,1,27,7,21,23,1,1,5,3,19,20,17,25,2,2,35,35,13,1,7,27,4,4,1,4,28,7,38,1,4,26,2,8,17,3,2,30,15,22,4,40,3,6,7,2,1,4,49,8,3,28,6,7,1,10,1,1,39,8,3,11,27,8,1,2,12,47,3,27,11,11,35,22,3,3,4,4,4,2,2,1,5,32,26,1,2,8,28,19,9,4,45,7,2,1}

    {6,5,4,24,8,28,23,13,2,25,10,24,1,4,6,38,13,5,46,3,4,27,16,21,6,11,6,1,1,17,26,44,2,8,1,18,1,1,30,16,5,16,2,7,2,31,2,16,24,29,3,1,8,30,9,22,16,1,15,2,18,1,30,5,4,2,3,42,3,26,1,40,3,33,1,4,27,10,5,25,17,9,2,1,2,2,10,29,14,26,6,43,38,38,1,24,19,9,1,13,19,1,5,16,6,15,5,29,1,1,9,3,12,19,11,11,3,8,1,43,1,2,7,20,1,31,24,2,2,3,48,2,19,5,4,14,4,34,7,33,4,35,47,2,30,2,8,6,3,1,30,1,21,1,3,34,20,1,47,34,2,19,2,4,49,2,6,1,1,6,10,4,8,13,1,33,24,3,45,42,3,2,1}

    163

    Returns: 1115

  44. {32,14,26,5,10,18,35,6,9,2,37,26,1,3,16,22,10,8,27,6,15,3,40,3,10,4,1,7,45,9,9,3,36,1,1,24,1,1,15,39,1,13,6,1,26,19,1,2,23,25,1,1,29,1,24,2,8,2,34,8,10,6,1,5,23,1,28,2,4,6,3,22,4,6,9,45,1,15,42,6,9,39,22,1,5,13,1,4,44,42,2,1,1,29,2,23,6,12,1,1,3,28,11,3,12,18,38,5,5,7,46,21,1,24,2,2,7,3,1,2,18,19,9,16,2,18,5,7,1,1,48,4,6,1,24,1,4,28,1,6,11,2,15,2,43,12,11,2,5,13,2,26,48,3,6,34,4,42,2,3,22,1,12,1,1,5,2,7,1,1,2,1,2,12,17,11,1,34,6,5,13,6,47,29,3,1,14,6,1,16,11,13,11,1,6}

    {1,1,32,9,4,3,1,1,1,6,1,26,1,3,13,35,5,14,1,3,18,2,4,2,3,1,1,1,1,13,32,15,25,48,29,20,37,17,1,13,4,28,12,2,4,1,1,1,1,4,1,23,10,5,2,41,1,2,3,21,15,1,7,29,1,3,3,40,1,14,3,3,6,2,35,2,5,4,2,1,3,8,24,6,15,1,1,1,2,7,1,5,10,9,32,8,1,7,10,49,20,11,34,24,2,8,11,1,22,1,1,36,18,9,2,11,32,1,24,2,19,49,8,30,4,34,13,3,3,7,2,14,19,7,35,8,26,1,4,33,15,20,21,17,24,11,4,1,8,6,2,19,5,1,1,1,36,4,13,2,10,2,3,35,8,3,4,8,40,7,5,6,8,5,2,7,37,17,34,4,9,6,14,37,12,10,15,45,25,2,9,1,6,6,24}

    162

    Returns: 1002

  45. {2,7,3,3,1,10,4,13,25,39,1,3,6,3,26,21,8,13,24,39,17,3,3,6,1,26,44,2,2,2,23,10,12,40,7,6,31,10,1,5,8,21,5,4,16,31,1,6,2,3,1,24,6,2,11,1,17,20,1,3,1,7,1,11,8,16,1,15,2,7,48,7,5,11,17,4,7,16,7,2,8,2,11,29,1,20,31,36,8,1,1,1,3,7,9,13,4,1,3,2,6,5,21,2,6,10,43,28,8,1,3,41,26,15,1,1,41,41,1,6,14,2,3,11,29,2,38,36,37,27,49,23,26,18,1,7,16,1,25,1,10,45,17,4,17,28,20,17,21,26,2,15,9,42,35,29,4,2,1,4,3,16,18,4,10,1,1,32,6,5,12,4,2,32,3,4}

    {9,5,5,14,43,23,16,11,1,14,2,2,3,2,44,5,12,1,1,1,28,25,2,11,35,15,6,1,43,38,12,1,36,6,3,1,24,2,3,6,3,4,1,1,3,8,2,25,12,1,2,6,21,2,15,4,14,28,5,49,5,1,3,19,3,11,1,3,40,1,47,5,2,2,2,35,1,2,3,36,6,7,1,1,1,1,20,33,1,9,5,2,44,32,37,1,4,2,1,32,23,25,1,11,2,2,45,1,27,2,8,1,1,16,1,1,11,23,3,1,47,4,1,2,4,1,23,1,2,1,4,1,8,14,1,47,21,17,2,24,2,7,1,4,5,46,1,1,9,8,33,1,23,30,6,28,27,11,2,7,12,3,28,3,1,1,20,37,27,8,45,3,4,4,2,12}

    161

    Returns: 1011

  46. {12,38,6,3,3,1,22,3,1,12,6,5,36,1,6,2,2,1,4,6,41,25,1,17,8,43,11,22,31,8,11,4,1,9,17,4,37,1,2,4,3,1,7,5,6,2,2,1,32,1,2,35,43,44,11,7,5,11,9,37,6,1,7,4,8,1,3,2,24,4,23,1,27,2,3,12,9,17,5,3,9,11,36,1,19,13,11,5,5,20,32,3,39,6,42,5,4,19,27,6,12,10,17,1,3,7,3,1,39,10,4,3,35,1,2,3,1,15,9,11,13,4,3,1,35,15,26,13,2,46,8,1,1,11,25,20,13,2,3,7,28,5,25,1,14,24,1,2,1,30,39,15,3,13,3,48,5,1,1,35,1,1,1,23,10,12,5,40,6,2,38,2,19,1,1,20,9,7,41,1,11,47,1}

    {7,2,5,4,14,10,10,6,1,1,41,12,2,29,1,6,23,1,2,6,10,2,1,1,1,1,3,5,6,47,39,2,3,1,6,4,2,18,10,18,12,1,32,26,2,3,43,3,29,15,18,36,16,1,6,3,9,15,3,29,2,4,1,1,1,3,1,2,3,9,15,15,2,11,1,1,49,3,2,1,5,16,2,2,37,33,1,9,31,6,17,2,14,27,1,9,11,2,1,22,1,25,1,3,4,3,18,3,14,11,12,46,11,3,17,17,2,6,16,13,1,8,16,1,5,22,4,21,19,42,2,45,1,47,1,41,41,1,3,34,34,11,31,3,1,9,19,1,3,46,7,1,10,2,1,1,3,1,20,1,1,2,1,1,2,4,2,22,1,20,1,5,1,46,12,2,7,2,1,4,2,46,2}

    159

    Returns: 956

  47. {4,1,2,30,4,1,2,10,4,3,7,9,1,3,1,10,2,1,38,3,13,22,48,4,4,4,1,9,11,30,1,12,7,37,24,4,32,32,7,3,1,4,28,1,1,4,32,9,4,6,1,1,7,1,3,17,18,12,22,4,17,8,1,22,4,2,18,41,3,26,7,48,4,26,45,2,1,3,10,1,4,13,15,3,10,8,10,3,2,9,8,38,7,25,13,7,2,4,1,21,11,2,2,20,1}

    {22,3,2,41,26,29,9,24,6,3,9,1,7,32,1,36,6,5,15,16,7,18,43,49,4,2,13,1,7,22,11,10,6,3,16,1,16,2,2,3,28,1,1,18,1,9,4,1,4,17,2,1,9,46,29,1,6,1,2,1,49,1,4,7,7,4,5,1,1,11,9,3,2,10,3,35,4,3,1,25,27,21,8,34,1,24,1,3,14,7,4,24,8,8,12,1,1,16,12,1,2,1,1,15,30}

    28

    Returns: 581

  48. {2,10,15,8,48,19,7,3,25,7,5,9,49,20,20,1,6,20,1,11,2,1,1,12,17,16,1,6,1,2,23,20,16,13,10,1,10,1,20,1,16,5,22,26,7,11,6,1,1,3,14,9,32,3,8,8,11,15,17,5,12,7,1,2,43,2,6,4,1,26,1,3,15,10,1,1,1,27,7,41,7,17,37,1,1,35,6,9,30,19,46,34,1,3,2,2,16,4,5,29,8,1,19,2,3,37,42,3,7,1,1,22,1,28,1,13,48,9,8,6,2}

    {2,2,17,2,11,10,23,1,44,4,3,1,1,1,1,6,1,5,2,10,43,8,1,1,2,23,14,6,18,40,17,23,32,3,6,38,42,3,17,10,5,49,4,1,4,6,32,1,10,13,31,4,9,3,4,2,7,3,15,27,2,8,16,31,2,37,4,1,1,10,1,21,3,7,2,21,3,6,24,18,2,1,9,36,30,1,1,24,47,8,47,3,7,11,27,16,42,15,16,25,2,12,22,32,9,1,16,7,3,6,3,12,1,27,4,21,17,16,33,23,28}

    53

    Returns: 731

  49. {1,33,2,2,37,40,13,19,19,2,8,15,36,31,26,2,24,18,47,5,2,3,10,25,14,22,1,5,20,3,38,31,2,11,26,9,2,1,5,1,11,4,12,14,7,1,9,34,18,10,27,3,1,44,1,19,20,31,26,27,4}

    {11,8,12,24,2,19,21,2,21,18,3,3,1,4,2,1,16,42,18,22,27,1,4,16,38,20,44,27,19,35,4,2,45,1,5,48,3,5,10,3,12,7,22,5,4,21,28,13,48,6,6,6,4,43,20,31,10,15,17,12,6}

    1

    Returns: 966

  50. {18,1,17,35,3,35,5,15,2,22,3,2,3,3,9,3,21,2,1,1,15,2,5,3,1,1,3,4,11,34,3,3,11,9,10,4,16,1,15,2,15,18,19,40,5,3,3,1,4,4,5,3,28,3,45,5,3,4,1,3,9,6,4,24,6,35,17,1,32,49,12,15,2,13,5,3,1,2,24,2,41,1,1,1,28,1,1,1,17,40,30,24,16,2,39,4,3,2,13,5,4,1,1,17,7,1,3,1,2,15,15,10,3,44,7,3,1,3,1,38,1,32,49,15,5,9,10,32,5,4,24,2,10,48,13,41,24,15,26,31,40,48,36,10,1,9,30,15,1,16,33,2,21,15}

    {1,10,2,2,5,3,43,5,13,14,6,28,4,43,13,8,1,4,42,12,48,1,48,7,34,1,8,23,14,2,3,11,48,2,12,6,7,2,11,19,5,7,20,1,2,33,6,7,2,8,21,6,19,32,5,2,20,2,34,16,6,31,1,36,6,1,6,31,2,25,1,27,2,27,6,8,4,10,2,5,1,7,36,1,9,3,8,12,2,29,17,2,7,45,1,8,1,45,10,1,18,4,1,8,39,5,11,2,24,16,9,1,34,35,4,3,1,17,28,41,25,43,2,31,5,22,2,5,22,33,29,10,1,48,3,6,1,33,2,4,31,2,33,22,4,4,3,1,23,1,12,13,6,7}

    1

    Returns: 2131

  51. {2,48,20,26,4,34,21,1,3,4,20,3,2,1,3,14,30,5,5,9,12,4,16,36,5,10,2,8,6,9,1,10,1,1,2,38,1,1,5,11,9,2,3,1,3,7,1,24,23,1,48,13,44,4,5,8,2,42,7,8,3,13,23,12,24,18,7,4,14,29,35,1,15,6,3,4,32,20,1,1,7,1,6,1,9,4,2,13}

    {22,1,1,11,6,2,1,3,2,1,1,6,26,3,3,16,19,7,5,2,2,11,6,10,3,3,25,44,11,2,14,14,1,9,2,1,19,9,13,2,7,8,1,7,11,12,2,27,11,44,1,1,1,2,8,10,28,6,9,4,7,14,10,18,26,11,3,6,23,5,8,14,39,4,2,7,1,1,2,42,17,45,15,23,3,35,11,2}

    2

    Returns: 951

  52. {1,15,5,1,1,5,9,4,20,4,7,7,1,5,20,1,37,6,13,6,11,2,3,1,21,8,28,1,7,2,1,1,6,31,4,6,1,17,19,9,42,21,8,6,1,3,11,23,39,14,42,3,36,15,1,1,37,16,5,18,3,3,1,10,2,23,3,42,1,20,7,38,43,7,24,2,4,5,26,1,40,1,17,5,4,1,19,8,22,23,20,12,16,11,4,1,41,10,11,3,13,18,3,2,10,25,11,1,6,8,1,11,20,3,46,18,11,4,4,27,3,28,22,26,6,2,16,9,28,5,5,2,1,14,16,2,1,31,30,6,1,18,28,32,3,6,3,3,7,10,43,1,1,6,36,6,28,1,42,8,14,26,3,13,3,20,1,8,9,1,47,34,17,6,9,20,2,19,34,7,37,19,3}

    {10,1,2,29,11,32,2,6,3,2,3,18,10,3,3,1,1,1,15,1,5,23,10,14,4,17,18,5,38,1,1,1,47,28,12,16,3,6,21,36,6,28,1,4,5,12,1,1,8,20,35,34,4,1,16,28,12,1,22,28,1,7,15,19,26,7,1,29,13,4,12,2,4,3,4,13,2,1,6,6,5,6,16,5,2,8,2,38,4,41,1,40,25,4,2,1,5,3,7,1,11,9,17,42,15,4,30,3,48,47,5,3,11,1,31,2,26,21,14,25,33,1,2,3,9,2,20,17,23,3,3,11,1,6,7,23,21,45,15,25,1,1,2,45,13,12,26,1,2,1,20,2,1,2,7,1,1,15,1,7,10,2,20,8,1,3,1,25,15,12,3,38,10,5,10,7,36,1,12,3,8,30,3}

    41

    Returns: 1264

  53. {39,17,2,3,14,8,7,1,19,3,16,5,6,40,37,5,1,3,1,15,2,3,2,12,21,6,3,1,10,48,4,4,19,2,3,45,21,2,10,7,3,1,36,49,34,28,49,32,4,2,10,1,21,8,2,46,1,2,6,6,3,1,1,2,15,1,9,11,6,27,21,39,3,3,1,5,43,5,24,17,4,1,25,9,4,6,10,15,9,1,18,1,1,5,1,2,10,1,15,8,4,26,3,2,9,9,3,41,20,6,15,45,5,34,1,3,6,42,30,4,1,4,3,1,5,47,39,3,17,12,3,1,4,5,4,45,1,28,6,1,1,1,9,5,1,1,30,4}

    {2,1,44,1,3,45,3,7,3,1,3,1,1,12,11,5,6,48,11,8,10,46,1,2,46,12,32,6,14,38,14,34,4,1,36,2,7,3,46,48,23,1,4,16,35,10,19,22,15,4,7,5,3,7,19,7,2,2,8,1,1,7,22,2,1,4,12,44,15,1,34,39,23,2,4,23,14,42,2,5,13,12,1,19,10,12,1,4,36,2,33,10,2,8,5,17,21,9,18,43,30,3,10,46,12,3,34,1,34,2,28,6,1,16,12,1,4,7,17,3,40,22,6,10,17,36,2,16,11,1,3,3,4,1,33,16,1,28,40,9,16,12,1,8,13,44,7,10}

    15

    Returns: 1254

  54. {1,1,28,6,13,14,3,2,7,14,11,10,10,2,12,3,11,15,5,22,11,1,48,29,10,1,3,6,1,1,1,19,36,1,3,1,1,9,2,24,39,5,11,6,8,4,20,4,7,31,17,3,31,13,5,1,14,2,1,4,20,5,2,11,7,3,15,18,1,15,3,39,49,28,2,2,1,23,21,10,1,41,43,4,1,11,8,4,15,3,5,4,1,9,2,25,1,3,26,16,2,15,41,8,1,38,1,7,5,5,1,19,4,11,8,37,2,11,18,4,1,12,24,1,10,44,1,30,8,16,19,9,11,31,3,5,12,1,6,18,3,31,25,23,32}

    {22,2,5,3,48,5,4,8,4,26,16,2,1,1,18,27,4,1,1,1,20,2,22,6,3,2,25,10,40,1,13,5,5,1,5,42,7,1,4,23,1,3,49,2,5,5,19,3,1,2,5,39,11,31,2,44,42,4,39,32,1,8,12,11,1,2,1,2,27,10,27,2,3,14,10,3,17,3,5,35,23,32,12,5,13,29,7,3,2,3,2,14,7,11,40,2,10,24,1,31,1,37,2,4,6,39,43,26,3,8,1,2,1,3,2,4,33,18,3,2,2,3,1,5,14,10,3,1,17,18,15,1,6,5,10,11,26,10,2,6,1,1,3,26,2}

    2

    Returns: 1704

  55. {29,4,1,7,26,29,23,7,3,1,3,1,10,28,26,1,9,11,1,12,3,12,3,3,4,3,29,3,33,1,2,33,7,29,10,2,6,1,1,10,14,10,4,5,2,1,3,5,20,7,19,9,8,1,15,5,46,1,1,3,13,40,1,3,23,5,26,28,1,5,2,19,6,4,9,3,30,2,2,4,30,48,4,2,14,29,21,3,42,2,45,21,7,24,20,34,21,10,13,3,2,13,2,5,1,21,11,7,41,3,5,3,39,5,2}

    {1,22,2,44,3,38,3,13,1,18,17,29,7,1,37,47,1,14,32,9,19,2,33,49,38,44,11,36,1,1,45,33,1,16,5,13,1,9,1,4,22,14,24,2,1,10,14,49,1,1,1,6,1,1,1,12,1,4,1,1,1,7,27,3,13,4,1,34,6,4,9,1,1,1,7,17,12,41,3,1,11,8,5,12,4,5,12,22,47,3,32,6,14,20,2,7,9,2,1,2,7,7,39,2,17,1,36,1,1,34,22,11,1,6,1}

    1

    Returns: 1602

  56. {39,14,5,3,9,3,3,1,1,12,1,1,17,23,3,11,1,1,5,1,14,22,2,19,6,13,22,7,8,47,30,2,16,12,47,23,10,19,6,21,23,12,2,1,3,2,6,8,1,3,11,1,3,21,11,3,15,10,34,10,49,2,3,2,5,1,8,40,9,2,34,16,2,1,1,8,20,39,2,1,34,20,1,3,10,1,20,2,12,7,3,10,2,32,35,1,2,16,34,21,3,1,1}

    {8,3,1,1,4,1,5,12,4,9,6,6,2,4,34,3,1,10,5,11,8,1,2,1,32,11,18,3,10,2,16,6,1,3,8,1,3,5,20,2,11,2,10,40,1,26,24,3,1,19,6,1,44,1,10,3,8,5,43,9,1,15,31,2,1,14,2,19,1,21,2,2,1,34,2,11,7,12,2,41,39,3,18,1,5,11,11,3,24,20,1,25,10,5,1,2,48,11,2,49,1,2,1}

    19

    Returns: 608

  57. {1,2,4,21,27,9,3,1,37,22,3,15,2,3,13,6,25,29,1,8,1,7,26,26,14,1,3,11,4,1,1,3,27,27,1,6,5,22,21,1,1,5,1,1,7,3,4,4,3,2,11,2,1,30,15,12,20,19,1,36,4,3,1,34,1,1,47,9,27,1,3,2,9,6,4,6,2,20,17,1,43,16,14,1,7,46,7,48,20,19,2,1,10,3,41,2,4,5,18,9,9,8,2,2,10,41,17,4,8,28,5,1,1,31,33,1,1,1,27,1,4,4,14,3,1,8,1,3,7,11,1,14,3,1,23}

    {7,1,6,38,4,1,24,47,4,3,3,1,10,1,16,3,1,1,17,32,2,14,4,18,13,10,2,15,17,2,9,7,3,1,2,48,7,9,3,2,27,24,4,2,5,10,5,2,1,2,15,1,6,6,19,8,30,18,4,4,38,17,11,1,1,4,1,24,2,1,13,11,7,9,4,22,1,1,3,2,2,3,2,2,1,3,19,25,4,32,15,22,1,6,12,2,13,4,36,25,9,17,3,32,2,1,2,3,11,5,12,4,3,2,8,13,26,13,6,7,6,7,4,4,1,16,17,23,31,2,3,26,3,37,25}

    13

    Returns: 907

  58. {4,36,38,19,11,1,1,2,4,24,12,1,1,1,1,34,4,24,35,42,49,12,4,2,1,2,9,1,1,4,9,5,2,1,4,18,46,6,1,18,1,9,5,8,35,24,27,3,49,45,2,1,25,46,28,1,15,33,15,2,2,4,6,4,4,7,34,22,1,1,1,9,9,1,10,2,9,43,1,40,19,32,8,8,10,10,3,40,4,37,6,20,5,1,5,21,18,6,2,18,2,2,5,1,8,3,1,5,3,42,26,6,43,5,15,10,8,8,5,24,4,1,8,14,4,3,1,23,1,8,18,2,1,3,44,1,35,27,6,2,26,2,1,8,21,1,11,14,5,1,18,3,5,1,1,4}

    {2,2,11,20,14,16,7,1,1,2,6,1,11,6,4,7,42,45,7,8,7,2,5,1,37,6,25,30,4,13,25,8,44,16,38,49,2,2,5,5,12,7,6,5,2,21,7,1,27,47,5,11,19,3,11,24,6,1,5,5,24,2,17,3,23,16,1,6,8,6,4,35,15,1,2,6,4,1,3,49,11,6,16,28,26,21,1,34,10,12,38,41,29,6,34,3,16,1,7,7,14,1,10,11,19,1,5,2,2,35,1,15,5,1,22,21,4,40,6,30,8,5,28,33,1,25,1,2,22,1,9,1,1,7,16,1,19,16,6,23,2,3,4,10,2,23,3,1,27,39,24,49,15,4,11,8}

    2

    Returns: 1935

  59. {4,17,4,1,2,2,15,15,1,7,4,33,2,5,1,14,37,1,3,4,4,19,8,1,11,1,26,16,1,37,11,3,20,38,43,2,40,25,10,17,47,32,3,1,5,4,6,10,37,9,1,6,1,16,20,40,1,2,3,11,4,1,22,1,2,1,20,3,6,33,2,1}

    {16,1,11,20,18,2,6,3,2,3,13,1,12,2,5,1,1,38,3,8,15,16,8,4,34,1,9,4,2,15,24,1,3,47,18,1,33,30,3,16,27,12,34,27,6,28,3,49,13,47,2,1,3,35,3,4,6,27,26,13,4,46,12,11,8,5,44,2,6,21,9,11}

    1

    Returns: 1042

  60. {11,2,36,2,48,26,1,4,43,1,9,20,45,13,3,10,7,8,3,1,2,1,5,10,3,25,35,2,1,3,7,26,1,16,2,40,4,12,28,7,8,1,6,44,9,10,24,1,20,24,14,29,2,1,17,3,29,44,6,15,1,22,1,19,32,5,30,1,3,1,1,9,1,44,26,2,1,12,4,15,3,1,3,1,1,4,18,4,2,1,46,24,3,1,43,2,8,48,4,27,2,31,1,6,3,1,16,44,10,25,1,14,25,10,3,21,4,6,1,26,20,40,4,7,19,40,2,24,2,1,14,1,7,2,5,3,8,8,4,1,3,15,8,25,2,30,19,1,8,29,41,12,24,1,8,2,1,4,20,5,7,12,4,1,2,6}

    {2,11,2,5,32,41,5,23,43,6,28,48,1,1,2,1,29,20,1,2,20,14,22,1,1,49,30,7,37,3,2,23,2,1,19,1,5,44,31,31,34,3,1,17,5,18,2,1,24,34,1,2,1,1,6,46,4,6,4,1,1,9,2,9,2,1,1,1,17,1,1,22,5,1,5,11,1,16,42,31,1,34,1,39,10,10,2,1,40,2,2,10,33,40,1,23,8,28,1,1,1,1,4,35,33,3,26,20,3,4,1,4,2,19,1,21,3,44,5,1,1,5,14,32,13,40,1,2,1,23,9,1,1,3,9,8,14,13,1,36,10,6,49,3,6,1,20,2,12,12,1,2,14,1,14,3,8,10,21,22,2,1,1,13,22,3}

    56

    Returns: 956

  61. {4,1,22,12,4,10,12,3,3,2,26,38,8,11,19,1,10,1,2,24,22,4,25,4,1,20,11,4,1,46,7,16,8,12,4,4,2,1,2,9,4,2,2,2,5,9,1,40,45,1,38,12,11,38,8,4,21,15,32,1,47,11,16,39,3,33,2,8,15,14,4,11,16,11,1,5,36,8,1,13,1,1,8,5,3,2,38,1,2,6,19,5,39,26,8,10,1,2,2,11,20,2,6,3,8,2,27,17,7,2,10,33,31,3,15,18,1,13,1,19,25,3,33,1,4,6,3,5}

    {28,42,46,4,42,2,1,48,2,29,40,44,1,1,5,20,8,8,7,2,32,2,1,48,2,8,38,28,22,40,23,20,17,30,8,1,4,9,3,14,40,15,34,20,11,1,7,1,25,5,17,7,4,5,1,26,3,2,36,13,23,6,2,16,31,1,7,44,44,4,1,1,1,20,16,20,19,26,5,2,1,10,41,2,12,32,23,1,11,23,26,25,24,12,2,19,6,30,1,3,3,6,1,3,4,4,1,14,2,42,5,1,46,30,18,1,2,11,40,48,7,17,39,1,1,2,10,1}

    3

    Returns: 1574

  62. {27,23,14,2,1,16,38,3,34,4,34,1,3,2,11,6,2,17,2,1,32,14,12,1,13,3,9,1,7,3,10,1,12,3,19,3,1,26,1,1,20,9,32,1,5,1,3,24,2,6,1,8,15,6,19,2,17,3,5,1,29,4,1,18,3,25,1,2,1,4,13,23,33,12,2,1,1,1,1,2,3,4,16,11,10,6,11,1,3,7,25,3,1,8,1,21,3,49,12,18,42,49,15,3,35,3,8,21,7,10,7,21,6,8,1,7,43,6,24,4,10,1,1,6,2,26,1,5,7,23,1,47,33,4,17,8,1,5,34,2,2,1,1,1,3,1,8,1,1,36,2,6,22,25,22,22,3,3,24,13,1,27,10,1,5,18,10,20,7,5,6,8,11,1}

    {46,42,15,23,10,2,1,6,7,1,2,5,3,45,1,9,18,2,2,7,1,13,47,24,10,5,9,3,1,17,8,7,16,1,4,18,15,30,7,14,1,1,9,22,4,1,16,21,2,36,6,2,8,3,2,4,7,1,1,41,20,2,1,2,11,9,2,1,10,1,1,1,5,21,2,9,11,16,3,9,2,7,10,2,21,13,7,1,8,8,2,5,28,13,12,6,27,24,2,5,1,25,5,14,1,10,1,1,34,19,10,4,10,1,2,43,1,38,9,5,14,3,17,1,17,17,14,1,10,28,2,4,16,21,2,1,17,3,40,17,1,1,5,30,1,12,6,23,1,39,1,4,3,2,7,5,7,15,40,2,3,2,4,37,1,3,2,8,11,5,1,14,7,15}

    1

    Returns: 1908

  63. {1,4,3,28,1,2,33,38,49,12,1,43,17,1,7,13,29,2,8,17,1,9,10,24,9,9,5,7,37,9,1,7,4,1,8,1,1,1,48,3,15,22,3,1,6,9,2,2,9,18,26,9,2,49,14,3,45,1}

    {5,3,4,32,48,8,19,1,21,18,4,4,28,6,5,13,5,4,5,12,2,22,11,2,1,20,27,10,1,3,1,11,12,4,34,1,30,26,1,1,18,4,23,7,6,5,36,1,16,29,20,4,36,22,9,5,2,2}

    1

    Returns: 753

  64. {10,2,2,37,27,1,35,8,40,16,3,9,10,2,13,7,22,1,28,37,25,42,13,9,24,14,1,3,8,42,8,3,12,6,6,19,43,4,16,1,1,9,3,7,12,3,1,3,20,4,2,1,48,2,3,26,2,32,31,4,27,3,2,14,11,1,28,28,8,5,16,27,13,8,9,7,36,13,24,3,4,8,2,5,37,20,12,2,2,2,2,1,1,3,1,2,7,2}

    {3,19,3,7,12,3,17,11,1,9,8,11,14,1,1,1,1,23,48,10,7,19,10,1,1,1,1,48,2,8,1,13,5,14,4,1,14,3,16,1,34,1,2,10,34,10,2,28,11,1,3,4,10,20,1,13,26,4,37,10,11,1,24,6,24,9,12,4,9,4,1,28,15,3,1,22,2,49,1,2,2,12,16,1,1,1,1,4,22,11,48,46,1,9,14,1,1,2}

    19

    Returns: 648

  65. {12,1,5,3,40,31,15,44,2,1,1,6,17,1,1,31,8,6,18,5,1,21,5,33,5,3,3,7,1,1,10,1,48,12,1,20,10,4,48,10,4,34,32,8,11,2,3,5,8,2,31,40,1,2}

    {18,1,7,40,2,12,3,1,17,13,6,30,34,1,2,11,5,1,1,31,1,8,2,6,1,3,37,2,23,24,28,28,11,27,2,17,24,7,3,8,46,5,4,7,18,45,5,1,22,1,2,5,4,7}

    24

    Returns: 255

  66. {16,22,22,5,10,36,39,4,45,4,18,19,2,4,2,25,18,6,2,12,49,43,3,11,1,1,27,1,1,30,9,1,3,1,4,1,1,1,11,2,6,1,1,40,4,4,1,3,5,10,5,12,37,1,1,11,43,6,1,1,6,1,2,18,3,41,3,3,27,26,5}

    {24,2,2,1,35,3,16,2,11,35,2,21,2,23,2,4,6,6,12,1,30,7,17,26,6,1,10,1,1,5,26,7,2,11,4,1,9,46,1,19,1,2,3,1,2,1,1,45,5,24,2,13,1,6,19,6,33,26,2,3,10,5,5,3,1,9,11,2,2,19,21}

    1

    Returns: 848

  67. {4,1,33,18,17,6,1,3,35,23,2,2,6,6,20,1,1,13,4,8,7,21,1,1,10,10,2,3,1,4,28,2,27,2,15,25,3,33,5,2,30,17,49,4,14,1,1,9,2,9,6,3,4,29,4,1,4,1,2,10,22,6,1,3,3,21,2,8,1,10,46,6,20,17,4,5,1,5,23,1,15,12,43,9,3,5,26,7,1,48,1,4,11,5,15,10,1,16,3,11,38,14,24,45,3,1,16,12,1,1,1,2,37,4,13,5,4,20,1,3,21,1,2,14,18,1,30,7,47,3,8,1,3,3,10}

    {43,26,1,22,2,28,12,43,6,15,1,2,1,2,15,4,10,24,1,1,1,19,2,2,2,2,4,12,2,5,2,15,4,1,8,2,1,13,1,37,23,1,5,4,4,35,9,1,7,5,16,23,2,2,7,5,1,1,10,6,16,2,1,6,3,27,7,3,1,13,10,48,1,7,7,5,2,22,5,1,14,1,1,7,2,29,8,25,33,15,1,13,4,7,34,6,2,4,2,3,1,19,3,13,1,32,2,7,8,28,2,49,16,14,44,4,2,1,49,7,7,15,16,1,15,14,3,30,8,1,1,28,38,44,9}

    1

    Returns: 1529

  68. {1,37,5,9,1,4,7,9,7,28,31,41,16,4,4,1,1,42,7,36,2,4,1,1,11,2,17,5,3,4,6,3,1,41,27,29,10,25,11,4,2,6,20,23,49,3,21,25,2,2,31,4,49,3,5,27,16,2,16,4,23,9,19,32,1,15,1,19,32,1,4,1,13,45,15,48,7,31,4,1,5,1,19,39,12,1,35,8,3,12,6,5,30,32,8,1,1,1,15,3,21,3,10,9,21,3,26,4,1,2,3,47,5,2,4,12,10,24,8,2,22,6,2,5,8,4,22,3,16,39,40,1,46,24,4,43,5,41,11,3,10,1,1,16,4,13,1,30,4,9,3,6,5,20,33}

    {6,11,47,6,7,23,5,19,2,22,39,4,43,1,1,1,1,8,17,41,6,17,43,14,15,9,17,2,2,16,35,9,35,15,24,8,3,1,4,3,38,2,49,22,10,13,13,1,3,1,3,4,6,1,5,9,5,7,3,3,1,6,6,1,18,11,2,24,33,9,20,44,40,27,34,29,13,5,13,2,2,15,3,2,1,5,2,15,30,15,4,1,1,40,1,1,2,16,1,27,1,13,1,3,2,15,24,3,6,13,36,2,8,29,38,2,4,1,6,5,5,2,2,5,5,6,5,1,3,16,7,9,5,20,5,22,1,3,44,10,15,40,2,44,9,2,11,3,9,4,48,7,21,13,13}

    47

    Returns: 997

  69. {9,14,2,2,41,2,31,3,2,3,31,21,28,21,14,2,1,7,21,1,25,13,8,4,18,8,1,2,35,1,5,14,25,3,2,40,43,6,18,4,39,9,4,48,1,3,16,22,3,1,2,7,2,2,4,2,32,47,13,4,19,33,10,1,2,40,9,7,3,1,2,11,4,17,30,14,3,1,6,3,7,9,5,1,45,5,20,1,1,13,11,1,1,33,2,9,11,16,2,41,1,7,1,3,1,2,22,4,35,7,46,15,1,9,15,1,3,20,10,1,12,4,1,49,17,8,2,22,23,1,1,1}

    {3,13,3,11,6,4,33,4,3,1,23,11,35,4,1,13,4,12,10,1,9,1,7,1,38,1,2,36,32,1,24,28,8,16,1,10,24,1,21,7,22,16,46,44,11,1,2,10,28,6,15,26,22,48,18,8,27,4,5,13,10,4,1,1,40,35,33,34,46,6,41,9,1,16,3,8,2,9,2,1,3,6,27,2,5,1,5,9,7,13,2,23,10,45,48,12,18,11,17,40,19,4,32,1,2,2,10,13,29,9,1,2,16,2,14,49,2,22,3,29,8,49,11,37,2,5,31,4,9,35,1,1}

    9

    Returns: 1263

  70. {2,10,40,11,4,2,6,3,1,15,21,1,18,4,19,13,7,6,11,14,1,16,12,4,1,4,23,6,8,2,14,1,3,3,16,31,34,16,8,12,3,10,1,18,2,30,28,6,18,2,30,1,18,6,1,3,1,2,33,20,49,16,8,22,44,9,6,41,17,28,2,44,10,22,15,5,1,21,38,4,11,2,6,38,1,12,3,34,7,6,8,42,2,2,23,15}

    {3,46,38,1,26,22,11,2,7,33,3,7,7,20,33,33,16,34,7,47,2,20,6,2,2,5,2,1,1,12,19,13,8,40,3,6,31,14,48,13,1,25,2,16,6,27,7,1,23,1,7,3,24,4,25,5,3,9,3,7,6,3,2,46,1,3,14,4,17,2,5,48,33,41,24,10,4,42,3,13,11,7,6,31,25,32,1,1,29,3,46,2,1,19,3,7}

    1

    Returns: 1459

  71. {1,48,10,4,2,2,46,3,4,9,28,3,2,1,1,8,10,1,30,11,10,12,1,2,44,24,16,4,17,4,19,20,1,11,4,1,4,2,7,2,6,11,2,6,1,3,34,1,27,28,1,49,12,1,23,47,7,15,12,3,19,3,1,25,10,2,3,8,33,1,5,32,14,45,15,19,4,9,11,49,16,2,1,1,40,1,2,4,19,2,1,1,1,44,12,1,28,21,16,4,4,43,3,31,18,11,1,8,41,49,13,7,16,3,21,1,2,3,49,23,3,1,6,36,10,5,1,28,1,8,1,37,22,2,1,1,4,1,1,36,3,4,3,2,1,3,1,27,9,1,3,4,4,15,33,46,5,12,6,30,1,24}

    {16,5,49,39,11,12,20,1,2,2,1,42,12,3,21,3,37,1,1,11,1,16,45,2,3,20,5,4,9,49,1,1,34,10,24,8,18,1,1,8,17,7,9,6,4,3,3,2,2,19,10,25,5,22,4,1,2,3,18,1,42,4,22,2,4,10,20,2,3,16,20,13,44,1,9,42,1,2,5,3,3,5,43,4,2,3,33,19,8,14,7,24,4,10,9,1,7,39,3,41,10,4,15,5,24,44,5,42,30,5,32,30,15,8,16,2,1,8,37,1,2,6,21,9,6,17,15,4,1,1,10,25,4,4,1,3,13,4,9,1,28,4,7,1,1,18,9,49,42,10,17,37,18,1,1,1,14,34,25,13,3,1}

    1

    Returns: 2094

  72. {46,39,42,20,37,44,22,25,35,8,44,38,40,23,34,44,30,48,14,22,30,33,43,50,45,10,3,35,10,23,16,9,2,36,29,15,11,48,12,4,39,21,30,23,12,5,19,6,41,15,30,28,9,30,40,40,2,9,50,13,33,49,6,39,9,40,39,33,27,7,26,12,25,22,46,35,35,26,5,23,35,9,7,21,16,26,15,11,37,21,24,50,13,11,45,25,31,12,50,49,34,39,29,27,2,3,22,7,45,18,38,35,2,23,1,12,38,34,29,19,23,1,3,50,40,10,5,19,6,34,11,10,49,43,6,17,8,25,30,8,49,12,21,7,46,48,3,4,44,10,38,20,24,9,45,1,11,31,21,45,21,13,24,32,28,40,5,38,8}

    {9,16,1,4,18,1,42,1,18,1,5,10,17,16,4,1,21,5,2,3,22,47,10,5,3,8,21,2,19,47,10,1,2,11,5,4,1,2,30,6,5,1,2,25,32,27,5,37,8,2,23,1,3,4,11,4,17,38,29,16,4,18,8,11,10,7,24,16,2,19,18,20,1,15,12,2,2,1,47,7,4,16,1,19,20,1,21,6,29,9,3,1,1,5,17,2,23,3,2,6,10,4,9,1,5,6,3,2,8,3,43,17,4,4,3,27,36,44,1,41,6,7,17,11,1,10,6,44,11,18,4,1,4,29,18,1,5,10,7,1,36,1,33,5,1,1,19,2,15,1,2,2,1,21,41,2,1,5,3,8,3,12,1,35,15,7,11,9,20}

    97

    Returns: 1473

  73. {44,14,40,47,50,23,40,49,46,14,42,44,50,16,38,2,41,22,42,50,7,32,8,49,11,37,14,22,13,5,22,7,25,13,24,8,8,40,2,11,23,1,3,8,42,5,33,16,34,15,45,24,34,40,2,42,11,23,24,10,14,23,38,46,19,12,26,40,30,6,23,39,28,33,33,31,10,18,42,22,6,4,18,15,39,18,47,18,23,41,44,30,41,19,50,17,43,11,12,10,5,14,27,9,31,27,41,27,41,7,9,41,33,27,14,50,12,45,36,48,49,29,19,16,34,8,37,19,36,16,4,21,21,49,11,10,40,25,7,32,36,23,36,37,40,32,37,8,3,23,48,4,49,38,2,16,28,48,19,46,40,8,44,45,33,48,43,34,46,14,46,13,8,42,2,48,9,19,6,37,2,45,12,4,32,28,41}

    {2,11,27,13,7,24,46,10,18,18,5,1,1,8,7,5,5,2,21,19,1,1,5,1,13,42,3,7,8,1,44,4,10,9,31,2,9,1,2,2,30,2,18,1,30,41,10,25,3,1,27,4,1,1,49,20,44,1,13,20,2,9,11,11,6,5,19,17,8,1,12,7,1,35,1,14,7,11,1,7,3,5,7,10,12,2,3,1,3,1,3,3,1,22,38,11,1,8,41,18,46,5,1,5,26,38,1,6,2,18,1,2,1,13,16,41,1,1,1,38,43,43,4,4,20,24,5,3,2,2,45,3,1,1,5,1,14,41,19,5,5,2,17,14,4,1,9,21,31,1,4,1,2,1,1,2,3,31,21,32,2,10,4,45,2,1,1,22,7,34,26,14,5,3,14,1,19,9,9,10,14,5,15,6,16,44,13}

    188

    Returns: 1727

  74. {6,21,33,21,49,8,25,48,24,35,45,50,42,40,46,18,32,45,18,7,8,15,32,9,12,2,36,43,15,37,42,45,16,37,50,3,47,39,28,5,50,7,5,22,43,38,20,17,32,38,43,1,10,30,43,34,33,2,17,25,11,33,7,12,29,14,50,20,19,21,23,31,24,10,12,47,12,38,45,43,5,43,40,45,37,2,43,6,42,11,46,37,22,17,41,36,21,15,21,8,37,22,37,10,4,45,22,26,13,50,4,22,41,17,39,13,34,43,1,3,33,17,2,20,39,43,47,41,47,29,28,23,6,33,4,10,1,40,21,19,33,44,19,31,50,18,42,26,32,37,25,11,49,30,15,19,3,3,7,3,17}

    {17,28,11,10,2,1,8,13,2,1,2,7,19,8,19,1,2,28,15,2,22,16,2,14,6,13,2,1,6,2,21,12,22,6,7,5,24,3,12,16,3,5,47,5,1,1,5,5,3,10,2,9,13,1,27,2,35,32,1,2,4,1,44,4,5,11,37,8,21,5,40,4,1,33,48,4,7,8,4,2,2,1,14,4,16,1,1,8,1,2,11,7,15,12,7,17,6,23,12,3,31,4,2,3,1,35,2,13,21,21,41,2,4,33,14,5,39,20,1,2,47,35,2,7,5,8,15,6,14,2,48,43,1,1,4,1,6,30,17,2,7,2,25,3,16,36,2,36,2,5,1,6,6,10,9,2,4,1,1,3,17}

    76

    Returns: 1397

  75. {22,31,33,5,33,2,7,42,3,38,32,30,36,15,12,14,39,34,9,10,36,34,19,40,15,13,47,31,27,38,16,33,48,4,47,9,22,44,1,15,25,44,17,20,4,20,26,42,3,23,22,29,15,13,26,33,26,19,8,40,41,26,29,32,1,21,9,36,1,28,33,8,34,50,23,20,4,17,24,35,41,40,39,32,11,30,19,32,8,3,9,11,31,6,16,15,40,23,14,2,31,22,12,16,28,30,42,32,46,39,36,15,17,32,45,47,18,14,3,23,45,27,28,15,37,21,25,11,36,34,12,13,35,49,24,13,12,41,6,41,48,38,13,41,7,29,15,8,47,50,42,11,47,49,23,6,46,36,24,13,50,47,15,34,44,17,49,15,38,4,24,41,44,39,4,16,7,2,37,42,22,1,16,31,30,35}

    {6,31,19,4,7,1,18,11,7,20,44,1,1,1,9,6,6,21,28,46,13,13,3,2,6,4,1,16,15,1,1,2,6,4,1,8,10,41,14,19,9,12,1,24,4,16,5,14,2,1,24,2,2,1,10,13,23,4,18,4,1,42,13,38,26,24,7,6,27,9,31,19,1,18,21,15,15,3,5,18,1,6,6,7,1,10,17,7,5,14,8,1,36,9,12,13,2,21,1,9,1,11,4,29,47,1,2,14,18,5,9,16,4,1,26,10,1,29,2,3,35,29,34,1,4,20,2,1,16,4,6,5,36,8,5,2,39,34,10,41,26,3,27,2,7,1,27,5,2,30,10,1,1,6,2,6,6,4,16,22,11,25,12,1,1,28,45,1,2,2,2,46,25,4,4,3,2,15,2,27,1,1,12,36,9,4}

    121

    Returns: 1875

  76. {28,32,38,43,1,19,11,23,26,24,24,24,50,6,20,22,29,48,50,9,19,24,18,37,46,10,9,49,27,50,37,24,42,22,7,8,10,34,46,9,22,23,21,24,22,33,10,41,3,35,3,3,14,11,45,43,50,22,23,44,11,20,17,6,17,41,33,26,24,36,15,6,20,7,16,41,46,23,14,3,28,27,30,3,1,19,35,8,25,7,7,1,42,25,10,8,45,38,15,1,50,43,14,10,8,28,39,3,21,35,41,10,40,17,38,15,49,39,35,14,35,21,45,22,32,17,21,3,2,28,47,13,34,9,18,24,50,20,45,27,43,6,5,20,34,35,28,24,27,46,49,48,50,4,12,15,25,38,47,14,25,9,46,49,15,5,18,45,18,20,44,30,31,8,24,11,18,22,28,3,24,25}

    {9,5,3,3,20,1,24,47,1,42,36,4,2,1,3,1,4,3,15,12,20,26,4,14,25,9,4,1,1,4,2,2,23,11,16,1,9,3,17,8,34,10,18,12,40,16,19,31,7,15,5,42,1,2,1,20,1,10,8,17,1,2,23,15,4,7,5,23,26,3,1,43,41,4,3,32,8,18,1,15,12,6,5,24,1,23,7,17,1,16,3,8,4,6,1,1,48,19,2,5,43,39,9,15,4,9,2,1,1,47,21,1,31,4,2,9,8,12,4,26,1,3,1,5,12,2,2,4,1,14,20,44,1,1,1,36,8,7,1,4,2,1,6,17,18,14,1,3,22,3,1,3,26,1,5,22,2,41,14,43,15,1,2,21,6,36,17,6,2,48,21,19,7,32,5,1,26,1,43,5,6,3}

    108

    Returns: 1703

  77. {35,42,37,45,5,3,44,1,28,13,46,18,17,37,46,13,38,33,38,8,22,11,30,5,31,26,10,39,20,19,19,3,33,23,5,5,31,2,22,15,27,30,35,50,28,13,1,43,23,34,7,27,33,12,24,21,20,16,6,10,34,35,23,14,42,38,35,29,29,50,22,32,25,41,38,34,29,17,31,6,40,17,21,23,26,34,27,22,8,9,21,16,2,14,16,15,16,2,11,20,15,8,10,39,29,15,1,6,34,9,31,12,1,47,36,29,17,44,30,48,46,45,45,17,41,41,27,11,44,48,21,17,3,24,33,22,6,30,27,44,11,48,12,25,32,27,38,30,32,28,7,47,16,25,30,41,42,48,33,37,8,5,39,8,12,38,44,49,2,18,31,18,10,1,18,27,41}

    {23,24,3,19,35,1,4,25,3,17,8,37,1,4,2,2,4,1,1,15,1,7,6,9,32,2,1,20,1,24,1,7,1,2,2,19,11,42,8,7,2,7,3,3,14,48,4,1,5,6,23,1,17,9,11,5,2,2,5,2,39,25,1,19,1,9,41,1,30,18,2,7,2,11,5,1,9,2,7,35,40,4,1,1,9,1,8,4,15,44,13,1,12,1,2,11,3,9,1,1,27,6,6,12,6,44,7,19,5,5,1,5,3,1,2,19,6,7,29,16,13,1,9,3,32,3,2,1,1,17,33,40,1,1,8,14,1,5,4,46,13,8,22,23,11,39,3,2,30,2,4,6,1,3,3,5,39,6,6,29,26,11,17,15,2,2,4,3,1,1,1,22,14,1,4,3,2}

    91

    Returns: 1420

  78. {27,35,43,18,46,29,15,6,45,25,10,39,21,49,44,41,9,40,42,44,41,19,40,47,36,35,32,34,50,35,32,25,48,7,27,38,35,12,4,44,47,6,14,40,45,27,24,20,15,36,33,39,7,48,17,45,16,46,5,5,10,7,31,26,7,25,6,46,35,26,44,34,34,6,41,37,22,4,20,33,34,28,44,26,9,49,15,19,25,42,43,2,50,30,21,26,1,42,13,12,4,15,45,8,9,7,26,26,50,34,8,44,13,49,20,3,25,2,50,16,14,47,13,50,20,50,16,15,44,15,29,22,17,25,35,9,35,29,42,27,28,34,25,4,18,7,8,4,21,25,28,11,14,42,31,8,32,26,35,21,32,13,33,28,13,12,29,32,28,33,28,22,42,34,15,18,8,1,7,30,8,31,16,48,9,2,8}

    {1,1,3,22,3,1,11,3,6,29,13,1,3,1,8,22,9,15,4,22,4,7,14,1,18,1,3,16,10,49,3,2,19,2,15,26,2,3,24,15,34,2,11,2,32,2,6,2,17,4,22,8,1,8,2,16,2,23,44,28,3,11,10,24,8,1,8,21,2,11,3,1,13,1,1,3,4,1,4,13,29,25,48,8,7,31,1,18,22,19,1,13,2,2,8,15,4,1,21,1,8,1,6,12,1,7,42,11,1,6,1,18,18,3,1,11,7,2,2,2,7,39,2,32,4,3,3,28,5,1,37,49,5,2,3,12,1,23,27,1,6,31,15,2,3,23,3,1,16,2,8,2,21,19,5,1,32,7,2,34,4,17,48,9,22,5,9,32,2,11,13,29,1,5,6,3,2,11,6,6,34,1,13,11,41,1,1}

    86

    Returns: 1748

  79. {5,4,42,48,1,32,5,45,20,44,16,48,25,30,4,15,20,20,6,26,42,41,42,43,40,21,4,38,45,43,9,47,7,31,35,33,42,45,50,45,10,26,45,6,41,45,15,31,28,44,47,9,38,29,45,21,26,23,15,5,31,32,15,41,39,9,45,32,6,29,22,7,44,35,18,9,9,14,13,2,48,41,23,2,16,25,16,10,20,3,49,44,48,37,39,36,6,17,50,2,1,5,14,3,23,7,17,39,32,48,38,42,40,35,42,47,34,29,47,11,8,11,8,11,43,14,43,20,8,20,8,10,25,29,43,23,17,21,1,3,29,43,46,9,39,48,18,48,36,46,40,16,10,22,39,45,38,20,38,16,3,29,7,18,11,18,17,34,29,27,28,31,46,34,6,17,41,29,35,5,23,40,21}

    {31,9,10,46,17,13,1,3,2,5,4,3,1,35,2,1,20,1,12,20,10,19,15,15,30,20,10,4,2,3,48,14,6,10,6,40,32,9,7,1,2,4,4,3,1,4,1,7,31,1,2,44,12,12,37,37,37,39,34,6,22,3,25,36,1,1,5,38,1,5,29,27,14,23,2,4,3,19,46,3,1,5,17,2,12,12,47,25,14,2,13,39,9,3,5,23,9,4,10,3,21,2,17,3,3,29,40,32,18,1,4,10,4,9,2,8,32,15,2,48,8,20,5,3,3,1,10,3,1,26,36,21,3,23,1,12,1,12,11,1,1,1,2,20,7,12,44,1,7,8,8,1,23,9,3,4,21,48,1,1,1,2,2,2,6,21,7,29,5,36,6,12,17,16,25,5,3,7,10,14,1,1,4}

    64

    Returns: 1745

  80. {34,30,6,24,5,4,17,32,28,42,24,31,7,29,39,39,15,9,35,11,21,20,39,31,27,10,47,7,6,14,22,18,4,31,38,48,23,42,34,25,28,46,20,10,41,5,20,23,50,33,31,25,40,14,45,21,16,43,49,42,6,4,49,38,22,29,18,7,37,9,6,17,14,3,26,40,33,11,30,13,45,7,29,28,4,2,21,43,24,25,3,16,31,37,26,13,49,3,49,14,14,8,36,18,3,17,34,31,21,15,35,33,40,16,45,44,8,30,46,39,33,45,32,28,14,32,36,41,33,37,25,18,11,2,21,38,45,15,40,32,25,30,17,50,22,15,20,20,6,17,50,19,40,16,50,3,26,5,30,27,3,4,30,33,18,25,32,45,34,44,8,9,12,40,8,37,43,39,18,35,48,5,45}

    {1,8,4,13,1,1,9,42,3,9,1,3,12,48,9,38,7,21,48,1,3,5,9,2,28,47,3,3,36,18,7,1,12,1,16,18,20,9,14,1,12,2,43,15,1,44,1,20,40,13,3,21,7,9,5,9,8,5,3,2,3,6,5,11,12,12,9,5,4,20,3,3,27,1,2,1,42,3,1,20,2,3,4,1,3,1,27,16,6,48,35,10,24,2,3,2,8,21,28,3,3,6,12,3,15,6,43,3,3,6,1,3,2,26,5,6,1,21,5,16,14,3,17,17,2,2,6,2,21,11,3,46,1,16,2,13,31,14,1,15,32,4,5,2,9,9,1,7,1,1,1,4,4,13,19,1,35,17,27,1,11,2,1,9,4,10,4,1,1,19,2,4,15,2,1,11,12,16,1,3,25,3,9}

    136

    Returns: 1575

  81. {35,21,28,34,18,27,26,43,44,1,19,31,1,37,31,1,16,12,34,7,5,39,6,29,3,4,27,14,21,33,40,23,49,7,2,36,25,18,13,50,35,28,23,45,10,36,23,31,2,16,15,33,7,10,31,11,12,48,28,34,18,25,31,18,50,23,42,26,4,34,21,12,47,26,16,37,7,42,41,41,12,29,22,31,30,27,13,8,10,2,37,43,21,32,32,6,22,43,42,37,43,19,35,42,18,44,48,36,41,13,4,4,50,32,7,9,36,50,33,2,1,48,14,32,35,7,37,5,36,36,2,3,3,36,10,46,10,40,5,46,14,36,43,31,13,24,49,23,4,16,15,20,44,10,26,27,43,46,23}

    {1,7,21,28,1,1,1,19,13,2,12,19,6,1,37,1,15,8,12,5,5,1,3,4,31,1,2,9,25,3,1,3,1,6,5,8,2,10,1,6,6,13,3,3,1,21,2,44,11,2,6,1,7,1,1,1,48,16,11,32,15,1,9,20,3,3,7,8,2,14,47,2,28,24,2,9,3,1,23,11,6,8,39,29,2,9,48,1,2,7,49,3,7,16,5,26,48,2,10,14,11,1,21,1,25,1,16,5,13,9,29,15,2,12,2,28,7,7,37,3,3,18,14,2,7,3,41,1,2,1,19,1,11,12,36,10,23,19,4,29,21,7,26,1,47,18,18,47,1,1,10,17,8,1,28,4,9,5,45}

    18

    Returns: 1745

  82. {43,42,9,41,31,4,9,1,9,18,16,38,2,38,26,6,9,26,18,23,6,39,43,2,26,49,14,44,20,48,49,40,34,18,24,20,31,21,19,6,26,24,44,31,3,3,44,11,8,25,23,26,30,24,5,5,24,3,35,38,50,45,10,11,23,21,3,33,26,45,28,20,30,37,14,4,35,5,16,26,27,46,13,37,26,47,36,23,10,38,45,39,44,42,3,26,23,16,33,6,37,35,50,11,46,21,49,49,25,8,32,20,46,2,21,40,32,14,48,5,4,37,27,7,49,19,19,20,41,9,25,3,15,42,27,30,33,23,35,37,31,44,32,40,4,38,34,50,45,11,19,29,27,31,28,25,30,3,34,30,45,47,33,45}

    {26,1,1,2,1,1,11,35,1,13,3,7,1,29,5,8,1,6,14,13,8,5,27,1,1,8,4,14,34,13,1,1,5,4,15,2,2,8,7,7,10,40,13,10,3,19,20,37,31,12,4,14,16,7,5,13,2,7,12,8,16,9,1,15,3,19,2,2,29,40,4,15,2,49,30,22,1,26,41,3,8,7,18,18,3,7,2,39,1,27,7,2,2,22,19,1,25,8,22,2,4,6,2,1,1,22,1,3,36,2,46,48,3,1,1,3,2,21,1,1,35,21,2,46,20,2,1,34,9,4,9,5,2,4,2,1,2,39,2,2,1,18,4,3,20,2,7,2,7,2,3,8,2,4,2,1,25,1,3,1,11,5,3,2}

    97

    Returns: 1317

  83. {35,8,19,26,11,19,34,16,46,45,46,50,30,23,35,40,6,39,41,2,5,31,43,38,36,39,22,11,7,46,40,3,3,33,34,25,50,18,49,46,48,46,1,22,40,47,17,36,38,23,36,21,16,37,31,39,24,19,17,25,42,9,12,15,2,36,36,42,13,33,31,32,23,45,6,2,48,15,20,18,21,46,17,40,39,43,16,2,40,38,7,42,33,40,49,18,49,9,5,23,4,21,17,47,33,19,49,50,42,43,24,24,38,4,15,38,33,25,14,7,17,30,16,40,41,17,39,50,29,34,25,39,44,43,36,26,8,11,32,36,13,38,33,26,40,5,25,30,14,34,1,15,34,15,41,4,3,39,11,26,46,10,10,36,21,39,18,39,27,40,5,18,40,42,10,33,32,42,15,50,43,25,2,9,46}

    {1,7,8,6,16,22,9,7,2,2,5,37,6,1,1,7,4,1,3,18,13,7,21,10,1,46,16,27,6,2,11,9,3,21,1,4,1,10,1,1,6,40,47,7,4,40,24,4,46,3,1,2,11,9,1,4,9,49,1,3,10,7,22,3,25,17,8,1,3,20,12,44,4,6,10,16,18,15,1,26,1,17,22,2,13,1,8,2,3,20,43,30,26,29,22,3,2,4,1,1,2,3,5,4,19,3,33,3,1,1,4,2,3,6,9,33,1,5,2,20,11,14,4,3,14,2,12,5,3,1,1,12,8,1,5,13,36,26,15,8,2,8,9,27,35,39,1,2,1,1,4,21,6,1,19,13,21,5,1,1,3,24,7,39,7,44,2,5,1,4,10,24,18,1,43,6,5,25,7,20,43,10,29,1,3}

    148

    Returns: 1668

  84. {19,17,33,3,20,25,23,23,31,18,36,26,45,33,23,9,7,24,9,38,45,31,6,47,2,19,47,14,28,38,41,33,28,34,41,35,10,32,27,3,21,43,16,28,13,22,12,18,18,8,5,5,35,34,44,43,14,11,42,28,15,8,16,31,12,46,45,22,39,7,5,41,43,13,36,16,47,46,24,9,17,11,48,46,20,14,26,19,28,24,33,16,45,44,27,22,45,7,35,41,49,44,10,49,16,29,38,13,10,49,9,16,31,47,11,8,32,8,34,6,11,5,44,23,44,32,46,38,40,42,4,28,27,47,31,35,43,33,5,27,46,3,16,38,6,19,22,18,14,1,17,23,3,50,15,9,15,39,39,45,17,50,22,5,23,22,4,42,33,9,35,10,30,3,14,24,33}

    {1,21,8,1,7,3,5,16,1,25,4,3,1,29,8,13,1,3,17,5,9,4,5,1,19,14,4,2,8,26,15,1,11,12,32,27,22,4,4,21,5,10,2,31,37,1,1,15,38,8,3,6,37,7,14,1,18,3,31,2,4,2,2,40,4,13,11,1,21,2,17,1,44,9,1,16,7,14,1,19,13,1,25,15,14,12,2,30,3,1,4,2,1,6,1,18,3,15,1,4,26,5,20,4,6,38,6,1,18,24,28,33,7,5,34,40,14,19,21,15,3,14,5,36,1,5,10,1,10,4,1,6,8,24,14,1,1,3,18,5,5,1,33,9,3,4,1,2,23,19,1,3,1,1,2,1,6,3,6,1,6,1,1,16,8,31,15,38,12,13,1,1,35,36,9,26,3}

    112

    Returns: 1527

  85. {31,25,6,30,20,30,45,21,15,46,39,41,10,47,47,42,20,42,25,14,44,19,35,34,6,26,10,41,16,36,10,37,19,41,43,33,23,4,15,9,8,44,35,1,33,12,6,46,47,17,33,23,46,34,39,42,10,29,46,9,40,8,19,42,22,18,21,33,24,43,9,5,50,40,37,29,42,48,2,32,18,29,6,5,38,25,45,28,50,12,46,33,31,11,3,13,45,39,29,34,13,45,26,21,41,45,26,8,27,28,22,9,49,33,48,38,34,2,47,47,30,41,18,40,5,11,11,47,45,30,45,34,17,28,43,45,8,26,32,12,4,4,34,25,26,46,22,19,48,3,40,50,14,19,10,17,42,12,14,50,23,1,46,47,46,37,30,13,8,50,44,11,46,45,30,14,20,6,6,16,1,39,38,31,37,6,47,37,16,10,2,29,40,10,39,40}

    {1,21,1,13,5,4,1,1,2,40,5,32,4,7,5,32,4,1,3,1,15,1,7,2,9,8,11,5,2,1,18,38,3,2,1,6,5,8,4,17,5,2,4,2,2,2,30,20,2,3,33,13,6,5,1,22,5,11,12,14,3,47,4,4,32,27,2,1,1,14,29,4,8,47,32,24,22,40,9,3,3,2,1,9,1,3,4,14,16,2,15,13,6,17,7,2,1,1,8,4,5,8,1,4,1,8,3,8,3,32,5,1,16,2,2,3,29,16,26,1,25,37,4,2,46,24,19,8,38,42,32,2,40,3,28,2,5,24,15,48,2,10,9,1,1,2,3,16,13,9,23,5,13,5,4,4,16,2,12,2,29,30,6,11,3,3,26,8,3,1,9,6,2,6,7,2,45,15,1,1,4,13,1,4,6,3,22,8,1,23,7,31,17,2,3,4}

    37

    Returns: 1804

  86. {50,25,43,21,4,1,8,14,14,5,29,5,15,42,8,44,14,21,34,17,5,18,18,35,29,14,40,1,31,11,8,49,27,36,8,7,14,10,11,22,32,45,23,42,22,7,37,17,40,15,15,35,25,7,42,20,43,9,31,26,3,14,25,21,43,32,48,14,34,44,44,34,20,46,27,1,28,43,20,32,10,35,13,12,32,3,50,14,43,50,31,26,28,39,4,27,43,11,9,21,30,38,3,26,11,29,44,28,3,11,38,12,17,19,12,35,15,8,22,18,47,14,34,6,38,37,41,9,36,15,21,42,42,28,15,37,44,30,9,1,9,4,10,46,30,43,29,4,33,31,50,18,2,7,11,6,22,46,10,22,31,20,18,29,10,13,21,4,10,35,50,1,47,1,49,1,10,23,45,19,20,7,2,21,50,21,49,46,16,19,1,32,7,12,3,22,41,26}

    {5,20,3,43,11,2,10,5,9,27,17,4,3,10,21,1,11,16,3,18,30,18,6,2,42,2,10,3,41,12,3,4,8,17,46,38,3,25,32,2,2,42,35,14,3,9,1,2,3,4,32,17,1,22,17,4,1,1,2,21,47,2,1,2,5,34,1,25,3,8,3,13,1,2,1,2,34,1,7,19,3,13,6,4,19,7,7,7,44,18,1,5,3,12,1,2,2,11,1,7,2,2,1,7,1,1,1,1,10,10,9,3,2,27,34,19,25,1,1,1,22,3,15,3,5,37,1,2,8,1,49,28,18,27,1,39,20,4,1,5,13,1,4,1,27,6,32,4,31,34,1,1,28,25,2,2,2,11,4,3,3,4,7,33,7,27,15,1,8,10,30,1,1,2,6,1,2,7,19,5,7,8,6,1,4,2,23,48,3,11,1,2,3,31,27,25,36,8}

    60

    Returns: 1776

  87. {41,48,33,24,46,20,13,14,20,45,46,1,41,7,22,47,43,15,45,3,26,8,30,18,29,2,48,11,37,31,32,20,35,6,25,44,34,7,8,48,5,49,9,9,26,28,31,19,36,20,22,47,46,41,42,36,26,38,26,20,22,44,48,24,11,25,5,14,43,2,40,3,12,29,11,32,41,39,14,10,33,4,45,11,10,25,28,1,29,34,47,24,45,33,11,46,43,8,3,39,45,5,36,35,18,38,11,16,9,9,34,38,19,50,8,36,13,3,33,17,49,29,50,4,20,20,19,43,46,8,15,25,46,26,34,14,19,32,34,5,27,43,31,48,40,5,48,32,7,46,28,4,28,10,5,2,26,1,36,33,38,37,6,9,3,23,35,12,13,3,2,4,6,22,38,38,20,1}

    {22,1,11,3,5,2,3,2,8,2,5,13,3,7,13,24,17,2,1,1,4,1,6,5,5,1,12,3,6,4,5,48,2,1,9,1,11,6,1,26,2,11,21,21,1,1,29,1,6,9,1,2,8,9,4,17,1,42,22,6,5,48,6,1,8,27,3,27,46,1,2,14,1,18,1,1,1,7,2,7,11,1,1,4,9,25,5,2,15,6,33,19,29,3,3,1,3,37,1,14,3,4,1,16,39,25,1,2,9,9,16,4,5,1,1,6,7,2,5,5,5,3,10,1,27,1,6,13,3,14,1,8,1,7,1,25,1,2,2,15,4,48,37,23,20,1,30,2,6,49,14,1,19,4,2,8,7,26,1,1,1,33,4,35,1,9,5,18,7,19,42,1,14,3,30,28,10,9}

    126

    Returns: 1508

  88. {1,15,45,47,12,22,1,40,48,12,48,18,10,5,47,47,47,39,22,20,4,26,2,19,18,32,29,23,12,22,18,23,20,44,39,17,48,44,28,28,39,50,25,26,23,26,30,6,27,11,23,21,43,7,39,34,47,6,43,46,48,44,39,11,7,29,9,45,30,28,2,21,41,19,5,45,47,5,38,1,50,6,12,12,18,24,33,25,30,31,32,29,13,7,21,39,42,2,42,10,34,20,31,49,42,25,34,11,22,26,12,8,12,43,7,29,6,42,49,44,16,27,21,49,14,4,5,23,41,10,9,42,25,13,20,27,13,20,39,24,31,32,39,41,47,10,3,1,19,47,50,47,1,27,34,26,48,4,25,23,50,24,18,1,18,8,32,24,28,7,48,39,12,17,12,4,27,32,18,29,4,40,28,50,42,38,49,20,8,7,29,35,49,13,33,30,26}

    {25,1,8,1,5,4,1,4,18,34,1,47,19,3,1,1,2,29,4,22,28,47,8,10,22,4,6,3,9,11,18,1,22,36,37,1,2,26,5,43,27,22,23,11,8,2,1,1,2,13,1,24,1,9,6,5,1,1,2,14,1,45,16,25,1,9,5,2,43,4,1,6,1,22,1,2,22,15,1,8,14,1,24,1,20,5,37,31,4,2,5,2,1,2,1,25,4,16,8,5,48,5,20,7,1,17,25,34,33,7,20,9,1,1,28,2,13,15,2,29,3,29,2,1,2,1,1,1,1,37,8,18,9,14,19,41,21,3,18,2,37,9,19,13,3,2,25,8,1,2,33,11,42,13,4,28,1,1,3,3,2,9,7,7,14,7,46,39,5,9,41,23,43,22,4,6,1,47,10,6,6,2,21,11,5,41,5,2,27,1,41,1,44,4,3,29,10}

    32

    Returns: 2192

  89. {24,15,33,28,49,19,33,14,10,16,26,34,32,37,40,6,22,43,21,41,40,3,50,20,26,40,43,30,30,46,44,25,35,32,9,47,17,49,24,11,11,44,22,1,47,3,1,50,5,16,22,18,47,37,2,13,30,42,3,32,29,35,22,23,23,7,41,10,50,48,28,18,40,25,25,22,20,34,48,26,37,42,38,14,16,33,33,33,7,36,33,33,43,46,12,10,46,5,47,5,18,14,1,6,40,20,14,31,5,2,22,29,37,17,1,4,17,1,33,39,28,15,46,43,44,9,25,8,29,19,7,11,13,9,25,21,6,10,20,26,2,10,35,15,36,34,26,28,16,5,50,45,36,33,48,19,24,25,48,23,19,36,4,32,9,15,16,3,12,14,21,45,7,26,38,5,8,23,9,47,18,35}

    {3,1,2,44,2,45,2,29,6,5,46,16,1,33,29,15,10,4,2,7,1,2,3,3,5,27,1,42,8,2,21,10,7,10,7,1,1,1,6,1,37,23,6,33,24,34,5,2,18,10,29,25,12,11,4,13,33,32,3,9,2,3,5,1,3,28,1,21,12,6,5,2,5,2,5,4,1,1,7,35,1,25,10,38,3,1,49,2,16,1,6,2,10,39,3,6,1,40,4,1,13,20,1,3,4,45,32,45,3,1,7,1,3,2,12,4,1,4,39,14,2,33,17,1,2,11,16,4,22,2,2,13,1,4,9,12,2,9,3,3,4,10,8,24,1,4,3,1,38,7,48,7,3,5,2,8,1,34,6,1,4,12,2,2,2,15,13,8,2,7,3,16,28,6,39,2,5,19,1,17,1,9}

    127

    Returns: 1557

  90. {34,46,42,5,15,48,2,34,21,1,10,29,46,23,19,11,24,33,50,24,19,26,5,46,45,16,28,17,21,24,17,23,5,3,2,18,9,3,32,42,10,40,31,25,24,19,49,50,32,5,6,24,35,1,11,25,30,14,48,35,20,25,46,2,26,7,49,36,49,7,4,32,31,16,43,29,48,10,20,31,7,18,26,11,44,44,41,11,27,26,39,17,23,3,26,45,42,3,47,24,10,3,10,43,34,7,36,41,37,14,42,41,17,31,18,4,36,48,23,18,1,40,18,11,31,31,30,48,47,5,9,48,42,21,5,35,10,3,37,48,32,42,23,38,18,40,4,20,11,2,21}

    {1,3,20,1,5,35,29,13,1,8,48,9,5,2,4,2,3,1,1,8,36,2,6,6,25,3,14,17,2,37,14,2,3,36,25,1,27,2,4,43,1,15,16,1,3,12,27,12,4,24,2,3,22,1,31,2,1,1,3,3,6,11,1,1,3,1,2,1,2,19,5,21,10,28,8,9,18,12,8,6,12,25,1,1,1,3,24,3,1,4,2,2,1,7,40,13,17,13,8,4,10,6,2,32,42,6,11,17,49,8,17,41,2,2,14,21,2,6,37,14,7,30,17,18,45,7,47,1,20,34,4,1,2,24,42,26,3,3,1,1,13,44,3,8,13,28,3,20,9,18,1}

    74

    Returns: 1405

  91. {21,34,18,32,49,28,9,24,17,29,32,28,27,31,33,48,23,3,40,15,44,18,16,2,40,39,6,33,13,25,47,43,26,18,46,8,46,39,18,6,11,42,11,33,19,37,11,16,40,27,3,49,41,30,10,46,49,34,25,24,46,27,8,34,25,8,9,42,8,7,41,5,21,17,37,47,2,22,17,20,44,21,37,21,37,8,16,7,6,34,3,10,3,40,28,12,6,40,21,34,25,37,19,41,4,8,44,32,45,34,20,8,36,3,16,29,29,33,44,5,29,10,20,5,14,5,17,32,50,6,32,43,44,46,4,37,15,36,26,24,25,43,20,31,49,28,47,17,11,3,32,49,25,24,27,39,37,18,19,49,23,37,47,17,9,49,22,14,47,31,11,5,18,37,15,1,22,38,12,3,20,35,10,25,34,24,23,15,40,14,12,4,20,27,3}

    {29,17,8,9,4,28,23,1,2,2,25,1,11,1,1,27,8,36,2,9,14,4,13,2,3,37,4,5,37,1,2,3,1,3,1,13,35,1,3,1,2,1,2,3,1,22,47,15,14,1,3,34,17,10,19,1,12,34,6,23,4,2,2,27,10,49,44,11,2,1,8,9,42,11,11,24,1,1,1,1,6,3,45,8,7,5,2,9,16,17,2,44,4,4,17,26,5,1,13,27,5,1,49,11,35,12,7,4,28,8,5,2,2,4,3,1,1,43,34,34,12,1,8,5,7,27,14,19,27,23,11,1,47,1,2,2,5,2,6,1,18,6,25,14,25,40,1,11,49,29,9,11,6,9,21,7,40,19,7,15,7,12,12,14,14,20,2,36,8,6,10,19,3,2,6,10,7,1,13,6,29,1,2,27,38,24,4,37,21,5,1,45,13,13,12}

    77

    Returns: 1896

  92. {22,38,9,13,3,26,33,30,41,6,20,9,22,22,30,27,43,12,45,39,9,49,25,12,14,5,25,37,47,24,28,31,29,28,43,28,30,48,33,40,3,37,44,1,40,25,45,47,20,46,50,23,34,8,33,47,35,19,7,24,11,22,49,14,18,32,46,21,33,45,43,25,1,50,6,6,25,37,15,13,37,35,13,1,32,32,32,7,37,8,41,16,19,15,43,9,48,11,5,24,28,15,41,13,19,44,45,8,21,22,26,37,6,13,33,25,39,11,38,20,24,18,19,31,11,40,9,28,47,12,6,11,21,48,20,24,28,29,4,43,35,11,10,41,33,36,45,25,23,20,40,31,49,13,7,7,28,19,7,48,2,2,30,46,45,49,50,40,24,7,28,28,26,22,47,47,33,9,41,14,43,5,6,14,2,37,16}

    {41,4,3,17,5,27,39,39,26,3,27,41,31,16,24,2,10,36,21,21,30,11,19,22,3,1,34,21,1,18,3,3,31,26,3,31,36,6,35,19,31,45,28,44,2,34,38,28,11,29,9,23,45,1,16,18,22,32,50,14,44,41,26,25,39,27,20,49,31,31,10,31,30,43,26,8,11,30,39,26,23,39,45,13,40,22,5,14,18,29,41,46,28,12,46,21,9,40,6,16,21,15,44,44,36,23,30,28,15,14,2,42,19,5,14,14,11,5,16,9,30,23,26,40,50,14,49,34,25,13,6,15,19,50,4,29,39,20,9,30,9,9,22,49,48,27,47,48,41,24,25,14,37,33,49,10,27,2,30,7,30,20,13,50,13,8,37,50,14,45,38,22,27,18,33,50,42,48,22,19,43,36,11,5,49,3,41}

    46

    Returns: 3546

  93. {33,26,39,9,19,17,27,46,30,32,47,28,3,43,45,41,31,13,33,28,26,2,47,6,7,34,20,11,49,5,20,39,14,3,10,22,41,26,36,1,24,18,49,26,18,47,38,34,34,20,17,29,40,9,44,47,5,44,50,24,45,41,47,11,37,47,24,46,47,49,29,21,24,37,16,3,35,37,44,37,10,36,49,39,23,36,24,2,4,11,16,23,44,43,31,3,22,2,37,18,26,46,25,23,28,24,22,5,19,44,8,48,20,25,35,42,23,39,49,23,2,39,35,10,34,48,25,34,13,30,21,2,8,18,37,3,45,38,38,3,5,42,8,12,28,35,6,13,29,29,23,2,37,44,9,12,27,16,21,30,41,19,43,50,15,13,14}

    {28,44,44,3,8,8,2,24,21,49,9,37,6,6,26,27,16,16,44,30,26,45,16,35,28,22,34,9,9,14,41,20,41,41,36,45,37,33,12,36,15,17,19,47,7,48,43,16,25,40,46,20,3,31,32,25,22,7,26,21,24,1,43,39,17,2,9,7,38,39,49,35,31,26,21,32,14,3,50,4,40,46,22,37,36,27,22,2,4,32,42,19,35,35,21,35,21,40,23,43,7,48,4,2,45,12,3,18,40,3,18,16,48,35,13,17,12,31,44,29,9,35,26,8,20,15,19,9,43,12,4,40,2,32,24,7,38,5,37,35,36,8,37,2,6,34,15,31,3,14,5,19,32,7,44,46,40,31,45,50,27,50,5,30,25,30,49}

    153

    Returns: 2840

  94. {20,18,3,14,16,40,27,31,29,19,2,40,19,32,26,15,27,22,46,15,25,27,45,43,10,29,43,28,13,7,32,49,14,48,12,9,4,31,5,19,38,39,27,43,33,38,13,6,4,50,29,25,27,39,1,14,40,31,3,46,46,25,37,7,7,30,37,21,45,4,45,47,32,5,39,33,48,22,22,47,27,36,2,43,13,4,43,17,29,19,1,5,4,9,27,36,11,20,31,34,17,19,25,9,26,1,40,50,12,11,45,5,36,50,19,35,41,7,42,42,13,35,41,13,36,14,12,14,32,34,10,3,42,8,41,47,44,7,49,34,5,48,17,20,41,41,14,37,48,8,22,15,11,46,38,4,46,41,24,33,18,2,1,21,15,15,43,3,7,45,44,8,49,20,10,2,13,43,5,11,24,50,22,14,9,50,28}

    {50,8,35,33,32,40,48,29,29,38,25,2,40,33,43,29,6,1,12,37,18,29,27,5,19,23,38,18,46,38,20,29,34,41,25,35,39,36,30,30,24,29,50,24,8,28,4,27,43,3,10,15,16,42,2,6,44,32,30,8,20,41,34,5,14,47,31,29,6,16,8,10,15,34,35,26,2,16,35,23,16,26,46,8,29,36,28,12,7,21,5,22,21,47,26,36,25,3,17,43,49,46,23,26,43,18,2,9,41,28,43,44,44,1,21,16,40,20,2,22,30,23,27,37,45,37,11,15,1,11,2,14,40,39,3,16,19,25,40,28,43,12,17,50,45,43,38,36,46,8,13,26,28,7,9,42,3,15,23,33,36,32,32,38,4,47,11,47,3,40,32,16,16,47,8,47,30,27,39,11,28,10,9,47,30,4,22}

    156

    Returns: 3031

  95. {18,15,6,38,1,49,44,18,16,8,43,48,35,26,31,15,40,4,46,36,38,18,7,10,37,27,48,4,25,29,28,26,7,37,35,39,8,34,7,3,3,20,36,26,11,21,5,23,39,22,13,48,26,42,2,10,31,24,3,33,28,23,12,39,25,2,46,44,38,40,22,39,3,21,32,1,3,33,42,47,14,1,7,30,3,15,29,11,29,6,28,35,14,16,1,26,8,6,33,41,36,49,23,45,39,35,47,27,15,2,38,18,19,10,29,50,47,30,32,38,1,28,42,14,9,29,20,33,32,49,41,44,10,12,1,18,44,42,15,24,21,35,19,26,15,2,33,39,37,1,18,13,3,3,17,16,23,34,2,31,2,26,34,10,23,33,28,4,47,10,49,15,45,44,13,37,12,13,19,19,31,12,38,34,5,41,46,30}

    {17,49,37,34,38,47,4,9,31,32,46,34,28,4,12,31,19,31,26,46,8,17,29,47,10,17,43,36,17,16,47,28,37,29,46,9,20,20,21,6,9,32,12,7,3,10,19,8,20,8,40,30,34,24,49,21,45,14,16,8,31,28,35,36,43,46,46,31,45,32,49,44,1,9,44,47,13,31,30,32,28,34,9,27,47,9,22,26,10,48,32,32,29,37,49,25,3,27,38,22,18,23,37,45,2,43,1,31,49,42,38,19,31,35,4,44,43,18,43,15,11,12,34,46,22,37,1,50,5,19,38,14,16,49,4,6,49,45,24,7,35,37,14,6,1,45,12,36,34,6,14,12,46,34,23,1,1,28,9,30,26,19,16,44,11,44,30,2,1,40,45,48,22,12,1,6,13,38,35,44,48,46,46,26,7,39,22,20}

    34

    Returns: 3644

  96. {20,25,24,46,33,33,9,27,23,24,32,31,36,31,28,24,12,33,41,20,36,48,34,35,22,13,29,13,37,38,43,43,35,1,28,22,50,44,15,47,12,17,21,34,44,5,19,6,33,19,44,13,46,48,37,2,23,46,48,24,36,4,19,33,28,16,47,43,23,24,1,23,25,36,39,41,1,24,41,47,25,7,5,13,43,29,45,30,41,23,47,18,42,37,21,5,8,14,31,11,13,36,5,33,19,25,33,46,37,36,36,24,34,34,42,27,12,45,24,35,14,39,13,45,18,32,22,43,18,5,31,10,50,35,49,1,29,40,16,29,2,47,36,13,18,33,39,45,32,36,41,29}

    {27,11,47,41,35,14,32,14,4,20,28,22,44,25,3,1,12,11,36,20,32,14,48,20,33,28,42,38,12,26,9,8,46,8,30,26,18,17,10,32,35,19,24,27,26,39,35,26,37,34,38,41,16,12,31,10,16,6,19,33,43,29,45,36,29,44,32,34,17,50,19,31,49,6,41,7,7,29,37,30,15,21,29,19,18,7,6,11,27,5,46,23,3,4,11,18,9,14,47,30,38,20,13,24,34,32,48,43,8,27,11,50,35,10,50,38,49,46,1,9,35,16,15,26,16,10,48,12,19,41,47,35,14,38,36,2,43,29,15,2,10,32,36,49,44,35,44,47,6,26,17,5}

    75

    Returns: 2900

  97. {35,6,32,13,11,48,14,18,18,18,20,20,3,29,45,35,28,13,47,44,33,35,29,42,29,42,13,9,19,33,6,18,1,24,49,38,48,11,28,36,45,26,31,39,14,21,18,39,29,33,20,41,34,7,29,22,37,35,6,23,6,48,7,32,30,16,48,18,8,36,36,18,8,44,39,11,34,26,22,45,11,40,10,20,29,3,12,44,42,3,20,25,19,18,24,46,1,16,50,39,37,11,4,14,40,33,29,27,13,10,25,17,32,35,36,49,12,49,16,46,30,42,23,9,29,35,43,27,3,38,46,36,45,40,41,46,17,33,43,5,17,35,9,35,40,23,12,32,45,12,39,5,34,46,23,41,4}

    {24,47,26,24,46,35,6,20,47,38,34,38,36,48,46,28,34,49,30,29,2,35,26,6,34,28,3,45,11,35,7,31,12,7,50,13,24,2,1,45,3,13,7,15,15,23,49,40,26,5,18,14,1,29,11,16,19,46,23,1,38,50,19,48,40,49,12,16,7,36,2,39,26,37,3,22,36,9,35,18,14,38,29,32,24,5,39,43,23,13,5,31,24,3,9,13,47,34,20,14,8,26,15,42,9,24,45,29,47,39,7,44,5,49,35,47,25,11,43,24,40,48,44,22,22,36,33,41,18,33,44,10,45,36,15,50,43,49,35,29,39,28,6,1,17,4,13,30,10,46,33,13,43,43,45,6,29}

    77

    Returns: 2918

  98. {21,39,46,35,28,8,8,23,6,21,15,22,49,8,41,6,7,30,33,6,46,35,11,28,3,41,41,42,42,2,14,33,6,18,15,13,13,23,28,33,44,27,24,41,28,6,14,35,17,5,18,31,12,1,27,42,8,34,12,42,17,36,5,21,42,18,49,21,36,24,14,10,31,16,25,18,10,28,31,18,23,3,46,7,6,46,36,11,17,47,17,20,32,31,41,19,3,19,21,36,49,4,12,30,37,25,26,37,47,47,6,13,37,6,50,23,1,10,41,20,36,26,33,30,5,33,39,35,34,40,42,31,11,22,14,16,30,42,21,23,25,50,8,4,39,17,10,48,35,14,21,48}

    {15,49,21,6,50,3,14,31,15,11,12,49,26,45,11,6,17,30,19,10,14,14,31,25,16,17,7,11,48,34,3,2,2,27,21,14,41,46,37,20,20,28,49,1,11,35,42,34,14,37,24,6,34,26,16,6,13,15,40,45,15,23,37,5,27,40,17,1,15,39,42,14,16,27,7,17,19,10,29,11,40,27,50,22,2,22,41,14,43,17,45,30,6,9,28,22,22,1,28,17,33,4,35,36,36,21,38,32,18,33,48,30,18,7,38,31,32,39,19,6,13,10,21,35,9,6,49,3,16,30,41,24,4,16,17,8,45,19,29,25,43,47,2,47,16,24,41,38,38,4,15,14}

    120

    Returns: 2482

  99. {41,45,1,3,4,37,35,7,27,23,34,43,24,15,26,32,43,47,38,5,1,37,45,48,48,7,16,36,48,44,29,39,14,25,43,38,9,17,14,36,44,40,19,40,26,37,48,39,36,13,44,9,44,50,1,31,16,19,14,24,4,5,38,46,41,10,14,12,48,36,23,5,26,37,42,20,6,26,8,4,27,47,21,41,29,49,21,48,7,47,23,28,24,7,8,28,31,49,44,47,31,22,11,14,5,7,5,37,14,44,44,27,31,39,11,4,46,45,49,2,4,29,45,4,22,33,13,43,12,13,29,45,21,39,40,32,35,14,24,23,46,34,38,22,18,5,11,29,27,13,22,44,18,15,15,32,4,9,2,49,48,13,42,43,30,5,37,9,36,14,10,24,21,44,13,28,48,22,25,28,5,22,12,46,46,25,6}

    {37,38,42,4,49,9,20,22,2,32,42,28,3,26,33,18,11,25,40,35,5,10,5,26,1,15,18,2,14,49,31,48,33,35,12,20,20,44,2,13,36,40,39,42,46,29,16,3,38,26,22,27,25,40,3,16,50,31,22,20,28,36,45,31,9,3,6,27,13,1,47,35,15,14,44,5,47,35,13,23,29,35,23,12,36,4,20,16,28,46,30,44,6,21,32,22,23,13,8,10,39,9,21,41,7,50,18,25,20,16,19,19,25,42,9,12,25,40,21,6,36,35,45,49,33,41,18,16,44,28,17,36,23,36,48,48,3,27,39,41,24,43,17,19,43,33,36,12,40,16,6,33,39,41,24,16,36,27,9,36,37,46,18,11,20,27,34,45,10,18,42,46,32,35,14,9,35,8,38,13,20,34,34,5,46,32,32}

    65

    Returns: 3383

  100. {13,32,10,15,12,35,33,3,3,34,44,11,10,43,14,10,23,26,36,47,48,9,49,3,34,36,47,42,30,19,13,39,25,22,12,21,31,34,25,45,33,19,44,13,44,11,31,40,26,14,46,33,10,36,5,10,34,1,19,19,28,32,23,20,16,20,6,3,42,48,46,4,7,8,23,45,2,23,25,42,43,12,39,10,48,33,32,2,30,27,37,33,8,46,48,12,37,10,4,22,46,10,35,32,21,15,40,21,20,37,9,12,22,1,8,31,30,23,44,24,20,10,20,32,44,27,3,27,8,12,32,31,2,36,11,3,27,11,8,3,3,21,41,15,39,35,3,14,49,4,19}

    {33,49,21,17,10,50,32,12,47,49,38,15,21,34,40,45,39,24,31,37,14,7,27,33,26,23,6,1,47,17,13,7,21,1,24,48,20,17,14,32,22,4,16,24,35,37,34,47,50,15,14,38,1,14,1,31,37,7,12,36,33,39,6,27,1,3,12,37,48,45,30,23,14,27,11,15,44,36,10,44,27,33,30,31,20,48,28,50,18,28,29,38,49,17,4,32,40,20,22,27,27,39,29,22,24,48,36,25,27,34,17,27,37,17,32,16,14,48,25,1,33,37,6,42,27,4,35,4,27,44,22,27,44,6,48,24,39,19,29,4,23,2,4,11,31,32,16,38,24,38,14}

    40

    Returns: 2707

  101. {40,16,7,38,32,11,9,25,11,4,44,29,4,22,45,19,35,16,30,9,1,36,22,5,2,45,3,41,29,6,16,34,12,50,31,48,11,13,8,49,15,50,8,45,45,48,11,46,37,18,12,8,40,48,30,6,29,37,2,10,28,5,29,3,33,9,14,40,5,39,43,4,40,5,31,12,24,6,31,2,24,31,30,36,16,13,42,4,23,38,2,9,18,50,4,39,35,14,3,8,18,23,39,9,5,5,21,42,22,25,49,6,44,47,4,29,47,5,33,5,18,17,25,49,15,1,1,16,22,5,45,33,47,14,7,12,33,8,4,14,13,19,5,49,43,17,2,18,44,14,28,6,44,45,27,48,20,32,36,44,36,41,48,37,16,37,9,12,49,48,45,25,38,50,29,17,44,19,32,21,45,11,31}

    {33,40,34,47,38,8,46,40,8,28,5,15,45,27,5,22,50,22,13,5,48,45,4,50,16,38,47,18,32,31,26,6,7,23,48,35,39,33,22,9,4,47,50,38,5,23,33,19,33,39,21,27,25,11,12,47,14,28,14,35,1,30,36,11,39,12,34,43,40,8,26,32,40,15,5,33,11,46,41,31,35,50,41,35,49,11,40,1,48,27,26,37,7,46,44,33,30,25,43,12,40,19,5,16,32,7,3,19,14,23,32,23,33,44,18,24,33,24,13,27,35,50,30,45,4,29,25,8,37,15,36,43,16,13,8,7,29,8,35,35,31,29,33,2,47,16,9,16,44,40,4,44,47,29,38,40,12,16,46,35,11,40,15,11,31,38,7,4,44,15,41,49,18,47,40,11,22,4,15,44,32,28,7}

    140

    Returns: 3175

  102. {42,2,43,9,43,45,30,2,23,16,31,46,3,4,30,45,27,12,40,50,43,45,40,35,13,35,25,26,8,22,44,12,46,7,21,18,6,46,9,22,34,41,13,10,38,49,19,38,13,10,21,29,49,26,22,17,16,28,3,7,10,13,25,34,28,7,41,42,48,42,41,14,1,26,35,45,34,18,39,15,33,30,16,41,38,13,43,35,11,36,28,26,27,37,36,11,10,21,27,20,5,29,9,30,23,46,16,17,37,26,33,28,13,43,33,18,18,28,4,41,30,45,7,28,9,50,15,39,36,4,38,15,25,22,17,48,18,50,18,19,35,24,45,39,42,13,45,1,25,17,37,10,38,49,8,15,26,30}

    {16,39,27,47,29,30,33,23,23,34,41,42,46,38,40,28,12,3,44,26,5,21,24,9,11,47,23,29,32,11,49,34,46,11,36,34,42,50,15,31,17,42,49,13,7,16,20,19,36,2,28,19,37,38,48,36,40,4,3,43,21,10,25,45,17,25,39,30,1,45,23,30,14,32,34,3,39,47,37,28,38,41,49,6,40,7,48,6,20,38,20,47,5,42,49,21,31,49,15,8,8,13,50,22,43,2,44,10,39,22,5,32,21,5,25,6,38,18,29,22,17,11,17,46,39,41,10,33,49,13,1,8,24,39,27,30,13,4,36,29,12,34,34,15,44,46,34,40,31,42,24,26,13,40,1,42,36,30}

    12

    Returns: 3602

  103. {24,45,35,10,37,47,15,43,17,27,39,12,33,41,28,12,26,20,42,40,20,15,29,24,45,47,40,43,21,18,15,23,39,23,32,17,34,24,39,19,23,45,11,26,19,21,12,13,36,13,4,42,31,41,20,29,45,1,11,10,9,28,5,14,38,14,25,42,22,26,1,11,3,49,8,29,12,5,17,30,17,9,7,40,16,19,4,34,17,15,2,2,17,14,21,22,47,33,7,5,5,5,2,19,31,3,42,9,40,37,9,35,1,48,10,14,1,35,26,48,41,29,31,13,35,10,28,2,46,6,10,20,35,47,16,40,19,15,11,36,33,13,22,10,12,9,1,8,29,21,46,18,50,29,33,35,25,23,19,12,35,7,46,45,5,35,27,33,17,19,5,50,21,7,40,15,15,18,6,24,50,12,35,13,7,21,48,39,19,5,22,23}

    {8,1,11,40,8,34,14,10,41,32,36,49,49,33,49,44,42,11,17,34,25,3,24,48,38,36,18,40,10,25,14,23,35,2,11,5,22,19,14,32,17,37,43,41,9,4,10,28,27,21,9,6,8,19,41,50,45,44,42,33,40,31,33,41,9,37,32,14,35,46,42,10,17,49,29,18,6,4,42,26,34,33,9,39,37,5,38,42,48,1,19,33,26,4,24,34,22,8,22,40,44,31,37,25,32,28,34,15,36,4,30,24,5,37,16,25,19,22,6,5,39,5,7,40,32,17,50,48,11,32,10,2,5,35,41,12,29,47,19,48,30,50,42,47,44,50,18,15,11,21,29,22,17,10,46,46,22,39,46,18,41,18,17,40,47,7,29,47,21,29,26,1,11,9,33,33,29,4,36,6,11,48,9,41,39,35,43,3,33,50,9,27}

    164

    Returns: 3095

  104. {24,7,2,33,22,31,5,47,43,47,21,29,34,8,40,48,8,22,17,20,22,32,15,32,27,34,34,20,32,2,43,14,25,25,19,29,50,2,26,24,29,12,42,31,40,46,42,13,39,11,25,16,41,18,15,40,41,43,40,24,2,43,40,2,43,1,23,12,25,22,9,12,30,7,25,31,11,32,15,15,49,11,20,14,36,43,43,44,46,3,11,39,35,31,46,26,20,41,39,34,44,10,13,29,32,18,16,48,24,43,13,36,48,44,32,26,9,27,35,23,35,13,31,40,48,47,7,30,14,7,26,39,49,36,4,19,3,4,12,10,27,13,49,48,36,16,19,50,42,16,34,42,15,9,19,11,31,37,10,30,22,32,4,11,30,32,19,34,32,13,11,15}

    {48,27,39,7,20,3,26,20,39,31,25,10,18,2,4,12,29,25,9,24,10,25,25,22,36,2,1,35,21,25,49,21,19,25,24,4,19,45,28,43,2,28,44,48,5,17,11,45,5,49,18,19,18,29,17,50,4,50,50,36,35,41,39,44,50,40,18,10,36,39,5,45,20,11,24,27,23,36,41,33,18,45,44,25,26,45,46,10,24,41,43,7,22,8,50,29,2,12,50,46,22,1,35,32,4,29,5,35,37,27,16,14,5,32,20,19,39,31,15,37,28,49,6,21,4,26,39,10,14,8,44,25,34,22,33,35,33,4,49,15,26,43,41,31,10,2,5,41,40,47,44,7,33,3,36,47,24,20,30,26,40,13,3,24,38,22,22,45,49,43,48,39}

    141

    Returns: 3068

  105. {42,19,13,28,41,8,38,15,2,32,5,10,29,50,22,48,37,3,39,8,40,46,1,1,11,21,39,35,24,47,7,47,42,5,23,40,16,47,17,34,14,3,49,21,4,30,2,36,47,4,42,4,37,42,47,34,17,16,7,44,17,10,12,17,11,9,12,46,22,24,31,26,48,12,5,11,48,45,32,23,45,47,49,18,17,21,35,6,26,48,1,29,45,18,34,22,4,29,37,38,22,42,40,29,42,26,39,46,29,16,4,21,38,9,31,49,13,31,41,7,48,40,9,5,43,10,14,30,35,28,11,7,44,3,36,27,35,5,32,49,31,7,27,2,40,36,19,23,31,34,19,9,26,6,32,34,4,28,3,44,28,20,3,25,47}

    {35,35,13,27,42,17,2,18,50,23,7,34,8,37,16,38,11,20,12,9,26,22,2,21,17,30,5,42,42,33,15,46,43,31,2,15,14,1,35,14,40,32,15,46,47,10,38,38,6,34,33,48,18,45,9,18,4,24,29,30,28,31,23,12,30,49,11,20,46,48,20,38,24,28,47,39,31,37,48,23,2,5,48,8,11,3,5,10,6,41,10,7,25,30,41,34,7,16,29,30,34,40,14,23,37,25,43,44,30,46,45,27,5,44,27,13,6,3,11,16,18,46,23,47,31,13,34,5,37,13,7,39,6,31,48,24,29,16,47,16,39,45,8,32,50,3,33,10,34,32,3,10,33,35,6,41,4,9,30,40,40,28,38,7,17}

    64

    Returns: 2874

  106. {24,10,9,24,35,21,42,18,22,22,9,42,49,38,41,22,16,11,50,26,50,10,26,50,6,8,37,31,1,8,29,34,42,26,26,48,37,19,7,25,45,30,42,11,40,22,15,29,22,25,34,25,44,33,9,47,21,41,16,4,38,15,23,22,38,30,42,27,41,42,22,33,11,46,39,27,23,5,3,24,34,37,8,29,22,21,25,37,49,22,34,27,24,40,21,8,13,1,27,49,1,44,31,40,45,16,30,43,27,50,50,45,22,37,12,18,23,9,46,14,24,38,1,18,50,37,9,4,9,17,50,6,30,50,37,26,22,11,5,33,44,45,38,20,7,46,29,2,30,25,38,28,47,42,12,37,2,32,49,33,42,1,15,28,17,30,10,45,1,43,16,2,44,20,36,33,14,12,33,11,24,34,6,43,24}

    {35,13,19,31,37,21,45,35,22,20,42,15,11,4,20,25,28,4,25,17,23,19,13,39,34,11,13,12,6,46,15,19,42,21,4,21,1,13,7,13,9,47,19,39,5,19,50,42,36,32,31,45,47,49,11,5,49,43,19,24,7,33,20,10,17,35,34,2,7,9,4,12,24,34,4,23,13,5,7,18,9,3,22,28,32,6,41,44,45,3,26,1,12,45,21,28,43,4,46,14,10,29,40,23,30,19,38,16,35,48,28,2,22,15,3,22,14,30,44,7,11,11,21,28,17,40,20,20,41,9,19,29,32,1,14,10,9,6,20,15,47,28,3,43,6,39,15,30,22,29,6,35,6,40,30,47,39,3,15,47,45,4,32,47,48,26,5,18,50,48,15,48,29,5,48,7,16,49,10,21,48,9,8,11,28}

    21

    Returns: 3590

  107. {3,32,28,35,5,47,6,22,38,10,44,49,50,25,34,4,42,44,7,6,6,7,24,25,11,28,39,24,23,46,44,29,26,34,34,14,42,23,37,6,44,32,38,15,3,35,34,4,5,39,15,29,43,46,41,33,33,17,47,28,40,17,38,22,9,29,32,34,24,16,36,25,21,20,16,50,49,29,48,31,12,35,2,45,2,6,37,34,49,34,16,43,1,18,21,39,26,15,41,11,47,19,11,20,5,20,8,20,49,18,6,18,5,10,41,8,48,4,34,15,33,17,38,12,25,48,35,24,24,21,31,25,1,43,26,27,40,48,26,25,49,46,19,23,15,45,50,32,25,6,14,14,5,31,9,27,34,43,18,27,17,25,40,47,39,10,16,24,50,35,9}

    {3,31,24,25,10,14,20,46,36,27,5,11,17,50,48,39,9,46,18,24,3,17,37,28,11,37,36,46,19,5,38,18,10,33,30,11,19,25,37,28,5,5,19,5,27,8,24,49,39,5,48,7,16,24,17,36,43,50,26,3,29,10,13,42,47,31,6,30,18,31,45,19,10,49,13,5,18,39,35,48,42,31,39,29,11,2,43,35,44,4,8,16,41,11,42,8,10,50,49,12,10,19,25,29,8,50,8,27,4,6,19,20,46,22,6,47,7,44,18,23,23,21,9,43,2,42,48,35,27,31,18,5,2,34,47,27,1,10,24,20,24,10,41,12,42,40,23,3,10,49,45,48,9,37,11,21,11,30,17,16,8,35,50,13,6,43,36,26,24,7,46}

    78

    Returns: 2864

  108. {15,44,6,26,47,2,5,28,27,24,47,47,4,32,28,46,29,12,20,4,41,45,42,25,5,1,13,18,22,1,25,9,8,19,8,32,4,17,39,48,36,24,14,37,24,34,47,3,28,22,41,40,20,37,46,43,35,21,35,29,2,30,42,18,30,38,44,41,47,12,6,44,26,48,5,6,25,50,10,2,24,34,30,11,5,17,22,28,6,32,38,4,2,11,41,46,41,47,6,31,48,10,20,37,23,44,34,50,39,36,18,17,50,34,41,33,44,26,50,26,8,33,26,28,19,46,22,41,27,22,33,2,18,19,43,1,34,19,40,44,2,4,43,47,3,46,12,1,21,28,3,48,33,23,31,40,23,11,49,1,36,15,34,26,48,31,43,10,23,40,43,37,43,42,19}

    {3,32,4,20,9,29,24,20,49,20,31,12,19,35,10,40,23,30,38,45,2,31,9,27,27,20,9,26,48,3,7,25,18,28,26,8,6,42,11,27,50,46,2,2,45,37,15,34,34,47,14,11,15,27,30,21,50,5,18,23,40,26,16,45,36,1,18,31,22,50,48,40,46,17,28,35,36,32,34,16,13,36,19,5,46,32,28,24,48,1,14,39,41,23,30,1,48,24,43,19,45,45,6,8,25,22,16,47,19,39,49,47,11,9,38,36,40,9,36,43,43,10,10,36,49,10,7,34,44,24,19,32,34,10,9,12,21,4,6,21,2,44,10,9,10,1,5,15,33,19,27,48,42,7,17,32,17,37,34,9,12,44,49,12,12,2,6,49,24,25,43,10,11,8,3}

    122

    Returns: 2862

  109. {41,18,49,8,39,1,21,21,7,7,2,46,2,40,14,2,25,38,33,24,42,21,13,36,32,10,23,47,32,2,30,4,38,26,24,22,30,8,32,42,2,31,2,2,16,14,25,50,20,23,25,46,47,16,47,39,26,49,28,17,1,41,35,48,38,37,30,21,20,21,36,13,11,17,26,44,21,11,27,22,37,35,39,4,18,42,41,30,23,42,9,40,15,43,14,2,49,25,15,37,11,8,9,32,16,13,26,6,3,31,26,42,19,6,22,48,4,1,42,25,37,1,28,42,16,30,37,10,23,16,6,29,23,35,18,39,49,19,49,17,21,20,42,10,30,32,22,15,45,35,26,4,28,25,29,28,18,5,17,24,19,35,19,6,50,26,35,32,37,1,40,3,18,14,38,42,20,20,2,23,41}

    {19,11,14,38,36,46,27,24,26,50,40,50,22,23,26,40,34,48,47,19,23,8,15,2,49,48,45,23,39,24,24,4,45,41,21,7,14,17,21,36,48,31,39,38,31,2,24,10,29,2,7,6,38,46,43,33,35,28,4,32,42,40,46,19,5,50,43,33,31,45,28,5,9,5,41,6,46,28,8,18,7,9,37,27,42,35,21,3,27,18,19,32,12,5,44,6,28,37,37,22,6,30,46,40,35,23,33,17,42,37,33,30,39,11,3,44,12,42,48,27,50,27,35,22,8,4,26,10,4,11,8,23,49,33,42,49,13,32,49,3,48,35,14,49,42,14,10,50,35,8,37,14,24,19,45,45,49,38,23,48,36,46,31,24,24,39,21,41,2,37,36,32,2,43,33,39,20,41,48,9,13}

    3

    Returns: 4485

  110. {13,30,6,44,20,49,35,45,14,3,6,16,6,4,27,48,32,48,20,38,1,2,37,32,14,25,41,10,9,12,22,32,27,27,20,16,21,12,42,17,18,15,3,25,41,1,9,35,33,39,42,24,23,37,12,12,6,37,41,6,36,45,26,20,43,39,28,25,17,21,23,40,15,28,18,4,48,18,13,1,20,43,39,35,23,18,8,25,2,24,49,22,34,34,17,39,5,19,20,13,28,24,28,33,7,28,48,13,50,1,27,1,10,30,49,46,41,37,30,19,26,41,43,29,6,19,24,24,11,12,9,9,48,23,24,4,42,27,47,41,33,4,28,49,42,40,24,35,13,32,44,27,17,10,25,33,24,6,33,9,5,38,23,23,30,42,34,14,17,26,2,38,15,41,2,21,24,22}

    {6,11,46,29,50,40,14,36,22,4,31,23,29,27,11,15,50,11,44,16,19,37,47,49,50,22,28,1,3,5,41,14,30,4,49,44,46,49,26,48,6,19,33,25,10,23,7,48,47,23,50,20,35,21,28,23,41,20,33,10,36,50,50,21,18,47,5,50,48,7,10,37,20,14,15,44,30,41,3,17,27,10,31,8,31,6,10,8,21,37,3,27,10,12,8,8,37,35,45,20,13,23,6,8,38,38,12,44,2,44,12,24,21,43,14,17,19,15,42,7,21,29,45,21,50,48,36,41,9,50,5,9,22,35,16,16,1,36,25,12,34,9,19,29,47,45,2,28,46,43,7,37,33,43,23,13,45,8,35,13,19,26,15,50,50,22,18,8,16,16,29,26,18,50,37,3,45,43}

    128

    Returns: 2983

  111. {28,34,23,13,30,37,35,46,48,10,33,14,14,31,32,32,9,4,17,20,46,32,29,31,48,34,5,2,37,5,24,41,11,12,46,38,39,44,34,10,43,31,35,24,9,6,7,6,35,36,37,38,47,13,39,31,2,45,26,38,43,40,21,35,14,7,12,20,32,9,31,33,41,45,20,9,29,40,13,24,18,25,8,2,19,49,48,41,38,32,30,6,26,23,33,27,50,50,14,28,13,6,7,17,4,28,22,45,8,45,37,48,10,24,22,9,31,32,5,30,22,27,18,16,48,4,20,44,11,15,13,34,24,27,18,28,40,46,46,10,24,32,38,16,23,31,46,32,47,24,39,30,40}

    {11,35,11,9,5,2,30,17,25,26,40,24,29,32,6,11,28,13,37,7,34,13,31,8,42,31,6,34,46,36,15,30,11,16,23,40,36,9,48,13,44,1,17,50,5,22,33,10,9,1,41,35,40,13,32,31,35,14,8,9,20,28,40,36,17,49,36,3,10,27,4,39,1,6,31,45,26,22,43,41,24,21,8,9,7,21,27,19,13,37,37,45,25,43,43,1,39,36,45,8,28,42,37,33,6,9,28,4,16,29,17,1,38,39,37,16,33,16,49,40,32,1,12,16,19,2,24,2,32,7,26,9,29,19,24,4,6,45,28,30,27,18,4,9,1,8,35,8,39,18,3,5,28}

    129

    Returns: 2536


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: