Statistics

Problem Statement for "DistinctGridEasy"

Problem Statement

You are given ints n,k and a int[] grid.

Cat Noku has constructed a 2d matrix of integers with dimensions n by n. Each element of the matrix is between 0 and k-1, inclusive. You are given the 2d matrix in a special format, in the int[] grid. grid has exactly n * n elements. The value grid[ i*n+j ] corresponds to the entry in the i-th row and j-th column of Cat Noku's matrix for all 0 ≤ i,j ≤ n-1. You would like to check if each row and column has exactly k distinct integers. If this is the case, return the String "Good", otherwise, return "Bad". (Note that the return value is case-sensitive.)

Definition

Class:
DistinctGridEasy
Method:
checkGrid
Parameters:
int, int, int[]
Returns:
String
Method signature:
String checkGrid(int n, int k, int[] grid)
(be sure your method is public)

Constraints

  • n will be between 1 and 50, inclusive.
  • k will be between 1 and n, inclusive.
  • grid will contain exactly n*n elements.
  • Each element of grid will be between 0 and k-1, inclusive.

Examples

  1. 3

    3

    { 0,1,2, 1,2,0, 2,0,1 }

    Returns: "Good"

    Here, Cat Noku has a 3 by 3 grid, and he wants to check whether each row and column has 3 distinct integers. In this case, the condition is satisfied, so we return "Good".

  2. 3

    3

    { 0,1,2, 1,2,0, 2,0,0 }

    Returns: "Bad"

    In this case, this grid is not good because the last column only has 2 distinct integers.

  3. 5

    2

    { 0,0,0,0,1, 0,1,0,0,0, 0,0,1,0,0, 1,0,0,0,0, 0,0,0,1,0 }

    Returns: "Good"

  4. 5

    3

    { 2,2,0,0,1, 0,1,2,2,0, 0,2,1,0,0, 1,0,0,0,2, 0,0,2,1,0 }

    Returns: "Good"

  5. 7

    4

    { 3,2,1,0,3,2,1, 3,2,1,3,2,1,2, 2,0,3,1,1,0,3, 1,3,0,2,0,3,0, 0,3,1,2,3,2,1, 1,1,1,2,1,0,3, 3,1,2,0,3,2,3 }

    Returns: "Bad"

  6. 31

    9

    {0,6,8,4,3,7,3,4,2,4,3,1,2,1,6,0,7,5,2,8,2,7,4,6,3,8,1,1,5,2,2,1,6,1,8,4,6,0,7,4,4,7,5,7,5,1,0,4,8,4,7,0,4,6,3,8,5,6,1,3,8,5,5,3,3,5,7,6,0,4,0,1,2,7,2,1,0,3,2,3,4,3,8,6,1,7,5,0,4,3,1,4,2,1,8,6,6,8,0,3,8,4,1,7,4,2,6,4,2,7,2,2,4,0,4,5,6,2,7,6,6,4,5,7,8,4,6,5,2,1,7,2,3,2,3,5,0,7,3,5,2,1,2,8,0,7,2,2,1,2,2,2,4,6,5,2,2,1,8,3,3,0,8,5,7,3,8,3,8,6,4,8,6,4,2,7,0,1,1,7,0,6,6,7,1,5,7,2,7,1,8,6,6,2,6,4,8,2,0,8,7,4,1,1,1,0,2,8,0,1,8,8,2,4,1,7,4,0,6,0,4,8,2,6,3,1,2,0,4,6,2,4,0,4,8,0,4,4,7,8,1,3,4,7,5,2,1,2,4,3,1,6,5,7,8,8,2,3,1,5,1,7,4,6,8,0,8,8,3,4,1,7,0,0,2,4,5,3,8,3,1,1,5,5,2,7,0,0,0,1,0,2,5,8,5,4,7,2,1,6,0,3,6,5,5,5,4,7,1,3,6,7,6,8,0,2,8,0,4,3,6,4,5,5,5,3,1,2,0,6,1,5,7,6,0,3,7,2,0,7,8,4,7,8,0,8,8,1,6,0,5,1,1,1,1,5,4,6,5,5,7,0,7,2,6,0,4,1,0,3,7,2,3,8,5,6,6,6,6,4,7,8,0,2,0,7,6,0,8,7,5,8,8,6,2,5,8,0,3,3,1,7,6,5,0,5,2,2,2,6,0,5,3,2,4,0,0,0,0,5,6,1,2,6,7,3,6,2,6,2,7,3,2,1,8,2,7,6,7,4,7,5,6,5,3,4,1,7,2,6,7,4,0,7,1,2,6,3,1,4,3,1,7,1,7,6,8,4,5,7,1,0,6,1,0,0,6,2,1,3,0,5,1,1,2,4,5,8,5,0,2,3,8,0,7,0,3,6,0,6,0,0,7,1,6,3,2,5,8,6,2,1,3,1,1,6,7,1,3,3,5,8,4,2,3,6,5,8,1,2,4,4,2,6,6,3,1,2,8,8,6,0,6,7,6,6,0,7,0,1,0,7,3,7,0,4,5,3,2,0,5,3,2,5,4,8,7,1,1,6,7,8,0,1,8,1,1,7,3,3,7,7,7,2,2,1,3,3,5,0,0,8,2,3,3,6,3,7,7,6,1,8,5,2,1,1,3,4,5,7,7,0,1,7,4,8,7,0,5,3,6,2,3,8,1,0,6,3,5,5,6,8,3,5,7,5,2,1,5,6,5,6,6,7,0,4,1,1,7,3,8,6,2,0,0,4,6,2,4,5,8,8,6,3,8,7,5,0,4,0,4,7,8,2,6,7,3,2,0,4,7,7,2,0,2,2,2,7,7,1,4,2,7,3,2,1,8,8,1,0,8,6,8,4,0,1,5,3,6,6,1,4,3,8,8,8,8,7,0,1,2,7,3,2,1,3,0,6,0,7,4,2,0,3,8,1,5,1,2,3,2,8,3,1,6,5,4,3,4,4,6,7,3,0,2,2,7,3,7,0,8,1,4,2,2,3,5,3,1,1,8,0,5,3,7,6,0,2,0,4,0,7,7,6,0,0,3,4,0,7,1,7,4,5,7,5,0,8,8,8,3,0,4,0,0,7,3,1,2,8,0,7,4,3,2,3,1,7,2,8,0,4,8,5,6,0,8,1,7,1,3,7,7,6,1,4,3,4,2,5,6,5,4,4,4,8,6,6,2,0,2,5,1,4,0,0,5,4,8,2,3,3,8,1,7,3,6,7,2,5,4,6,4,0,2,4,6,8,1,7,5,7,3,0,2,7,3,6,1,0,5,5,7,0,2,1,2,8,3,0,5,0,8,0,2,4,5,1,5,1,5,6,5,6,1,6,6,5,0,7,1,8,3,6,8,3,1,0,3,8,8,4,6,3,6,7,3,1,1,5,3,3,4,6,6,2,6,4,4,7,3,6,5,8,0,1,6,6,4,3,0}

    Returns: "Bad"

  7. 38

    17

    {15,12,0,6,13,15,2,8,3,11,9,16,6,7,12,9,6,7,16,8,15,11,12,7,10,10,13,15,6,6,3,1,3,11,16,9,8,13,10,5,3,4,5,4,8,11,15,5,0,11,0,11,11,0,15,16,12,5,12,6,7,6,10,14,4,3,11,10,12,3,7,4,12,7,10,13,3,0,14,0,9,0,5,16,7,16,8,11,4,1,16,4,10,1,12,3,6,16,3,16,14,12,6,2,7,2,15,4,5,4,6,8,16,2,7,4,7,12,2,10,12,0,15,10,5,8,3,1,6,4,12,14,11,9,9,13,0,10,10,15,3,6,5,15,15,10,10,2,6,11,11,9,10,1,2,8,2,10,1,5,4,12,16,10,7,6,1,11,13,1,0,3,11,10,5,11,0,6,12,14,16,15,12,3,3,12,6,16,5,9,10,1,10,6,0,13,0,14,0,3,8,6,15,9,12,16,16,10,4,4,3,2,15,12,16,16,2,6,9,14,14,2,10,8,16,14,13,11,12,13,7,11,3,8,15,12,11,8,12,8,4,2,1,6,15,3,5,12,5,12,3,16,10,12,9,15,13,15,4,4,10,8,16,5,15,15,0,15,5,11,11,5,10,13,0,1,4,16,8,8,7,11,14,13,16,15,3,15,1,8,14,2,0,7,7,13,11,16,3,7,13,0,2,11,10,10,8,9,6,13,15,5,8,16,1,16,3,3,9,3,1,5,12,13,7,13,11,6,0,3,3,11,4,16,10,6,14,14,2,11,10,11,7,5,0,15,7,10,13,2,0,13,8,9,11,6,4,10,13,3,4,7,2,0,0,16,1,6,12,2,16,7,12,13,15,10,15,1,10,2,6,5,9,11,2,2,7,3,7,7,9,3,7,15,8,8,13,14,7,16,7,15,14,12,15,1,12,8,3,16,7,1,8,2,7,10,3,10,10,15,11,5,0,5,8,5,2,0,5,11,3,16,15,9,3,13,9,15,6,12,7,1,5,11,16,5,15,15,6,1,4,14,6,1,9,4,5,12,1,10,6,1,10,9,6,5,1,9,5,15,14,9,14,16,7,15,0,5,11,15,2,11,4,8,11,3,14,1,9,4,13,4,10,0,12,1,12,0,6,0,1,8,7,7,5,15,1,10,11,13,12,7,16,15,7,7,9,1,8,11,3,4,10,6,16,13,13,5,12,6,7,11,7,13,14,3,1,3,5,2,12,2,8,9,14,9,9,2,9,12,8,10,13,8,5,6,6,12,6,10,14,3,12,3,4,13,8,11,0,15,9,0,1,5,3,11,13,11,13,8,8,8,4,2,12,16,6,10,6,16,15,15,12,5,13,4,12,1,13,7,2,2,14,16,2,8,6,9,4,14,2,5,6,2,13,11,11,9,13,6,8,15,3,2,13,2,12,15,7,15,6,6,0,5,2,16,7,12,15,3,15,10,13,15,14,4,1,3,8,4,12,7,5,3,10,15,3,4,6,12,10,16,12,8,2,6,14,16,14,2,13,4,9,10,11,8,10,10,13,5,5,9,4,5,3,11,4,5,14,7,6,13,0,11,15,12,9,2,10,9,7,0,16,7,9,4,4,4,3,2,16,15,13,13,4,9,1,14,8,3,11,9,0,4,14,7,8,3,13,16,7,14,4,6,7,4,0,0,16,16,1,16,10,3,10,2,8,8,9,11,7,7,10,3,9,14,10,12,0,13,4,0,0,14,13,9,8,1,14,4,3,11,13,13,12,6,7,15,2,14,5,1,6,11,16,5,11,2,13,8,7,9,5,2,6,15,5,8,9,9,9,12,6,15,10,2,2,6,13,8,10,3,9,6,6,2,16,1,4,4,6,14,15,1,5,9,7,4,6,13,12,13,10,13,8,0,4,12,8,2,8,4,5,0,15,10,9,12,16,15,6,10,13,16,16,3,2,7,6,7,4,4,3,6,13,7,4,8,15,15,1,12,3,4,16,6,10,1,15,10,15,4,12,9,0,8,10,0,15,1,13,1,12,10,6,7,1,3,12,14,7,7,13,16,1,8,15,15,11,5,2,12,8,13,13,3,2,11,0,16,11,13,5,9,11,11,10,10,9,10,13,13,2,15,4,5,2,16,0,14,9,16,3,9,0,11,0,10,11,3,1,7,0,13,6,15,15,5,16,15,12,6,16,8,4,7,1,1,2,7,7,4,0,10,5,9,1,7,6,4,14,5,14,6,2,9,7,7,15,3,6,4,14,10,12,14,1,15,15,5,10,7,14,0,4,16,4,5,11,12,0,13,7,9,8,5,8,15,2,6,3,7,16,8,0,7,11,13,6,2,13,15,3,1,0,2,0,0,10,5,11,10,10,10,7,12,15,6,2,5,15,0,16,10,12,0,11,11,5,15,9,10,16,1,3,8,5,7,9,0,16,11,7,11,0,9,6,1,9,0,8,7,14,10,4,16,4,9,4,0,1,13,16,1,11,9,5,9,13,6,0,14,4,9,8,3,7,15,9,11,8,9,15,7,12,6,7,0,15,14,9,2,16,15,6,13,7,16,11,8,6,3,15,14,9,3,0,7,10,3,0,5,13,2,7,7,7,11,4,5,3,14,6,4,9,16,11,12,4,5,8,3,3,3,5,7,3,0,13,6,6,4,0,1,11,16,10,7,6,8,3,3,5,10,11,2,2,5,0,5,8,14,0,8,6,10,6,5,13,0,2,9,5,3,10,0,13,12,12,16,7,3,5,6,1,3,10,13,14,15,1,14,12,3,15,11,1,15,3,16,14,3,9,7,15,15,8,16,15,5,5,9,15,9,1,3,16,4,4,16,13,5,11,1,15,9,15,7,6,10,0,2,4,16,2,8,11,11,6,16,9,16,10,0,15,14,13,8,6,0,4,11,5,15,16,3,12,7,6,15,1,1,8,12,14,10,8,2,12,6,3,7,0,16,14,8,1,10,13,11,9,11,13,15,13,9,9,5,5,6,12,0,4,7,2,0,12,8,15,8,10,3,11,2,12,12,16,13,2,16,6,11,0,14,11,12,4,6,9,10,4,3,4,2,1,5,7,0,12,12,10,8,1,6,10,13,14,0,7,8,0,1,11,14,16,2,5,6,15,10,2,3,7,14,4,13,4,0,12,16,5,1,8,8,10,16,9,10,14,3,14,8,7,0,13,6,8,12,14,1,2,6,9,5,16,12,4,15,3,13,10,4,1,2,15,13,13,4,9,8,15,2,11,8,2,5,6,7,6,13,11,12,6,9}

    Returns: "Bad"

  8. 40

    10

    {3,8,4,0,0,5,4,7,7,6,0,5,1,6,6,8,7,0,6,3,9,9,3,5,5,9,3,7,9,3,1,6,7,3,9,2,2,6,3,8,7,2,6,8,0,3,7,3,6,8,0,9,7,0,7,9,6,2,0,6,0,4,3,1,9,5,2,2,0,0,1,4,8,2,4,3,9,7,9,3,7,4,5,9,5,1,1,0,9,6,7,3,3,2,2,1,7,7,1,3,8,7,8,5,2,8,4,7,0,7,7,1,4,3,8,1,8,9,7,2,4,9,7,9,6,6,3,9,7,7,4,4,8,9,0,2,5,3,3,6,9,2,5,9,7,0,4,9,3,6,4,1,2,8,0,0,3,4,7,8,4,4,9,2,0,7,9,8,8,4,7,0,8,5,2,3,4,7,1,9,9,2,7,0,8,0,9,6,0,9,2,8,9,3,2,7,3,4,2,5,5,9,7,2,2,8,5,9,0,1,7,1,6,5,7,8,6,7,7,8,8,3,1,7,6,2,0,0,1,2,6,9,1,0,0,8,3,6,7,5,0,8,1,9,1,0,9,7,2,4,6,8,7,4,6,5,9,0,0,5,9,0,3,8,9,1,6,7,7,0,4,8,9,6,1,7,7,0,4,9,5,3,1,4,6,3,3,4,0,4,3,6,4,9,0,8,9,6,8,8,4,2,3,5,9,5,3,5,3,1,6,5,8,9,3,0,7,4,7,9,1,7,7,8,2,4,6,9,2,7,2,8,6,1,4,4,6,9,2,0,7,3,6,9,9,8,8,4,4,9,3,9,7,2,7,3,1,1,1,1,1,6,7,9,9,2,4,7,0,1,1,8,4,4,3,1,9,9,7,1,3,9,6,4,7,1,7,8,8,7,7,9,2,8,1,4,7,9,0,0,0,3,7,9,0,8,7,9,1,7,7,1,0,9,9,5,7,3,9,9,7,4,8,4,3,1,7,9,8,7,6,8,7,5,5,0,7,3,2,3,0,0,6,1,0,1,4,9,6,1,2,9,7,8,1,1,4,1,7,2,8,3,6,3,3,5,7,2,5,9,6,2,7,2,4,5,5,2,0,8,9,7,9,9,6,2,1,8,5,3,3,1,6,9,2,1,2,0,3,7,5,4,4,6,4,4,8,6,8,7,5,4,2,7,8,4,9,3,3,3,0,8,5,2,9,9,3,5,2,2,6,5,0,1,9,7,3,1,6,9,1,0,6,3,4,6,4,5,7,1,4,6,2,8,1,4,7,0,7,2,9,3,3,9,7,1,1,3,1,4,4,3,7,9,0,8,7,0,5,0,1,9,2,6,7,6,3,7,2,3,0,3,9,6,3,6,5,5,5,1,4,0,1,0,7,5,3,5,0,9,0,5,3,6,1,7,8,3,8,4,4,4,4,2,5,7,5,0,6,6,0,7,4,3,1,6,9,5,9,4,7,1,0,4,7,7,3,4,6,9,5,7,9,8,9,9,0,8,3,7,1,9,4,1,9,1,4,8,6,8,5,8,4,6,2,2,2,6,3,2,0,4,6,3,7,8,5,0,4,8,6,8,1,4,5,0,0,2,0,2,9,7,4,8,3,5,1,5,3,1,2,7,4,6,3,0,0,8,2,0,0,8,9,5,9,7,2,4,0,4,8,2,7,5,6,1,3,3,2,8,9,6,8,8,6,1,5,2,9,8,7,8,9,4,0,8,8,8,1,2,3,3,7,4,0,5,3,6,1,9,9,5,9,0,5,7,0,5,3,1,0,6,4,0,4,3,2,2,7,4,8,5,2,8,6,9,8,3,7,6,8,1,8,4,7,0,7,4,3,0,6,8,6,6,1,4,6,1,7,6,3,2,5,4,9,9,9,7,4,3,1,6,1,0,1,8,1,7,4,3,7,7,1,2,7,7,4,8,3,9,3,7,6,0,7,2,8,9,6,9,8,7,1,5,8,5,8,6,5,7,1,9,7,2,3,6,1,2,7,4,6,8,5,9,9,2,9,8,4,4,8,7,9,4,2,5,4,0,3,3,2,9,8,0,4,4,5,6,1,3,5,0,9,3,4,2,3,6,3,9,9,1,2,2,9,1,4,6,0,7,1,9,8,3,3,2,7,9,6,0,7,5,7,1,8,7,4,3,3,3,7,5,3,3,7,0,4,4,6,7,7,5,1,9,4,0,9,5,7,3,1,9,0,9,7,9,2,7,7,5,3,0,6,4,8,0,9,6,3,9,3,1,6,3,5,8,6,5,0,1,8,4,4,3,1,3,5,2,2,0,2,7,1,4,0,7,6,1,2,2,9,0,6,0,8,1,9,1,6,7,7,5,6,9,8,2,8,9,7,5,5,9,9,2,9,0,7,5,4,5,2,5,8,5,9,2,2,5,4,5,5,3,6,9,1,9,9,6,5,8,6,5,9,3,1,1,3,2,6,8,8,8,8,3,7,4,8,3,5,0,4,8,2,2,5,0,5,6,9,9,5,1,2,6,3,1,2,5,2,3,8,1,4,1,4,0,9,1,3,9,1,5,3,2,1,9,5,6,1,8,4,8,9,6,0,3,1,2,6,6,2,1,0,3,6,2,5,2,1,8,5,1,1,8,6,3,9,7,9,8,5,7,1,9,3,2,4,7,4,0,9,2,6,6,1,2,4,9,3,8,3,2,5,6,9,5,1,9,2,1,5,6,3,5,4,9,4,9,4,7,6,0,4,4,0,3,6,8,4,7,8,4,5,9,9,6,7,5,7,1,7,6,2,3,8,2,5,4,4,3,0,0,1,0,5,8,5,6,2,0,4,2,0,5,6,3,8,0,4,2,7,9,1,9,9,4,4,6,2,9,5,2,7,7,4,9,0,2,1,5,9,1,8,8,5,0,9,5,6,1,3,5,4,7,3,1,6,8,7,2,2,3,7,4,9,9,4,8,0,7,6,2,3,1,3,0,8,2,7,9,4,3,4,2,3,1,6,9,7,0,5,0,5,7,4,6,8,3,1,9,6,8,9,6,4,3,3,3,2,0,8,1,5,5,2,9,3,6,9,1,5,0,5,4,6,0,7,3,8,2,8,2,1,9,0,9,5,1,4,8,9,0,7,7,1,8,1,6,0,7,1,9,3,1,2,4,3,3,4,5,8,1,9,0,7,2,7,1,0,8,4,3,6,2,2,3,5,6,5,0,3,2,7,3,2,7,8,9,4,2,3,3,5,9,8,1,8,4,6,8,2,1,6,0,1,5,5,5,2,4,4,8,1,8,8,4,3,2,7,3,8,7,9,1,8,8,3,9,2,0,6,4,9,2,0,5,6,3,9,3,4,4,0,9,4,3,5,9,1,3,9,5,4,6,7,9,8,0,8,7,2,8,2,8,5,2,2,0,7,6,7,6,0,3,5,2,7,9,9,2,3,8,7,9,3,1,7,9,1,9,9,5,9,8,9,7,5,4,3,7,8,6,7,6,5,6,6,2,5,4,5,2,5,1,2,1,9,1,5,2,3,1,1,3,3,7,1,3,7,2,0,6,1,6,6,9,1,5,4,1,0,2,2,9,3,1,3,2,4,8,7,3,4,0,0,6,5,8,4,4,3,8,0,2,6,6,8,4,7,0}

    Returns: "Bad"

  9. 34

    10

    {3,6,4,0,3,2,9,8,1,5,7,1,4,2,3,5,7,8,2,5,9,0,1,8,0,3,5,4,8,0,1,6,7,4,0,5,3,1,6,1,4,2,7,2,2,7,8,0,9,8,5,4,2,1,4,0,5,4,2,3,8,2,2,7,1,7,9,2,7,8,2,5,3,3,1,7,6,1,5,2,4,3,3,1,9,1,9,5,6,6,9,6,8,7,1,7,9,2,6,7,1,0,6,2,9,9,0,2,9,7,5,4,8,5,8,2,9,4,5,3,6,5,8,5,7,2,5,5,3,2,6,4,4,8,5,6,0,5,4,7,7,7,5,7,0,7,1,8,5,3,3,2,8,3,1,7,4,9,5,5,0,6,5,7,9,6,2,2,3,9,2,5,2,6,1,0,8,7,2,7,0,3,9,9,7,8,5,7,1,8,8,5,4,3,5,1,5,1,9,3,7,0,7,2,2,9,5,4,6,4,2,0,2,0,0,5,9,3,0,4,8,8,1,8,1,9,0,6,7,9,3,4,9,3,4,2,7,1,9,7,3,4,2,4,5,8,5,2,5,8,0,4,2,1,0,1,9,1,3,9,4,7,2,2,6,5,5,7,9,9,6,3,4,8,6,0,0,8,0,4,4,4,0,4,2,5,2,8,2,5,8,8,9,8,5,5,8,4,4,1,2,4,5,7,6,0,9,3,1,5,1,2,9,6,6,4,4,1,8,9,8,4,6,1,7,6,4,0,3,5,4,4,3,9,0,7,2,3,4,7,9,3,6,3,6,7,3,0,6,8,4,3,0,4,9,0,7,4,1,7,0,1,8,7,3,3,8,4,4,7,0,2,9,6,5,4,7,6,8,8,2,3,1,7,5,7,4,3,4,7,9,8,7,1,9,0,9,4,6,4,0,7,9,1,1,2,1,8,4,0,7,1,2,1,1,5,1,7,6,1,2,6,2,7,2,4,8,5,6,2,1,3,5,4,2,4,6,7,0,1,2,3,3,6,0,2,1,7,7,6,0,0,6,2,7,8,6,6,1,6,7,0,5,7,1,5,3,1,5,0,5,1,5,7,1,8,8,5,6,6,5,0,0,2,5,6,6,8,5,7,8,8,6,7,7,2,0,3,3,7,2,1,3,2,0,3,4,3,9,5,7,5,9,5,5,6,2,2,8,6,8,0,6,4,9,7,4,3,5,5,3,4,5,0,2,9,6,8,3,0,0,0,8,9,0,2,9,9,6,7,5,7,2,0,5,6,7,5,0,4,5,6,9,2,4,7,2,4,0,3,5,6,4,2,8,1,6,7,2,8,8,1,5,3,7,3,3,7,1,5,8,5,0,9,9,8,0,8,1,9,5,1,2,8,2,1,9,0,9,9,5,1,0,3,9,0,8,6,1,2,6,7,8,9,4,0,8,0,7,2,7,8,0,3,2,5,0,8,5,8,6,5,7,3,5,4,6,9,1,4,0,9,5,9,1,1,1,8,6,2,0,9,0,0,9,0,0,1,5,5,1,5,1,8,4,0,3,0,1,6,1,3,8,4,3,6,5,7,5,9,6,5,2,9,2,8,4,5,2,3,6,8,5,6,2,2,2,2,4,9,5,4,7,2,2,8,3,9,2,6,2,8,3,2,1,5,9,0,2,9,5,3,4,4,8,3,6,3,0,3,6,8,0,4,0,3,1,5,2,0,7,8,6,7,4,7,1,8,0,1,3,5,4,7,4,3,1,7,6,9,7,3,8,5,1,8,4,7,2,4,8,5,5,0,0,6,2,9,1,4,1,8,9,6,4,7,5,1,9,7,5,5,6,1,4,6,8,7,3,7,7,4,1,1,2,6,4,3,9,5,0,7,2,7,0,9,5,8,6,7,9,2,0,1,7,1,6,6,3,9,9,9,6,9,9,3,4,2,0,2,7,0,8,5,6,5,9,9,5,7,3,6,9,0,5,8,1,0,4,9,0,8,2,7,1,2,8,4,1,0,7,7,7,5,1,2,6,0,7,9,6,1,3,8,7,4,3,2,9,1,6,5,9,5,1,9,9,9,3,3,4,4,1,1,5,8,6,1,4,1,0,6,1,1,1,2,2,3,0,2,8,3,3,5,4,5,6,4,2,0,3,8,6,4,2,4,5,4,3,7,2,8,7,9,2,7,0,9,1,5,9,7,8,1,3,3,4,6,5,0,9,3,6,1,6,9,8,1,6,5,6,7,7,0,7,1,4,8,6,7,8,4,7,6,0,4,2,3,4,8,3,4,6,3,9,9,0,6,4,2,6,7,9,5,2,3,9,8,0,0,1,9,5,9,1,3,1,3,1,2,6,1,5,3,7,3,9,5,6,5,7,3,5,6,0,4,2,6,1,9,4,0,0,2,0,2,4,2,3,8,2,8,9,0,4,1,0,2,8,6,8,9,6,6,9,0,5,8,8,1,3,9,6,0,4,0,6,2,6,8,6,2,5,7,9,1,4,6,3,7,8,2,3,0,3,4,7,7,4,4,6,8,6,3,4,1,3,8,0,3,8,2,4,1,2,0,4,6,3,5,6,6,0,4,3,2,0,0,5,6,5,7,8,4,5,8,2,3,6,0,5,1,7,3,8,4}

    Returns: "Bad"

  10. 23

    3

    {1,2,0,1,1,1,2,0,2,2,0,1,2,2,0,2,1,1,1,2,1,2,1,2,0,1,0,1,0,2,2,2,1,0,1,1,0,0,0,1,2,0,1,2,2,0,1,0,1,2,2,2,2,0,0,1,0,1,0,0,0,1,1,2,0,1,2,0,1,2,2,2,2,0,1,2,0,0,2,1,0,2,0,1,1,1,0,2,1,0,1,0,2,1,1,1,2,1,2,0,1,2,0,1,2,1,0,1,1,0,2,1,1,2,1,2,2,0,2,0,1,2,1,1,0,0,1,2,1,1,1,1,0,2,0,2,1,1,0,0,0,0,0,1,2,1,1,2,0,1,1,0,0,0,2,0,0,1,1,0,1,2,1,2,0,0,2,1,2,1,1,2,1,1,0,0,2,2,0,1,1,1,0,0,2,1,1,2,2,0,1,2,0,2,0,1,0,2,1,1,0,2,2,1,2,2,2,0,1,0,2,1,0,0,1,0,2,0,0,0,2,1,1,1,0,1,1,0,2,1,0,0,0,2,2,0,2,1,0,1,0,2,1,0,2,2,1,1,2,2,2,0,2,1,1,1,1,1,0,2,0,2,2,0,1,0,1,1,0,0,0,0,2,2,1,1,0,0,0,2,2,0,1,1,0,0,1,2,2,2,1,1,2,2,1,1,1,0,1,2,1,0,1,2,0,0,2,1,0,2,2,0,2,1,1,2,0,0,0,0,2,1,2,1,0,1,0,1,1,2,0,2,0,0,0,2,1,1,1,2,2,2,1,2,0,1,1,2,2,0,1,0,0,2,0,0,0,1,0,0,2,0,2,1,0,2,2,1,2,0,0,0,1,1,2,1,1,2,0,2,0,0,2,1,2,1,2,2,1,1,0,2,0,1,1,2,0,0,2,2,1,1,2,0,0,1,1,1,2,1,1,0,1,2,2,1,1,2,2,1,0,0,2,0,0,1,2,0,1,2,1,1,1,0,2,2,1,2,0,1,2,2,2,1,0,1,1,2,2,1,0,0,1,2,2,2,0,0,0,0,2,2,0,0,1,2,1,2,2,0,0,0,2,0,1,2,2,2,1,1,2,1,2,1,2,2,0,2,1,1,2,2,2,0,0,2,2,1,1,1,2,1,0,1,2,1,1,2,0,0,0,2,1,2,1,2,1,0,1,1,2,1,0,1,1,0,0,2,2}

    Returns: "Good"

  11. 22

    14

    {7,13,12,13,8,2,12,13,10,1,0,2,10,0,10,11,9,4,13,4,13,1,8,5,7,6,2,12,12,2,11,9,11,8,13,2,2,3,11,1,1,9,12,12,6,1,13,7,2,5,1,5,12,0,4,8,10,11,5,7,10,5,13,6,0,2,2,3,3,4,6,2,9,8,10,1,7,4,13,13,9,7,13,6,11,12,9,4,0,0,9,4,11,8,2,0,1,10,8,6,2,7,1,5,2,12,12,0,0,3,4,3,3,4,9,7,7,12,0,0,13,8,11,0,11,2,8,3,13,10,8,7,12,4,7,2,4,12,12,3,4,12,9,5,4,13,1,9,2,13,12,7,2,3,2,3,13,8,13,8,0,9,4,13,7,12,1,13,5,4,4,13,4,1,4,3,13,13,1,10,7,3,4,6,8,12,1,4,6,5,6,11,5,8,8,10,3,6,5,7,6,2,10,12,6,9,3,10,5,3,9,1,5,6,13,4,5,9,4,0,10,2,12,12,2,10,9,7,2,2,3,7,9,9,9,7,13,11,1,13,0,4,13,9,1,12,10,11,10,6,12,12,6,12,10,6,10,8,1,12,12,9,5,7,0,0,0,4,13,4,0,5,10,10,1,9,12,0,0,12,3,1,8,13,2,8,3,13,13,6,7,9,12,7,4,10,10,11,10,1,5,4,2,8,12,13,2,13,6,6,4,13,4,6,0,11,12,2,11,10,10,10,1,0,5,7,6,7,13,4,4,5,10,5,10,5,5,6,12,1,0,11,11,2,11,8,4,5,6,6,4,11,10,8,3,3,6,6,1,12,9,3,8,13,0,11,13,2,5,7,1,6,7,13,2,6,3,10,6,5,2,9,5,3,8,10,0,0,3,10,8,5,7,7,5,8,7,13,4,3,7,7,11,7,2,11,3,11,8,3,10,5,2,13,5,7,11,9,9,2,9,2,9,12,6,1,8,5,1,13,0,9,3,11,4,11,9,11,12,4,3,0,8,0,2,4,2,4,12,12,4,3,1,6,10,4,1,4,11,10,1,10,5,10,8,6,9,6,10,3,2,10,5,13,4,5,5,5,10,9,6,13,4,8}

    Returns: "Bad"

  12. 25

    22

    {0,18,15,16,14,7,14,8,20,12,18,2,2,11,20,6,2,17,1,0,16,21,2,8,8,20,16,17,2,13,14,5,14,18,5,6,17,12,0,6,10,17,1,12,11,7,5,17,17,19,12,0,5,5,13,3,13,10,15,6,1,4,17,21,15,21,16,20,19,3,20,7,13,21,4,11,21,4,14,17,1,3,12,3,18,4,15,6,4,7,15,5,9,18,12,16,1,7,18,16,5,17,20,8,0,18,20,17,13,8,5,18,0,4,2,8,0,14,19,4,8,7,19,14,17,5,15,13,3,6,15,1,0,10,21,20,19,19,6,5,1,0,5,1,3,10,10,9,20,2,5,9,10,0,18,16,3,18,16,15,21,21,0,18,12,14,8,6,11,3,6,12,13,13,11,17,7,7,9,16,21,8,13,6,9,13,4,21,14,4,7,12,9,12,10,9,21,21,20,9,3,14,17,18,21,18,5,9,9,6,13,20,11,6,11,16,2,6,19,15,3,0,4,8,1,9,4,14,3,20,2,21,5,7,14,14,4,5,20,8,21,6,10,0,18,13,19,7,8,14,1,7,15,18,2,18,13,17,18,14,12,3,21,9,16,0,3,8,0,10,9,6,2,13,21,20,7,6,16,17,15,7,1,16,3,9,5,17,7,13,5,15,21,11,17,11,16,0,16,14,17,16,12,18,17,11,20,13,3,21,6,9,17,4,19,21,11,11,14,17,6,8,7,16,16,21,8,4,10,13,18,1,17,6,14,3,3,13,11,7,17,12,20,4,19,12,6,21,0,5,5,0,16,14,6,5,20,5,6,7,7,20,19,5,15,11,15,5,10,5,21,11,0,7,1,10,14,12,4,18,15,9,15,10,6,11,12,12,6,20,11,1,6,0,1,2,21,21,5,1,17,5,11,1,7,0,13,18,1,19,2,5,6,16,19,8,13,9,21,6,13,18,10,6,14,8,14,8,0,15,21,21,7,15,12,19,7,8,1,5,20,0,18,19,5,4,8,18,1,4,20,0,8,12,20,10,16,6,1,6,8,4,11,17,21,6,6,19,8,19,20,4,19,4,15,11,21,21,5,17,1,10,5,4,14,8,11,8,5,4,1,14,0,21,5,13,16,14,7,20,14,14,18,14,21,21,15,1,9,10,1,3,3,1,17,9,1,7,6,11,10,1,1,2,0,17,8,5,0,21,12,4,8,14,16,12,16,2,2,0,17,12,10,4,18,19,15,17,7,9,14,11,0,11,16,12,12,4,14,13,12,3,12,15,9,4,13,4,7,9,1,21,18,2,10,4,21,20,12,14,15,10,11,21,15,19,3,2,3,1,19,14,1,17,0,1,16,13,16,7,6,0,20,13,18,14,7,11,10,16,6,12,1,13,11,4,16,12,15,18,19,10,17,6,18}

    Returns: "Bad"

  13. 30

    13

    {10,8,3,4,1,12,11,4,11,5,7,8,6,0,10,8,6,9,8,10,9,0,6,7,3,3,11,6,10,8,2,12,6,0,9,2,4,0,7,9,1,1,4,10,2,2,4,7,2,0,4,10,8,9,3,6,8,11,7,7,3,2,1,10,2,6,3,9,7,0,2,3,0,7,12,1,9,9,6,5,12,11,10,6,2,6,2,6,12,1,3,1,6,3,7,8,9,9,6,3,2,9,8,9,4,12,10,3,5,1,6,7,7,7,9,7,0,3,4,3,10,10,0,4,9,7,7,4,1,9,5,4,2,2,2,12,1,0,8,9,10,8,6,5,7,0,0,4,2,9,10,4,8,9,5,0,6,9,12,12,7,9,7,10,2,2,1,2,10,9,12,7,3,1,11,1,4,11,6,4,10,1,10,11,3,9,10,11,9,5,7,9,7,2,8,6,2,4,8,11,3,2,3,10,6,4,10,4,6,5,1,6,8,11,6,7,9,8,2,1,5,11,7,12,10,10,10,8,3,7,5,12,6,2,1,1,4,11,3,6,12,4,4,8,1,0,11,8,3,1,11,5,2,6,8,4,5,6,2,5,9,12,11,10,9,8,0,2,3,8,8,12,0,8,7,3,7,5,6,8,5,7,0,6,2,0,12,3,1,3,9,5,6,10,10,0,8,3,11,9,6,0,8,9,1,3,1,10,10,5,8,8,8,1,7,10,9,6,9,8,10,3,8,1,12,10,9,0,7,11,2,3,12,4,1,2,10,7,2,6,7,10,12,5,2,10,12,0,1,8,8,10,7,2,5,9,1,7,8,3,9,2,1,9,9,2,10,5,10,2,5,2,12,11,1,7,0,8,6,4,6,1,3,12,7,2,5,9,7,5,0,3,8,5,3,10,10,7,3,3,12,4,1,5,0,10,6,11,11,10,12,0,6,9,9,1,2,4,5,12,3,5,3,6,8,7,3,1,12,9,3,0,12,9,5,11,12,6,9,12,3,3,2,11,7,1,7,6,1,11,10,2,2,6,9,9,4,12,12,6,11,7,6,6,8,9,3,10,4,0,3,3,7,12,12,6,7,2,0,12,7,4,6,7,5,4,0,6,5,3,6,3,7,3,1,9,5,9,9,2,1,6,3,0,7,3,5,11,3,6,3,8,0,1,8,4,1,8,6,0,0,4,1,2,2,12,11,8,0,8,6,9,1,8,7,0,9,8,8,12,1,9,5,12,11,8,1,1,10,8,12,1,12,7,6,6,10,1,6,6,4,0,11,3,4,0,5,10,1,9,11,6,5,3,2,10,4,7,12,3,2,9,7,6,4,5,4,10,3,5,3,8,10,10,12,0,10,8,9,12,10,3,1,8,4,2,1,0,5,8,10,12,8,12,4,4,9,3,0,7,6,11,9,12,6,0,6,5,3,3,1,1,8,6,3,8,8,9,1,4,9,2,0,11,8,7,5,12,9,4,10,7,1,2,9,9,4,1,3,12,8,8,10,3,5,2,12,4,8,2,12,11,9,3,2,8,2,3,11,1,11,4,11,12,1,1,9,10,6,1,12,10,7,3,6,8,6,3,1,8,9,2,6,10,8,0,0,3,11,3,9,11,1,5,0,9,8,7,9,9,0,4,1,4,0,2,4,5,7,0,8,10,4,4,6,8,0,9,7,11,4,0,0,7,8,8,6,11,7,6,4,7,1,2,10,12,2,3,5,12,6,7,1,9,9,6,5,11,12,4,9,8,0,12,10,3,11,4,10,1,12,7,6,7,8,4,12,7,12,5,4,3,11,7,5,2,7,2,10,3,2,12,12,4,10,2,3,0,3,1,0,4,4,12,4,6,6,2,2,4,12,6,12,7,4,12,5,12,3,5,4,6,11,6,4,4,0,2,12,12,7,9,7,3,7,2,3,10,6,1,12,11,11,8,9,2,1,5,3,10,11,6,0,3,6,0,6,12,1,0,4,12,11,7,9,0,5,5,0,1,8,8,1,10,0,4,0,11,8,7,0,1,0,5,8,8,7,1,5,11}

    Returns: "Bad"

  14. 12

    5

    {3,1,3,4,3,2,4,1,2,1,2,3,4,0,2,3,2,0,0,4,3,2,1,4,1,0,1,4,3,4,2,1,2,0,0,0,0,2,3,4,2,3,1,2,1,4,1,1,1,1,3,0,4,3,3,4,3,2,0,1,1,4,0,3,4,3,1,1,0,1,0,3,2,3,0,1,1,2,4,3,0,4,2,4,0,4,3,1,3,2,0,2,4,1,3,3,0,0,4,3,2,1,1,1,1,1,4,4,2,1,3,4,1,1,0,1,0,0,4,3,2,3,4,0,2,1,1,1,1,4,0,3,3,3,4,2,4,3,4,3,1,2,3,0}

    Returns: "Bad"

  15. 40

    37

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

    Returns: "Bad"

  16. 41

    26

    {14,11,20,15,3,7,18,16,15,3,16,18,4,18,5,7,17,2,19,4,10,19,25,19,6,4,5,25,11,25,22,19,23,1,5,18,15,11,15,25,25,18,12,9,18,16,6,13,20,21,18,0,16,18,7,0,7,17,14,2,23,20,20,6,6,1,23,22,17,8,22,8,1,15,23,4,21,3,15,4,18,12,18,6,2,10,15,11,3,25,17,16,7,12,12,25,1,3,25,7,0,15,23,3,3,1,13,21,22,2,23,23,15,3,20,20,10,1,9,0,13,3,17,11,21,22,17,6,8,18,2,24,24,11,22,20,3,23,9,23,20,7,19,8,15,18,10,17,11,8,17,2,10,0,12,3,6,1,24,9,13,18,11,11,22,2,3,19,18,20,20,6,23,17,14,11,17,2,21,15,0,8,5,4,24,1,2,16,6,18,25,0,13,25,0,23,22,23,9,15,9,3,2,9,11,23,4,13,1,8,4,1,15,12,17,15,21,3,5,15,14,23,3,14,5,14,4,2,22,15,2,16,24,2,25,9,14,3,9,2,17,8,12,20,10,3,19,20,24,18,18,11,24,23,4,20,1,8,12,1,14,16,17,13,7,18,9,19,16,24,22,8,25,16,10,7,20,22,17,10,3,1,21,11,14,6,4,19,1,4,17,17,24,0,6,9,7,12,15,22,22,22,7,12,25,9,7,14,17,13,20,10,8,1,9,4,15,10,0,4,19,24,25,17,0,6,2,25,0,3,17,11,18,15,18,17,12,18,21,7,8,8,19,5,22,0,1,0,5,5,14,11,20,0,16,19,20,13,4,5,5,13,1,2,4,1,4,3,14,10,15,4,16,1,7,14,3,20,8,7,15,20,19,21,11,24,19,4,4,4,0,21,1,1,6,17,25,7,17,7,12,13,23,11,3,21,6,5,6,2,11,2,5,23,10,21,15,8,6,10,20,12,19,10,25,1,2,8,22,18,4,9,14,15,4,19,20,20,15,5,10,7,10,24,17,3,13,23,24,4,6,25,9,13,10,16,2,14,3,1,17,18,1,7,14,24,1,3,16,8,2,25,22,1,20,8,11,15,22,9,5,4,11,24,21,14,13,20,11,5,0,12,0,12,22,14,3,1,9,15,24,9,19,5,23,19,5,14,24,24,14,14,24,13,4,24,8,8,23,10,22,20,15,24,19,24,24,18,19,17,21,8,12,22,25,17,9,13,11,25,25,11,6,7,9,17,5,8,23,22,22,7,21,10,22,15,8,25,20,19,10,17,9,21,2,23,18,1,25,4,15,7,9,11,9,13,13,18,2,20,22,9,8,23,18,10,10,2,15,6,7,0,7,11,9,24,12,14,21,19,12,22,14,5,19,23,13,6,18,19,21,19,1,17,12,14,10,9,22,6,20,16,12,6,0,10,12,0,5,7,21,3,9,8,19,11,20,12,7,17,2,12,11,18,18,8,18,10,17,6,25,5,20,12,8,19,13,22,13,16,4,15,21,14,15,8,6,20,11,11,8,16,17,9,6,2,3,19,11,8,11,3,15,10,14,19,23,2,0,2,13,11,24,23,21,11,20,25,18,9,16,10,12,9,6,14,23,25,5,21,17,3,23,17,23,11,25,17,20,21,10,16,7,4,19,12,25,16,14,0,2,13,3,18,12,8,2,13,5,13,12,8,13,2,24,6,8,14,18,13,16,14,16,19,24,23,12,23,10,1,25,16,9,13,16,11,11,8,9,17,18,7,4,8,22,17,22,7,0,22,15,13,5,6,15,10,24,23,22,19,2,12,15,0,7,21,4,14,2,1,2,6,19,0,21,25,15,14,9,14,6,12,0,5,6,20,1,6,4,2,6,4,6,17,9,21,24,10,17,9,0,19,11,15,22,12,18,8,24,19,18,5,17,3,17,25,4,17,0,25,11,12,5,5,10,23,25,7,23,9,23,2,1,1,22,15,6,22,25,20,23,5,9,12,23,20,16,23,12,5,5,18,25,4,20,4,11,5,18,1,5,22,14,20,0,5,25,7,13,25,21,9,3,13,9,2,6,22,13,17,18,18,20,3,15,5,15,0,11,16,21,20,4,7,14,15,0,13,9,20,21,6,19,11,3,22,18,19,3,8,1,22,15,2,13,6,15,6,12,9,21,3,2,18,20,16,19,0,6,24,18,17,3,8,11,22,8,7,4,24,4,7,18,16,10,18,23,23,11,18,10,12,19,25,21,12,24,2,21,18,24,4,5,3,17,18,14,0,24,3,0,20,21,20,20,7,16,5,19,4,4,0,8,20,1,7,16,7,10,25,7,7,22,14,6,23,22,19,25,10,12,22,15,11,8,19,16,13,21,3,0,10,13,8,16,6,22,0,4,9,16,24,22,11,8,19,9,2,6,18,6,7,3,0,11,12,18,7,3,13,19,4,18,25,24,5,18,11,1,1,7,9,4,4,8,13,16,8,3,9,21,15,5,18,21,8,6,18,7,5,11,15,18,4,7,24,2,21,16,11,16,13,5,12,22,6,0,0,8,16,24,10,15,6,25,15,23,9,15,5,2,19,0,24,8,2,2,8,12,4,7,5,8,9,11,12,23,24,4,15,6,1,9,15,7,25,2,11,2,6,10,13,19,18,19,17,7,7,4,1,11,19,18,8,16,6,7,1,13,8,9,3,7,7,3,24,13,5,24,23,6,13,5,3,19,15,17,2,13,1,6,2,3,8,15,19,0,17,0,11,9,4,24,6,18,5,7,8,0,7,12,16,25,13,25,7,14,3,12,7,15,14,1,15,3,1,2,21,9,11,10,8,0,17,24,22,19,19,17,23,2,0,3,20,2,18,25,23,12,4,15,19,7,18,22,13,2,19,25,20,13,0,0,0,15,6,8,5,8,23,10,18,15,17,24,8,8,17,4,0,5,13,13,16,16,12,5,14,12,14,19,4,12,15,6,20,19,19,3,21,0,8,24,18,19,4,1,17,16,19,9,24,5,8,3,22,21,17,25,1,23,18,8,22,10,3,8,9,1,20,9,2,7,25,2,1,16,15,11,22,7,14,8,11,24,15,17,17,20,9,13,10,12,16,23,1,4,19,19,1,6,9,15,24,4,25,13,5,15,19,18,15,16,9,8,8,11,23,10,14,19,6,12,13,13,6,21,16,25,7,16,17,4,23,8,14,20,22,10,2,3,9,8,21,21,20,19,25,5,12,7,1,2,19,5,20,11,14,2,18,10,4,23,0,13,6,2,19,13,23,4,13,20,24,4,10,20,23,2,21,9,9,0,7,13,20,2,1,21,13,20,17,11,14,1,12,7,1,10,6,7,24,22,22,16,16,25,1,20,7,7,22,22,1,3,6,10,6,17,23,0,2,22,24,4,19,18,21,4,15,6,9,23,2,10,4,17,14,11,16,20,19,0,0,6,4,21,20,14,8,3,7,16,15,8,16,4,15,0,13,6,9,12,23,24,3,7,24,17,1,12,17,9,21,11,1,11,15,4,12,21,18,5,6,16,4,10,0,20,16,17,23,24,13,4,9,20,20,11,1,4,16,8,21,20,24,6,8,18,13,20,2,14,2,3,3,6,19,7,8,0,25,24,23,11,3,1,7,19,12,11,3,22,16,16,5,7,14,20,8,9,5,8,22,21,1,23,19,18,2,16,24,6,21,22,23,22,20,14,25,18,3,22,16,1,21,1,6,17,17,15,22,24,15,17,16,24,25,21,1,15,4,24,15,16,22,2,25,7,13,20,8,22,13,24,22,10,10,16,13,1,14,1,6,10,11,3,11,16,15,8}

    Returns: "Bad"

  17. 45

    44

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

    Returns: "Bad"

  18. 1

    1

    {0}

    Returns: "Good"

  19. 17

    5

    {0,4,2,1,4,2,3,3,4,3,3,4,1,3,4,0,2,1,0,4,2,1,2,1,4,4,4,3,2,1,2,0,4,0,1,3,1,3,0,4,0,2,1,4,3,2,1,3,4,0,4,3,4,3,3,2,3,3,1,1,2,3,2,4,4,3,3,3,0,2,2,3,0,2,2,0,0,1,0,4,1,2,2,0,2,4,1,2,2,2,2,0,2,1,4,0,3,4,4,4,3,2,3,3,1,0,3,2,0,0,4,4,3,3,2,2,0,1,3,1,2,3,0,4,3,1,4,1,1,2,0,0,1,1,3,0,0,2,4,4,4,2,2,3,0,2,0,4,3,2,4,1,4,1,4,0,3,0,2,3,0,3,3,4,2,3,4,4,2,4,3,2,0,0,3,3,1,4,3,1,4,3,1,0,4,0,3,4,0,4,4,2,1,1,4,2,3,2,0,0,0,1,4,1,0,2,2,4,3,2,3,1,2,2,1,0,0,1,2,2,3,1,2,4,0,1,2,0,1,0,4,3,3,0,3,4,0,1,1,1,0,0,3,0,1,4,0,2,2,1,3,4,2,0,4,2,4,4,2,2,2,3,0,1,0,4,1,1,0,2,4,2,0,1,2,3,4,3,1,0,2,3,0,1,1,4,2,0,4}

    Returns: "Bad"

  20. 33

    29

    {18,1,18,23,18,6,13,23,12,21,23,9,15,13,25,4,8,24,15,19,22,27,21,24,4,7,24,11,28,10,27,15,20,6,18,7,6,25,5,13,10,23,22,22,25,8,9,4,26,13,9,7,20,6,2,21,4,6,2,15,13,26,4,22,10,23,16,24,23,3,18,19,17,3,6,9,13,10,27,19,5,4,1,15,1,12,12,14,18,23,0,27,7,27,21,13,24,27,23,17,9,28,19,13,22,26,24,12,20,16,9,28,15,1,28,8,9,19,26,15,13,25,19,15,12,7,3,25,8,16,26,6,10,1,27,17,17,3,10,11,15,6,21,14,17,24,28,25,14,21,13,17,20,0,19,20,21,10,0,17,17,12,8,7,27,8,5,6,7,23,1,5,14,4,14,24,4,28,23,12,12,27,11,10,15,1,25,8,24,25,26,21,6,11,14,16,9,25,19,11,18,2,2,14,15,10,16,28,3,25,25,17,12,8,0,4,8,2,5,20,0,4,0,11,9,26,8,7,15,20,5,10,13,1,22,2,14,25,17,2,25,16,3,7,28,21,17,9,27,15,12,9,1,9,5,10,11,17,13,11,12,17,3,20,23,2,9,5,12,21,27,1,23,18,11,24,0,0,19,16,18,17,21,8,12,14,5,2,20,11,10,13,22,7,23,23,24,11,16,13,17,10,5,24,5,2,20,12,3,9,16,14,16,28,27,7,19,1,8,24,12,17,10,20,24,7,2,21,23,24,11,27,5,3,22,21,0,27,28,18,3,17,26,16,4,19,12,20,28,13,2,5,18,15,20,26,1,4,6,4,10,23,18,11,27,0,26,23,18,19,0,6,0,20,23,6,7,3,2,9,7,4,13,22,28,1,17,12,27,3,28,18,25,21,8,24,10,0,22,25,2,3,21,11,28,9,1,9,1,21,17,19,2,23,27,2,1,19,14,10,11,19,28,6,11,12,26,9,22,2,23,14,24,14,14,0,21,15,14,20,17,14,28,2,7,19,5,24,18,22,19,1,3,19,8,2,11,27,2,1,0,25,17,11,4,25,28,11,3,5,25,6,7,23,5,25,9,7,23,11,17,27,0,26,8,13,8,18,8,18,14,15,5,16,16,27,1,19,27,26,25,5,21,19,23,21,11,22,17,11,11,11,16,26,7,4,17,17,21,23,21,10,28,10,16,25,8,2,1,15,13,10,26,0,18,10,5,11,27,14,7,8,23,20,13,7,2,12,11,9,6,11,12,3,26,20,0,12,24,6,28,11,16,5,12,23,23,19,9,16,3,24,18,1,21,23,13,24,24,24,5,24,18,2,3,21,23,19,11,6,12,25,26,26,17,0,19,8,16,0,10,17,20,20,3,10,14,0,5,7,7,4,9,10,2,7,22,26,7,11,12,15,12,26,18,26,15,22,17,8,16,25,24,18,3,17,24,9,28,7,4,10,20,10,28,20,0,11,7,15,2,17,21,26,12,17,2,12,23,16,4,9,26,7,12,0,18,7,23,23,2,4,12,14,5,6,12,28,16,13,22,8,19,17,27,17,21,18,3,16,1,0,13,13,18,10,24,24,26,19,15,21,5,1,14,14,9,16,8,20,2,23,6,6,17,0,13,28,26,12,21,3,19,4,13,10,12,11,22,28,19,2,12,27,24,16,18,10,23,4,16,27,4,1,3,0,14,10,0,13,25,20,8,24,22,27,24,24,19,22,15,4,24,16,24,26,28,7,4,23,20,15,9,24,14,15,8,1,10,12,23,13,25,10,27,18,12,18,26,10,17,15,10,11,18,17,5,3,4,18,2,6,18,11,0,10,12,17,14,4,18,4,23,23,2,15,19,10,0,27,3,26,23,25,17,19,8,3,8,10,28,6,7,3,15,0,27,11,13,17,16,7,3,20,5,9,2,24,4,10,1,24,16,7,25,4,14,23,17,14,4,17,0,6,10,8,4,27,0,23,5,18,12,9,20,16,4,13,26,4,5,27,0,7,25,3,17,0,26,20,2,4,20,21,24,0,11,22,15,1,16,3,7,4,23,27,15,12,28,18,5,5,4,9,18,7,7,27,28,19,19,17,4,3,2,25,6,9,10,21,28,21,21,5,25,4,27,15,12,20,6,7,15,23,26,18,9,13,24,21,21,19,13,25,18,27,27,21,22,5,6,18,22,11,24,6,8,6,11,8,14,19,9,16,6,6,22,9,21,16,8,5,5,21,5,23,17,27,4,10,19,15,28,23,3,5,1,28,22,7,14,7,28,22,8,4,2,16,25,21,26,5,17,2,28,28,28,26,8,19,20,2,19,28,7,1,27,2,12,11,16,1,22,14,12,5,23,10,20,22,20,26,12,1,5,24,16,3,3,6,12,10,22,19,15,16,25,20,11,27,5,3,10,15,19,17,2,18,14,6,23,18,25,23,20,10,7,13,16,9,21,27,19,3,6,22,12,4,23}

    Returns: "Bad"

  21. 42

    20

    {2,18,15,16,15,10,13,9,6,8,7,19,2,5,9,16,6,8,13,8,18,0,9,8,18,5,11,15,14,6,14,12,1,12,0,10,14,18,3,8,6,15,13,9,1,4,16,10,19,9,5,10,15,10,8,16,1,4,16,5,6,10,9,1,13,8,2,18,17,1,4,18,2,2,5,10,14,4,4,4,11,8,12,6,7,14,1,0,19,16,19,4,13,18,4,18,18,17,14,17,4,11,3,16,10,9,19,12,4,10,18,13,11,0,16,18,14,1,1,12,18,9,12,19,12,8,1,17,19,8,15,1,13,7,8,5,7,16,15,4,11,8,3,10,8,2,12,12,1,0,6,10,6,2,1,17,11,8,14,18,8,3,17,1,11,3,8,13,3,2,13,15,7,8,16,3,11,12,14,2,5,5,1,18,3,17,10,3,1,8,5,12,11,13,12,2,1,14,18,16,11,0,17,13,13,16,5,4,5,14,13,11,16,11,8,9,11,5,3,6,19,10,17,4,12,6,13,18,17,14,8,3,0,8,15,16,1,9,10,15,3,17,11,2,17,10,19,19,18,16,9,12,6,7,8,4,1,15,5,17,15,14,6,12,18,14,17,6,17,0,8,1,16,14,2,13,18,13,11,19,15,8,19,17,4,10,10,8,9,10,19,0,14,5,7,8,0,15,7,4,17,19,9,11,11,15,3,15,19,17,15,14,9,8,7,10,1,13,11,15,9,2,17,4,1,14,11,1,13,19,6,17,0,5,9,0,13,10,5,19,17,18,18,13,16,12,9,18,17,6,12,14,1,1,7,11,4,12,2,18,19,5,19,6,14,8,13,2,12,15,11,2,3,10,19,16,17,18,14,15,8,0,11,17,17,12,7,14,4,18,15,16,11,19,3,14,17,1,3,16,15,3,16,6,15,3,9,9,3,13,19,2,10,1,12,15,4,3,4,0,17,4,7,17,2,6,8,11,12,14,10,15,5,4,18,12,3,15,11,5,5,16,4,4,16,6,19,0,17,8,9,9,0,0,8,11,11,13,13,16,4,19,8,0,1,5,9,12,18,3,9,9,5,15,2,17,17,16,18,9,5,12,9,3,0,17,10,4,7,10,18,0,0,13,0,17,6,12,14,10,1,17,2,9,15,4,0,0,4,10,0,18,2,17,10,17,8,19,3,14,4,8,9,6,15,10,2,6,19,12,10,3,6,7,0,9,2,8,19,8,15,13,10,16,3,17,19,13,5,12,15,4,6,8,1,5,7,16,15,3,13,19,15,19,19,9,13,11,13,2,11,16,15,2,0,10,19,19,16,8,0,14,0,5,4,2,13,16,9,16,4,0,17,2,4,19,6,16,9,0,13,0,1,3,8,2,11,8,8,8,7,17,4,8,5,8,6,3,19,19,16,8,17,19,1,13,2,9,8,16,18,14,0,16,18,3,7,3,17,12,17,12,6,7,7,3,7,13,1,11,16,7,4,9,15,2,12,11,8,15,17,15,3,19,11,19,7,0,19,3,13,13,6,19,1,11,15,19,17,6,4,11,2,2,9,17,2,10,10,8,4,2,0,4,5,9,8,14,10,12,1,0,11,16,19,18,0,16,18,16,1,4,8,13,17,2,1,5,1,11,6,5,4,15,7,11,12,11,12,2,7,12,0,0,16,2,14,19,9,1,17,9,11,4,19,14,10,5,4,15,18,4,15,0,17,16,1,19,13,16,3,7,7,3,15,1,17,1,11,6,12,0,4,9,4,10,16,15,9,6,4,0,9,16,8,19,3,10,0,9,12,15,2,14,0,11,7,13,9,12,6,8,15,8,17,8,1,17,19,12,16,14,0,12,9,18,2,17,5,12,17,3,16,15,1,0,18,9,13,10,12,17,14,2,17,14,10,6,11,9,19,17,12,15,2,8,12,14,12,13,2,6,8,4,1,10,15,3,17,18,5,0,9,15,9,14,4,16,2,9,3,9,14,5,1,0,11,11,11,5,11,1,2,19,7,7,3,7,19,8,6,3,15,6,10,9,16,9,8,6,9,7,3,14,10,2,0,0,5,10,6,3,6,2,10,12,1,3,1,2,15,17,1,4,1,8,3,3,8,8,17,16,10,0,12,5,6,4,19,1,14,5,16,16,13,0,11,1,13,9,17,3,0,13,3,1,7,13,7,4,0,2,18,7,8,7,14,19,8,14,19,12,13,17,14,3,0,1,5,3,15,15,3,9,15,16,6,17,15,8,11,10,0,1,18,12,2,3,5,10,1,9,18,9,4,10,12,10,15,5,5,1,13,7,17,7,10,19,18,10,15,0,19,17,15,0,0,12,2,14,8,4,12,12,7,11,5,3,5,2,18,12,16,5,10,7,1,3,2,12,1,9,10,16,0,1,6,17,10,8,9,8,18,17,16,4,19,16,19,5,3,18,17,4,6,6,8,0,0,4,6,8,8,13,12,16,3,15,8,6,7,7,2,1,1,18,7,7,16,6,13,19,12,3,11,4,0,4,13,5,16,2,8,1,7,0,2,3,13,19,17,9,18,9,6,11,10,15,13,11,13,17,16,3,11,7,17,2,11,15,13,16,17,4,4,16,9,15,12,3,0,6,14,0,16,17,8,1,19,9,18,19,12,8,9,9,0,9,4,8,10,8,12,1,18,10,3,1,1,6,14,12,3,5,8,19,8,15,19,4,3,12,8,8,11,1,16,10,13,8,5,10,7,3,13,13,0,9,15,6,7,7,16,17,11,19,7,15,3,9,18,8,4,8,1,7,15,7,19,8,16,11,7,13,8,15,7,18,3,7,5,6,12,1,0,16,17,11,8,7,9,17,1,17,2,1,4,4,15,11,1,17,7,19,12,6,12,7,5,16,16,16,12,7,7,13,8,15,3,17,8,14,10,18,19,7,10,11,12,13,2,6,11,16,2,7,11,18,11,19,18,19,17,11,10,3,7,5,5,12,14,0,12,11,13,10,17,12,15,6,18,14,4,12,19,1,8,15,1,9,0,13,17,5,14,6,0,9,8,16,1,2,6,14,19,5,0,14,18,13,4,11,18,10,6,0,7,13,3,16,9,15,8,12,1,4,15,5,2,8,9,9,5,15,9,11,6,2,17,16,18,14,15,9,13,15,14,18,18,16,12,7,17,14,17,17,12,19,1,8,11,16,5,2,10,15,13,10,15,15,0,5,14,3,10,19,6,2,13,7,14,16,18,18,16,16,3,14,11,7,2,5,5,19,17,1,5,18,13,12,7,18,18,7,12,13,19,12,11,1,17,15,15,10,13,14,1,6,5,18,2,7,3,2,9,5,12,7,5,7,5,7,7,7,3,7,5,17,5,12,19,18,11,8,12,13,14,0,15,16,15,16,19,12,12,1,12,13,7,13,10,1,8,16,4,1,4,16,10,16,12,6,0,0,1,9,9,0,7,6,15,1,0,16,19,5,9,11,4,18,18,3,14,19,7,4,2,16,7,4,1,8,3,16,0,7,3,18,8,1,11,5,6,4,18,6,1,5,11,5,19,4,13,3,9,15,18,15,15,14,4,18,5,4,1,16,7,8,16,8,6,11,12,10,17,16,13,4,5,11,9,0,3,2,12,2,2,16,10,15,7,6,16,19,15,3,15,15,6,18,10,8,6,19,19,15,3,19,2,15,6,15,18,0,10,14,10,2,12,10,0,18,15,13,14,17,13,6,5,5,9,6,8,12,18,7,6,12,11,9,15,9,0,1,13,7,18,1,3,3,17,4,15,19,3,0,18,16,12,14,8,14,19,8,16,13,13,6,1,17,16,9,14,4,9,5,2,19,14,14,8,3,19,14,8,5,9,5,0,15,11,16,7,2,19,16,2,18,7,8,12,11,16,9,8,19,17,4,15,4,0,14,17,17,1,4,8,3,13,2,13,7,2,16,7,6,17,5,19,16,18,14,12,7,11,3,18,6,3,9,7,14,10,15,1,2,8,9,18,4,17,4,11,10}

    Returns: "Bad"

  22. 8

    4

    {3,1,1,2,1,0,3,1,2,3,3,3,3,2,2,0,2,1,1,1,0,2,0,1,0,2,3,2,0,3,1,0,3,3,0,3,0,2,3,1,0,0,2,1,3,3,1,2,2,0,0,1,0,1,2,1,3,0,2,1,1,2,2,3}

    Returns: "Bad"

  23. 7

    4

    {2,1,1,1,0,2,0,3,3,1,0,2,0,2,2,3,2,3,0,3,2,2,1,1,2,2,1,2,3,3,0,1,1,3,1,0,0,2,2,2,2,1,1,2,2,3,0,3,1}

    Returns: "Bad"

  24. 15

    2

    {1,1,0,0,1,0,0,1,1,1,1,0,0,1,1,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,0,0,1,0,1,1,0,1,1,0,0,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,1,1,1,1,1,1,0,1,1,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,1,1,1,0,1,0,1,1,1,1,0,1,1,1,1,0,1,1,0,0,1,1,1,1,1,0,1,1,0,0,1,0,0,1,0,1,1,1,0,1,0,1,1,0,0,0,1,0,0,1,1,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,1,1,1,0,0,0,0,0,1,0,0,1,1,0,1,0,0,0,1,0,0,0,0,1,0,1,0,1,1,1,1,1,1,1,0,1,1,0,1,1,1,1,1,1,0,0,1,1,0,0,1,0,0,1,1,0,0,1,1,0,1,0,0,1,1,1,1}

    Returns: "Good"

  25. 35

    21

    {18,14,7,1,5,14,13,10,15,1,2,17,1,13,15,9,19,9,5,18,19,12,5,7,18,15,13,2,6,20,0,18,4,2,19,18,8,11,15,7,1,15,17,9,14,17,3,17,17,15,19,19,7,11,3,17,4,13,19,10,6,19,18,5,16,15,20,6,14,15,0,0,0,13,11,14,7,16,9,2,10,16,10,15,5,2,16,16,15,4,1,12,2,2,2,14,19,7,9,7,3,1,4,20,16,12,6,6,2,6,6,0,8,0,2,1,0,12,14,13,7,5,3,7,20,13,20,12,8,13,0,4,3,0,19,8,14,5,6,11,4,0,18,15,14,13,0,8,14,7,9,6,19,13,10,12,2,8,18,15,4,15,6,10,17,12,3,19,3,12,16,4,5,10,19,9,3,16,15,3,1,9,1,1,18,17,12,11,4,11,13,18,0,12,4,9,4,8,4,12,7,12,17,8,19,0,2,14,12,8,18,11,13,1,1,18,19,16,8,12,3,10,3,4,6,19,19,20,13,1,14,4,20,20,20,2,16,10,9,9,6,4,18,0,1,16,12,8,10,12,11,19,18,14,14,16,10,4,14,7,20,16,10,14,18,11,11,10,3,13,8,16,2,16,3,16,14,11,12,20,0,4,5,20,12,2,4,20,13,20,2,12,12,6,14,16,10,6,11,16,15,6,13,15,7,1,7,15,12,7,18,3,10,12,0,13,4,17,7,12,12,10,14,16,5,14,2,6,9,9,12,3,17,5,14,4,4,2,3,8,12,18,12,3,11,13,0,19,0,9,0,20,16,11,9,19,9,4,8,1,18,17,8,4,10,0,6,7,7,19,0,10,12,8,12,20,11,1,6,19,14,14,1,11,13,9,20,18,14,7,4,13,10,8,2,6,5,1,5,4,16,14,5,4,7,4,16,0,19,19,13,19,7,3,2,7,14,8,14,8,12,3,17,20,2,10,6,11,17,4,14,6,18,6,10,8,5,18,15,4,20,16,8,18,4,6,19,20,17,2,7,18,12,20,18,5,12,11,18,10,4,7,2,19,18,19,4,5,7,2,14,17,12,15,13,17,1,19,16,18,13,11,13,17,6,2,6,9,16,14,10,18,18,4,3,5,3,2,13,3,19,15,8,20,11,4,13,4,4,5,3,16,5,0,6,19,2,3,17,12,17,6,0,13,15,15,10,3,11,16,17,14,1,16,20,6,20,8,10,10,18,9,16,3,4,10,6,5,14,3,2,12,12,0,4,2,6,6,13,12,20,18,0,0,9,4,1,14,16,15,3,1,8,18,14,9,16,4,7,15,4,4,20,2,12,15,3,15,9,10,12,2,0,19,7,9,10,7,3,11,16,12,8,11,1,0,18,0,6,11,14,16,11,9,19,1,19,0,1,12,2,1,3,19,12,0,12,7,18,3,8,20,14,6,9,17,0,13,15,15,2,19,18,9,14,2,17,17,12,15,6,13,9,18,18,7,13,1,4,2,19,3,2,14,15,8,12,4,8,15,6,11,6,4,5,7,14,17,5,3,1,2,15,19,20,13,5,20,3,2,0,12,14,4,10,9,1,4,20,16,18,9,4,10,0,9,6,8,6,5,4,2,1,9,3,20,6,5,17,6,18,4,7,13,0,0,9,14,16,11,20,1,4,12,7,15,20,7,8,9,15,18,5,8,8,0,7,16,19,0,18,8,8,5,7,19,17,4,14,9,5,14,10,0,6,17,8,5,2,15,17,0,14,5,13,13,13,6,17,15,3,12,5,5,10,1,17,3,18,11,4,5,3,17,14,20,6,18,19,6,12,9,0,19,7,4,20,8,3,3,6,16,13,8,9,11,16,3,14,4,12,7,18,17,10,5,17,3,2,4,8,8,20,9,0,7,7,12,18,19,8,12,2,2,15,9,19,20,8,2,9,17,3,7,7,7,4,7,11,10,1,13,18,11,17,0,2,17,1,20,1,13,12,14,7,0,8,4,15,4,10,15,5,10,17,11,3,15,13,13,4,4,18,8,12,12,6,8,1,0,19,16,11,7,1,11,7,10,6,13,4,14,19,1,0,9,17,9,4,5,13,16,13,2,13,12,18,19,1,15,2,2,9,17,3,6,19,19,11,1,2,16,4,6,11,0,10,1,18,13,6,9,8,8,19,3,13,12,7,12,14,16,13,1,20,12,10,16,15,14,12,18,19,4,8,13,10,0,5,9,11,9,2,3,8,13,17,15,14,16,12,3,0,16,14,10,2,8,13,18,11,15,11,15,7,5,15,0,15,16,4,2,11,18,6,1,7,3,17,19,4,16,9,6,19,9,4,12,2,7,12,8,5,2,10,20,4,17,8,3,0,17,20,9,7,19,19,1,17,11,5,10,11,11,9,13,4,4,2,3,14,13,17,2,19,10,5,16,6,1,18,1,16,11,3,11,5,19,0,7,17,14,17,4,2,1,12,6,18,2,15,10,0,5,20,9,19,14,12,16,10,0,4,0,14,6,19,4,2,9,11,9,13,12,20,12,6,0,1,10,12,2,14,12,19,18,17,16,12,14,5,14,20,6,13,19,3,1,16,13,1,4,10,11,2,7,7,20,10,19,20,13,9,16,18,10,10,15,15,1,16,11,17,9,18,11,7,15,3,14,20,8,0,5,7,3,18,10,8,4,18,6,19,5,18,20,12,5,15,4,20,8,5,1,7,9,0,14,16,8,8,8,10,0,12,8,13,1,6,8,3,11,7,8,16,16,18,19,1,13,11,9,11,2,11}

    Returns: "Bad"

  26. 9

    4

    {0,0,2,2,3,2,2,3,1,0,0,3,0,0,0,3,3,3,3,2,2,1,3,0,2,0,3,0,3,3,3,0,1,0,0,2,1,3,2,1,1,0,2,2,0,2,0,2,0,1,2,3,0,1,3,1,1,0,3,3,3,2,2,3,1,0,0,1,0,0,2,0,2,0,0,1,0,0,0,3,3}

    Returns: "Bad"

  27. 31

    14

    {10,7,6,8,5,7,2,8,11,13,7,4,11,0,3,13,7,11,11,1,7,0,11,2,12,4,0,4,0,0,5,7,0,3,12,10,10,12,11,9,11,8,13,1,9,11,1,1,7,13,1,6,6,1,3,6,11,12,10,7,5,5,5,0,0,2,8,8,8,7,7,4,12,10,7,6,0,9,12,0,0,2,10,6,12,3,4,13,10,0,10,4,11,10,8,1,9,13,11,5,13,6,12,4,8,13,8,0,7,11,7,9,1,7,12,3,6,12,10,11,8,0,8,5,7,9,5,5,3,9,8,7,2,2,9,3,9,11,9,1,12,3,13,5,11,7,1,1,7,4,0,10,10,5,11,7,8,3,4,8,7,10,7,0,5,10,4,2,11,2,3,3,9,0,8,11,13,3,8,10,10,8,6,12,9,11,6,3,7,9,8,13,7,4,12,10,5,13,9,8,7,2,11,4,9,2,4,13,3,4,2,8,2,12,4,11,13,9,6,8,7,11,12,8,11,5,6,12,7,11,2,5,5,13,4,6,5,11,6,2,7,10,11,10,2,4,0,7,0,6,4,12,3,12,12,8,12,9,8,11,11,3,10,2,12,4,5,7,11,2,13,7,7,10,9,7,12,7,4,4,6,12,1,9,5,6,6,12,0,7,5,4,8,13,11,1,11,8,3,8,12,3,3,8,8,9,10,3,11,11,13,0,13,12,13,13,6,2,4,5,13,0,13,8,3,12,6,7,6,0,12,0,13,10,9,5,9,2,3,12,8,6,12,6,10,12,0,10,9,12,2,11,5,7,7,2,13,4,1,13,10,4,3,10,4,11,0,4,12,3,6,10,2,8,9,4,7,9,11,10,11,6,10,6,2,5,13,6,4,13,12,0,0,1,8,0,1,6,4,13,10,5,10,6,4,7,11,11,6,12,12,10,3,6,2,11,5,7,6,0,8,8,1,3,7,4,7,11,0,1,12,5,6,3,4,11,13,5,6,4,0,8,13,2,13,7,0,7,10,2,8,10,6,10,4,8,7,0,12,2,4,3,11,2,6,8,3,11,2,11,13,7,12,4,7,2,0,8,10,4,4,11,4,6,12,4,8,2,10,5,2,8,3,9,1,9,4,12,10,10,6,5,6,4,10,11,1,3,3,10,3,2,9,1,11,12,9,4,8,9,7,0,12,5,3,6,1,5,10,2,0,11,8,6,12,9,6,10,13,1,2,12,2,2,11,11,9,7,11,13,6,2,12,0,5,2,7,11,12,7,13,3,9,7,13,3,12,0,4,1,11,0,3,1,6,0,10,12,6,12,13,6,13,8,5,6,0,12,9,7,2,0,3,7,7,13,12,5,5,7,2,5,6,6,1,9,10,2,3,0,6,8,10,2,3,3,8,10,3,13,2,5,6,9,11,4,13,9,11,0,12,1,6,3,5,8,4,6,12,1,11,0,7,5,13,6,3,11,3,1,4,7,13,12,3,7,11,10,8,5,11,3,13,13,4,3,7,7,6,13,0,11,9,5,5,1,12,6,0,1,5,2,13,4,13,6,6,9,11,10,2,8,1,9,8,4,1,3,13,5,1,1,11,13,6,8,0,1,2,8,11,1,1,7,5,2,10,8,8,0,3,6,5,5,1,1,5,5,12,7,2,13,2,1,9,3,11,6,8,9,11,11,6,10,1,10,10,8,8,4,7,5,2,8,9,13,1,13,4,9,5,6,5,5,13,10,11,3,4,0,1,0,3,6,5,4,12,12,5,11,1,2,11,2,8,8,4,10,1,2,5,5,1,8,7,3,9,9,9,11,12,0,11,3,13,11,7,3,8,7,13,8,4,13,6,11,6,1,10,1,0,3,3,2,12,5,8,8,10,12,9,10,12,12,12,9,4,1,7,11,5,0,2,13,10,5,8,12,9,1,3,8,0,9,11,13,2,12,3,12,5,0,1,0,2,13,8,6,3,0,1,6,1,13,2,7,3,1,7,12,5,6,9,12,2,4,12,6,4,2,2,3,1,2,3,11,11,8,11,7,11,4,3,10,4,13,1,10,9,1,13,2,10,11,7,4,12,7,10,5,4,5,5,11,7,6,2,5,5,10,12,1,6,0,8,3,11,8,13,9,0,13,12,3,6,9,5,5,12,0,10,7,11,9,10,12,0,7,13,6,7}

    Returns: "Bad"

  28. 21

    9

    {0,8,2,3,3,5,6,4,5,5,8,1,7,0,3,6,2,5,2,2,2,7,5,4,4,4,6,6,7,4,6,4,1,8,1,1,4,2,8,2,5,4,7,3,8,1,1,1,0,5,1,5,0,7,0,0,8,5,6,2,7,8,8,3,2,8,1,1,1,5,2,0,2,6,1,6,4,1,6,0,3,7,7,6,8,4,4,3,2,2,6,6,8,5,3,0,1,0,2,2,6,2,2,2,0,8,8,8,4,8,8,7,8,1,2,3,1,3,7,4,8,1,2,0,4,5,1,8,7,1,1,8,4,4,0,3,6,8,2,6,7,6,7,1,3,3,7,6,3,5,8,6,7,0,5,4,3,4,3,5,3,5,4,7,1,0,2,2,6,7,4,0,2,1,6,4,8,2,4,3,4,5,1,6,5,3,8,6,3,3,0,1,3,8,0,4,0,8,0,0,2,5,2,2,0,8,8,3,0,7,3,0,4,3,4,2,1,0,2,5,1,2,5,4,3,6,0,7,0,7,7,8,3,2,1,2,5,2,3,3,1,0,8,8,7,4,1,4,2,0,8,6,5,4,4,6,7,7,0,4,5,7,2,1,2,7,6,2,0,7,0,3,4,6,7,7,7,5,5,6,8,4,3,3,4,0,1,3,1,8,8,3,0,6,2,2,0,4,8,8,2,8,3,5,3,5,8,8,4,2,3,4,2,2,4,3,2,0,5,5,7,3,7,4,5,2,6,7,4,4,0,6,7,1,4,4,3,6,0,4,3,0,8,2,0,4,8,2,7,0,1,1,2,8,8,3,2,6,3,6,1,4,7,4,5,4,5,3,6,7,7,3,8,8,6,5,8,8,4,2,0,4,4,0,3,2,8,5,5,6,1,7,2,1,2,3,5,8,1,7,3,4,2,7,7,0,4,6,6,6,8,4,3,4,5,2,1,1,1,6,7,4,7,8,4,4,7,3,0,8,2,3,7,2,2,6,7,5,0,6,1}

    Returns: "Bad"

  29. 25

    18

    {4,5,12,17,14,2,9,11,4,2,3,17,3,6,1,9,4,3,7,16,0,3,14,9,16,8,13,0,10,7,9,12,7,16,7,13,9,13,5,16,14,2,4,6,2,6,9,10,16,2,17,8,1,4,8,9,16,0,7,2,4,10,10,16,0,9,6,17,1,13,6,0,6,2,12,11,10,7,6,3,2,1,6,8,6,1,8,15,8,17,8,5,16,16,14,2,5,16,1,12,4,6,11,8,6,14,9,4,16,1,16,5,9,16,13,0,6,7,14,16,3,10,17,7,7,14,13,5,13,7,1,2,6,12,3,7,17,14,17,15,12,17,16,5,2,1,1,8,17,1,8,12,7,4,0,6,12,14,4,13,14,12,13,1,17,3,14,0,14,4,6,10,7,6,13,5,14,1,6,9,5,10,6,13,5,5,10,13,16,13,6,15,2,4,4,11,14,7,11,5,3,12,4,2,7,3,8,13,1,6,3,12,11,2,0,16,5,16,8,12,9,5,3,4,2,14,15,0,2,6,4,1,12,0,10,5,4,0,11,16,4,10,9,13,3,17,9,3,9,8,1,1,12,15,1,7,9,5,2,15,0,9,15,2,16,1,1,11,6,9,14,11,8,14,16,8,0,10,5,8,0,12,10,14,15,4,16,10,5,8,16,13,6,10,13,12,7,16,4,12,11,2,16,6,14,9,14,13,12,9,5,14,10,16,4,8,16,7,2,1,17,14,17,7,4,3,2,1,2,1,6,17,8,14,5,6,7,4,0,16,9,5,2,5,3,9,5,1,17,8,5,9,14,8,11,8,2,1,17,15,11,4,8,9,4,6,8,5,3,13,9,4,13,12,17,7,13,7,7,11,3,17,7,9,0,10,14,12,5,6,5,14,0,0,3,15,10,11,11,3,11,12,15,17,7,1,2,17,15,12,6,12,17,3,3,9,0,15,16,3,4,1,15,9,16,4,9,11,8,3,1,17,14,17,17,17,14,1,9,0,17,17,15,15,6,5,4,4,3,3,14,11,7,0,8,3,12,15,8,2,15,7,3,5,12,15,3,6,16,13,11,10,13,10,14,17,15,0,4,9,15,16,0,8,10,17,7,6,17,3,13,11,5,5,1,10,13,0,17,16,8,9,7,10,13,16,9,14,15,1,12,11,9,17,0,13,14,12,6,4,7,3,1,4,7,0,8,5,15,1,14,16,17,12,16,7,3,9,9,13,8,10,0,10,3,10,4,0,0,12,0,6,12,17,17,16,8,11,13,6,0,3,13,5,17,6,13,8,4,6,6,2,5,14,9,13,0,14,11,11,2,4,15,16,12,13,13,7,11,14,0,0,2,17,14,14,12,17,17,15,3,4,13,10,13,7,16,16,8,14,7,15,16,17,1,16,2,17,16,3,4,17,17,1,3}

    Returns: "Bad"

  30. 32

    30

    {16,26,26,4,19,7,15,28,15,1,9,0,3,9,29,23,27,26,20,23,15,4,18,13,29,5,26,15,20,12,12,3,29,29,17,25,2,11,5,15,1,13,18,15,11,4,18,14,20,19,16,16,9,14,22,26,17,24,0,23,6,26,10,16,23,9,14,2,7,11,26,1,5,20,28,10,6,0,19,26,29,6,4,2,1,18,13,28,13,27,17,15,1,11,29,10,6,25,25,9,26,6,20,12,3,12,26,0,16,13,18,29,29,27,14,9,19,7,27,6,29,0,20,19,11,13,22,9,22,26,28,14,12,25,13,3,25,14,27,7,22,16,2,6,23,3,8,17,14,5,24,9,8,28,17,0,22,19,5,1,21,9,17,9,12,25,8,28,4,17,29,0,6,14,2,18,16,21,17,0,19,4,24,26,5,15,13,11,8,5,23,7,16,23,21,4,0,21,5,24,14,6,12,15,29,5,29,13,16,11,14,13,25,6,15,13,15,22,6,26,23,20,22,8,29,13,14,16,29,5,3,0,17,24,23,25,13,7,12,22,16,11,11,7,10,5,16,26,17,25,18,11,14,8,9,3,16,21,9,15,16,25,4,15,0,7,6,14,23,6,21,9,18,17,4,21,29,12,25,20,23,2,22,13,12,27,28,6,15,12,12,27,27,1,1,19,26,6,24,6,3,24,9,27,0,17,22,11,27,22,9,27,24,9,17,7,1,27,7,1,27,2,12,28,22,29,25,28,5,16,16,14,10,25,18,25,8,7,2,25,4,23,21,5,23,5,23,0,25,22,23,16,21,17,14,5,4,1,0,10,0,28,8,19,25,1,1,14,24,11,28,25,15,15,21,26,21,6,2,11,16,6,2,1,18,26,9,13,16,17,14,17,8,22,23,19,26,8,8,7,13,23,18,8,29,23,6,19,10,17,11,11,4,17,9,7,17,10,19,11,6,19,9,22,16,9,16,1,22,29,24,28,11,8,1,25,28,17,0,9,0,20,17,11,20,10,24,17,3,24,1,29,22,4,8,7,1,5,11,3,16,23,23,2,13,13,0,24,4,4,19,21,1,8,10,12,26,25,0,24,14,11,21,13,27,7,27,0,6,27,11,8,3,17,28,20,13,5,1,25,14,14,14,2,4,24,11,21,4,15,18,28,6,6,23,9,24,1,21,21,6,24,10,24,2,18,0,4,27,18,21,11,8,4,29,14,3,24,20,16,28,1,29,1,29,17,22,21,2,7,18,15,24,13,3,20,11,28,7,13,28,14,10,1,21,5,15,21,28,22,4,5,9,1,24,27,19,7,3,5,20,18,24,1,15,14,14,24,22,4,2,21,13,15,19,11,18,14,0,5,0,3,18,7,14,23,3,12,16,2,11,10,14,29,15,9,27,28,3,14,23,7,8,23,18,4,27,27,7,4,4,5,17,18,27,11,3,8,9,10,3,25,6,4,16,4,12,9,10,19,21,28,28,27,7,7,13,14,9,8,23,10,21,15,14,22,4,22,12,21,19,19,15,8,28,2,12,21,1,16,22,22,25,15,2,25,16,19,27,18,16,24,15,8,4,4,5,16,16,12,22,24,27,17,27,18,7,27,18,1,16,0,19,20,8,13,1,15,18,25,27,26,13,4,21,14,14,10,1,22,3,10,11,24,6,9,18,28,0,15,18,25,17,7,23,13,10,18,16,5,27,26,24,26,8,12,16,5,10,23,22,24,29,6,16,11,12,27,22,5,19,28,26,20,17,22,15,23,29,4,9,25,3,23,4,5,27,7,9,5,12,4,2,23,18,0,17,2,6,7,28,3,12,25,3,24,10,17,23,0,11,7,16,27,23,26,14,19,15,10,24,24,28,29,26,22,16,7,19,25,2,11,15,25,7,29,28,15,18,14,5,28,19,13,13,26,28,3,19,28,6,11,6,8,20,17,10,4,5,1,10,24,1,5,19,8,18,7,23,5,1,18,10,25,26,28,10,0,12,27,4,5,11,19,26,29,25,7,14,25,2,28,26,11,25,1,2,29,21,18,22,4,18,10,18,3,8,13,17,27,23,1,24,27,21,18,20,10,19,28,26,24,4,13,4,16,14,5,23,8,1,16,8,16,26,19,23,21,27,26,1,19,5,25,24,11,1,7,10,28,23,28,20,23,13,7,13,13,19,20,2,21,25,20,13,10,26,2,12,5,9,22,26,16,1,20,21,29,27,22,8,15,9,25,24,11,26,14,5,4,25,9,29,13,10,18,26,24,29,26,29,24,11,11,6,6,29,18,2,28,26,19,13,21,22,27,15,12,18,6,24,21,16,5}

    Returns: "Bad"

  31. 34

    10

    {4,5,9,6,3,6,0,0,8,1,3,8,7,0,1,5,1,2,3,7,0,7,6,0,4,4,8,4,0,2,0,4,2,5,9,4,2,0,2,4,0,2,1,1,4,6,6,8,3,9,8,4,1,1,5,0,8,7,5,6,5,2,5,3,6,9,7,0,3,2,9,7,9,2,5,3,6,3,0,2,4,1,4,3,9,3,8,8,1,5,9,1,3,7,5,2,8,4,7,7,3,4,1,9,5,5,9,1,8,0,4,8,6,5,4,9,5,3,7,0,3,8,2,3,6,0,3,7,3,7,4,8,6,3,5,1,0,8,4,7,0,1,3,4,3,4,7,4,4,5,6,0,5,2,8,1,1,3,2,9,1,9,3,3,7,6,9,5,2,2,4,6,5,7,4,8,1,0,8,4,5,5,6,3,6,6,0,4,1,7,1,9,5,9,7,1,8,3,1,5,1,5,1,3,7,7,1,7,4,8,3,7,9,5,2,5,9,5,0,7,9,6,6,9,1,8,2,1,8,3,4,3,6,0,0,9,0,7,8,1,3,2,2,7,2,5,6,0,7,3,1,3,2,5,5,5,9,3,5,5,1,0,9,7,9,5,6,2,4,4,7,9,2,9,8,3,2,8,0,8,0,0,8,7,3,2,1,0,5,9,3,1,6,7,2,3,9,0,4,3,4,9,4,3,6,1,2,1,4,5,9,9,0,9,2,3,5,4,2,0,6,0,1,1,9,4,9,5,4,0,0,2,7,3,5,0,6,2,9,6,0,3,7,6,8,1,0,0,5,1,3,5,7,1,9,8,9,0,8,5,3,4,5,9,5,0,0,6,7,5,2,1,6,1,9,7,0,2,7,7,4,0,9,1,2,8,2,2,7,9,0,9,6,4,1,2,6,8,2,8,5,1,6,8,7,0,1,3,5,1,8,6,2,9,0,6,3,8,9,0,9,8,4,0,3,1,4,8,3,0,7,6,1,8,9,7,6,4,8,2,8,3,1,1,1,0,7,0,4,1,7,9,6,3,2,2,9,1,9,6,2,1,3,9,2,6,7,9,6,1,9,6,4,4,9,7,0,0,6,2,2,4,6,0,6,6,3,0,8,1,4,9,3,3,3,9,7,5,3,7,1,5,7,0,0,6,9,7,0,6,4,1,5,3,7,5,3,4,6,6,9,7,0,9,4,2,4,9,2,1,8,6,5,1,7,6,3,6,6,8,5,9,1,8,3,5,2,5,5,9,9,3,4,5,4,0,4,5,1,7,3,4,5,4,8,4,0,4,8,8,9,6,4,2,3,8,8,8,8,4,7,1,5,3,2,9,6,8,5,6,1,6,5,1,1,1,8,8,9,9,8,4,9,5,0,2,8,1,6,4,2,2,4,5,0,0,3,7,9,5,0,5,9,5,4,3,6,6,1,2,0,8,1,2,9,7,2,7,7,2,2,7,6,1,1,9,8,5,5,9,2,5,0,8,4,9,4,3,7,4,1,3,9,1,1,1,1,2,7,9,7,2,1,9,7,9,3,4,2,6,7,5,4,1,7,5,5,6,3,1,5,9,2,6,1,6,9,0,5,6,3,2,9,8,2,2,8,8,2,8,8,6,8,7,5,4,6,5,2,0,2,8,3,9,2,8,2,6,7,3,0,0,7,6,1,7,0,1,8,9,8,0,1,4,7,7,3,0,2,6,3,0,7,9,8,2,4,9,6,0,1,2,4,8,9,1,1,0,2,1,4,2,1,7,6,5,6,0,5,9,5,6,0,9,0,7,7,6,3,8,7,3,2,7,1,1,1,0,9,3,8,3,0,3,0,6,1,9,3,2,5,3,8,8,7,5,7,8,0,6,2,5,4,8,4,8,1,4,4,7,6,3,1,6,8,3,9,8,4,7,5,6,7,2,9,8,2,8,4,2,0,8,0,7,2,2,7,6,7,9,2,5,8,0,7,3,8,1,8,5,6,0,8,3,6,4,8,8,7,8,3,2,0,8,1,6,3,9,6,9,5,1,3,0,4,4,5,3,4,5,6,8,9,3,3,6,1,5,7,2,0,5,2,1,0,5,6,2,3,7,5,5,6,2,2,3,4,0,9,6,0,4,3,6,3,5,4,1,4,1,9,5,4,9,0,3,0,6,4,9,3,4,7,8,8,4,4,3,9,6,8,4,7,4,5,4,1,7,8,6,8,7,1,3,6,1,0,3,2,1,5,0,0,7,0,1,9,5,1,5,0,5,0,0,5,4,0,7,2,4,0,6,7,0,3,6,5,4,9,9,2,2,6,4,9,6,4,8,4,3,1,0,2,8,0,9,6,2,1,4,7,9,2,2,6,4,2,3,3,7,9,1,2,9,1,1,3,2,8,9,9,2,4,2,8,8,2,4,3,6,4,5,5,0,7,6,0,5,9,5,5,3,6,5,8,4,4,3,2,7,7,6,6,0,8,2,7,1,3,7,4,6,2,8,8,8,6,3,4,8,1,7,1,7,3,5,7,0,5,5,5,2,8,6,7,6,7,3,6,8,9,4,8,2,8,8,6,7,4,7,7,5,3,2,8,6,9,7,9,5,5,3,0,0,6,6,4,2,7,2,2,4,7,5,2,2}

    Returns: "Bad"

  32. 9

    3

    {0,1,2,0,1,2,0,1,2,1,2,0,1,2,0,1,2,0,2,0,1,2,0,1,2,0,1,0,1,2,0,1,2,0,1,2,1,2,0,1,2,0,1,2,0,2,0,1,2,0,1,2,0,1,0,1,2,0,1,2,0,1,2,1,2,0,1,2,0,1,2,0,2,0,1,2,0,1,2,0,1}

    Returns: "Good"

  33. 7

    7

    {1,3,2,5,4,0,6,3,2,5,4,0,6,1,2,5,4,0,6,1,3,5,4,0,6,1,3,2,4,0,6,1,3,2,5,0,6,1,3,2,5,4,6,1,3,2,5,4,0}

    Returns: "Good"

  34. 25

    24

    {3,2,15,17,12,21,5,20,9,10,8,22,7,11,0,6,16,23,18,13,19,1,14,4,3,2,15,17,12,21,5,20,9,10,8,22,7,11,0,6,16,23,18,13,19,1,14,4,3,2,15,17,12,21,5,20,9,10,8,22,7,11,0,6,16,23,18,13,19,1,14,4,3,2,15,17,12,21,5,20,9,10,8,22,7,11,0,6,16,23,18,13,19,1,14,4,3,2,15,17,12,21,5,20,9,10,8,22,7,11,0,6,16,23,18,13,19,1,14,4,3,2,15,17,12,21,5,20,9,10,8,22,7,11,0,6,16,23,18,13,19,1,14,4,3,2,15,17,12,21,5,20,9,10,8,22,7,11,0,6,16,23,18,13,19,1,14,4,3,2,15,17,12,21,5,20,9,10,8,22,7,11,0,6,16,23,18,13,19,1,14,4,3,2,15,17,12,21,5,20,9,10,8,22,7,11,0,6,16,23,18,13,19,1,14,4,3,2,15,17,12,21,5,20,9,10,8,22,7,11,0,6,16,23,18,13,19,1,14,4,3,2,15,17,12,21,5,20,9,10,8,22,7,11,0,6,16,23,18,13,19,1,14,4,3,2,15,17,12,21,5,20,9,10,8,22,7,11,0,6,16,23,18,13,19,1,14,4,3,2,15,17,12,21,5,20,9,10,8,22,7,11,0,6,16,23,18,13,19,1,14,4,3,2,15,17,12,21,5,20,9,10,8,22,7,11,0,6,16,23,18,13,19,1,14,4,3,2,15,17,12,21,5,20,9,10,8,22,7,11,0,6,16,23,18,13,19,1,14,4,3,2,15,17,12,21,5,20,9,10,8,22,7,11,0,6,16,23,18,13,19,1,14,4,3,2,15,17,12,21,5,20,9,10,8,22,7,11,0,6,16,23,18,13,19,1,14,4,3,2,15,17,12,21,5,20,9,10,8,22,7,11,0,6,16,23,18,13,19,1,14,4,3,2,15,17,12,21,5,20,9,10,8,22,7,11,0,6,16,23,18,13,19,1,14,4,3,2,15,17,12,21,5,20,9,10,8,22,7,11,0,6,16,23,18,13,19,1,14,4,3,2,15,17,12,21,5,20,9,10,8,22,7,11,0,6,16,23,18,13,19,1,14,4,3,2,15,17,12,21,5,20,9,10,8,22,7,11,0,6,16,23,18,13,19,1,14,4,3,2,15,17,12,21,5,20,9,10,8,22,7,11,0,6,16,23,18,13,19,1,14,4,3,2,15,17,12,21,5,20,9,10,8,22,7,11,0,6,16,23,18,13,19,1,14,4,3,2,15,17,12,21,5,20,9,10,8,22,7,11,0,6,16,23,18,13,19,1,14,4,3,2,15,17,12,21,5,20,9,10,8,22,7,11,0,6,16,23,18,13,19,1,14,4,3}

    Returns: "Good"

  35. 22

    13

    {12,6,3,0,9,5,4,7,11,10,1,8,2,12,6,3,0,9,5,4,7,11,6,3,0,9,5,4,7,11,10,1,8,2,12,6,3,0,9,5,4,7,11,10,3,0,9,5,4,7,11,10,1,8,2,12,6,3,0,9,5,4,7,11,10,1,0,9,5,4,7,11,10,1,8,2,12,6,3,0,9,5,4,7,11,10,1,8,9,5,4,7,11,10,1,8,2,12,6,3,0,9,5,4,7,11,10,1,8,2,5,4,7,11,10,1,8,2,12,6,3,0,9,5,4,7,11,10,1,8,2,12,4,7,11,10,1,8,2,12,6,3,0,9,5,4,7,11,10,1,8,2,12,6,7,11,10,1,8,2,12,6,3,0,9,5,4,7,11,10,1,8,2,12,6,3,11,10,1,8,2,12,6,3,0,9,5,4,7,11,10,1,8,2,12,6,3,0,10,1,8,2,12,6,3,0,9,5,4,7,11,10,1,8,2,12,6,3,0,9,1,8,2,12,6,3,0,9,5,4,7,11,10,1,8,2,12,6,3,0,9,5,8,2,12,6,3,0,9,5,4,7,11,10,1,8,2,12,6,3,0,9,5,4,2,12,6,3,0,9,5,4,7,11,10,1,8,2,12,6,3,0,9,5,4,7,12,6,3,0,9,5,4,7,11,10,1,8,2,12,6,3,0,9,5,4,7,11,6,3,0,9,5,4,7,11,10,1,8,2,12,6,3,0,9,5,4,7,11,10,3,0,9,5,4,7,11,10,1,8,2,12,6,3,0,9,5,4,7,11,10,1,0,9,5,4,7,11,10,1,8,2,12,6,3,0,9,5,4,7,11,10,1,8,9,5,4,7,11,10,1,8,2,12,6,3,0,9,5,4,7,11,10,1,8,2,5,4,7,11,10,1,8,2,12,6,3,0,9,5,4,7,11,10,1,8,2,12,4,7,11,10,1,8,2,12,6,3,0,9,5,4,7,11,10,1,8,2,12,6,7,11,10,1,8,2,12,6,3,0,9,5,4,7,11,10,1,8,2,12,6,3,11,10,1,8,2,12,6,3,0,9,5,4,7,11,10,1,8,2,12,6,3,0}

    Returns: "Good"

  36. 27

    17

    {16,0,14,0,16,5,7,6,9,8,4,12,7,15,9,8,7,1,9,6,12,12,15,10,0,5,1,9,16,4,4,10,10,3,16,9,5,6,9,11,4,6,1,12,13,4,13,0,16,16,0,6,14,10,12,5,4,2,13,10,5,8,0,10,16,14,5,2,8,6,16,7,3,16,13,15,3,10,12,13,12,1,0,2,2,5,15,7,8,5,11,15,1,6,14,3,13,3,2,11,15,7,4,11,1,11,6,1,7,12,12,10,14,15,7,9,2,5,11,13,16,1,14,5,3,13,9,14,5,0,12,5,6,12,7,6,16,6,15,12,8,4,8,5,4,16,3,4,16,1,13,12,16,2,16,15,9,7,5,16,6,7,8,12,5,3,14,15,6,14,7,2,14,7,9,9,3,3,8,7,2,2,16,8,11,14,11,12,14,3,6,15,13,16,12,15,13,14,14,6,16,2,10,13,3,5,15,15,4,4,9,15,9,15,1,0,15,13,16,9,14,8,8,7,8,11,8,0,3,1,9,5,0,16,10,12,10,13,14,4,15,7,16,4,16,14,12,2,9,13,2,14,0,9,15,16,3,2,8,16,0,11,0,3,10,8,16,4,8,0,5,4,6,0,7,0,14,3,8,8,12,12,4,2,11,9,1,14,0,5,11,4,5,3,2,11,1,12,5,2,9,1,5,3,6,5,7,1,12,10,9,10,4,15,6,15,14,2,0,0,14,1,5,8,1,2,10,14,12,7,5,2,8,7,10,13,2,3,11,11,4,6,7,6,11,13,12,6,2,7,0,6,4,8,13,5,11,13,16,11,9,9,6,6,11,14,8,11,14,3,2,15,5,4,9,13,14,13,4,14,11,3,8,14,6,8,5,1,12,12,11,11,1,6,10,0,13,15,9,2,0,7,1,13,4,6,11,0,2,2,5,0,10,4,9,1,2,9,14,9,9,14,1,8,0,3,10,6,16,13,13,3,10,3,16,2,1,4,14,13,12,9,8,11,2,9,14,14,7,0,10,8,7,7,14,9,10,3,4,12,4,14,1,6,12,4,13,0,13,11,7,13,4,7,0,6,11,13,16,10,14,3,5,6,10,7,4,5,4,15,1,3,15,12,11,15,8,2,3,12,1,15,4,6,14,13,0,1,2,7,1,6,6,9,16,5,11,10,10,13,5,7,2,16,2,0,14,0,1,2,1,12,11,6,5,7,1,4,4,12,8,4,9,10,8,3,15,15,6,7,11,5,10,4,9,10,12,9,9,11,8,5,6,10,10,12,13,13,2,1,16,8,8,8,10,11,15,16,3,4,13,15,5,2,5,5,1,11,1,8,3,8,0,13,7,10,4,14,15,7,4,8,11,14,1,3,9,3,10,5,10,14,15,1,15,6,4,0,15,7,4,9,11,9,7,16,2,5,8,11,8,3,1,7,2,1,2,5,16,5,6,0,14,9,16,8,6,15,15,15,0,15,0,2,16,6,16,9,4,8,8,12,14,9,3,14,13,3,12,14,3,5,3,16,0,4,0,16,7,11,10,2,5,0,2,12,11,13,9,4,3,9,10,6,2,6,2,7,13,12,15,7,1,3,13,16,12,4,14,11,7,15,10,1,10,12,7,10,1,0,1,0,14,16,8,6,2,5,9}

    Returns: "Bad"

  37. 46

    5

    {2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2,4,3,1,0,2}

    Returns: "Good"

  38. 14

    1

    {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}

    Returns: "Good"

  39. 12

    9

    {5,3,6,0,2,4,1,7,8,5,3,6,3,6,0,2,4,1,7,8,5,3,6,0,6,0,2,4,1,7,8,5,3,6,0,2,0,2,4,1,7,8,5,3,6,0,2,4,2,4,1,7,8,5,3,6,0,2,4,1,4,1,7,8,5,3,6,0,2,4,1,7,1,7,8,5,3,6,0,2,4,1,7,8,7,8,5,3,6,0,2,4,1,7,8,5,8,5,3,6,0,2,4,1,7,8,5,3,5,3,6,0,2,4,1,7,8,5,3,6,3,6,0,2,4,1,7,8,5,3,6,0,6,0,2,4,1,7,8,5,3,6,0,2}

    Returns: "Good"

  40. 29

    8

    {4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4,1,0,7,5,6,3,2,4}

    Returns: "Good"

  41. 43

    40

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

    Returns: "Bad"

  42. 23

    13

    {4,3,5,9,2,1,6,12,8,11,0,7,10,4,3,5,9,2,1,6,12,8,11,3,5,9,2,1,6,12,8,11,0,7,10,4,3,5,9,2,1,6,12,8,11,0,5,9,2,1,6,12,8,11,0,7,10,4,3,5,9,2,1,6,12,8,11,0,7,9,2,1,6,12,8,11,0,7,10,4,3,5,9,2,1,6,12,8,11,0,7,10,2,1,6,12,8,11,0,7,10,4,3,5,9,2,1,6,12,8,11,0,7,10,4,1,6,12,8,11,0,7,10,4,3,5,9,2,1,6,12,8,11,0,7,10,4,3,6,12,8,11,0,7,10,4,3,5,9,2,1,6,12,8,11,0,7,10,4,3,5,12,8,11,0,7,10,4,3,5,9,2,1,6,12,8,11,0,7,10,4,3,5,9,8,11,0,7,10,4,3,5,9,2,1,6,12,8,11,0,7,10,4,3,5,9,2,11,0,7,10,4,3,5,9,2,1,6,12,8,11,0,7,10,4,3,5,9,2,1,0,7,10,4,3,5,9,2,1,6,12,8,11,0,7,10,4,3,5,9,2,1,6,7,10,4,3,5,9,2,1,6,12,8,11,0,7,10,4,3,5,9,2,1,6,12,10,4,3,5,9,2,1,6,12,8,11,0,7,10,4,3,5,9,2,1,6,12,8,4,3,5,9,2,1,6,12,8,11,0,7,10,4,3,5,9,2,1,6,12,8,11,3,5,9,2,1,6,12,8,11,0,7,10,4,3,5,9,2,1,6,12,8,11,0,5,9,2,1,6,12,8,11,0,7,10,4,3,5,9,2,1,6,12,8,11,0,7,9,2,1,6,12,8,11,0,7,10,4,3,5,9,2,1,6,12,8,11,0,7,10,2,1,6,12,8,11,0,7,10,4,3,5,9,2,1,6,12,8,11,0,7,10,4,1,6,12,8,11,0,7,10,4,3,5,9,2,1,6,12,8,11,0,7,10,4,3,6,12,8,11,0,7,10,4,3,5,9,2,1,6,12,8,11,0,7,10,4,3,5,12,8,11,0,7,10,4,3,5,9,2,1,6,12,8,11,0,7,10,4,3,5,9,8,11,0,7,10,4,3,5,9,2,1,6,12,8,11,0,7,10,4,3,5,9,2,11,0,7,10,4,3,5,9,2,1,6,12,8,11,0,7,10,4,3,5,9,2,1}

    Returns: "Good"

  43. 4

    3

    {0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0}

    Returns: "Good"

  44. 24

    15

    {12,13,0,14,6,8,9,2,7,4,10,11,3,1,5,12,13,0,14,6,8,9,2,7,13,0,14,6,8,9,2,7,4,10,11,3,1,5,12,13,0,14,6,8,9,2,7,4,0,14,6,8,9,2,7,4,10,11,3,1,5,12,13,0,14,6,8,9,2,7,4,10,14,6,8,9,2,7,4,10,11,3,1,5,12,13,0,14,6,8,9,2,7,4,10,11,6,8,9,2,7,4,10,11,3,1,5,12,13,0,14,6,8,9,2,7,4,10,11,3,8,9,2,7,4,10,11,3,1,5,12,13,0,14,6,8,9,2,7,4,10,11,3,1,9,2,7,4,10,11,3,1,5,12,13,0,14,6,8,9,2,7,4,10,11,3,1,5,2,7,4,10,11,3,1,5,12,13,0,14,6,8,9,2,7,4,10,11,3,1,5,12,7,4,10,11,3,1,5,12,13,0,14,6,8,9,2,7,4,10,11,3,1,5,12,13,4,10,11,3,1,5,12,13,0,14,6,8,9,2,7,4,10,11,3,1,5,12,13,0,10,11,3,1,5,12,13,0,14,6,8,9,2,7,4,10,11,3,1,5,12,13,0,14,11,3,1,5,12,13,0,14,6,8,9,2,7,4,10,11,3,1,5,12,13,0,14,6,3,1,5,12,13,0,14,6,8,9,2,7,4,10,11,3,1,5,12,13,0,14,6,8,1,5,12,13,0,14,6,8,9,2,7,4,10,11,3,1,5,12,13,0,14,6,8,9,5,12,13,0,14,6,8,9,2,7,4,10,11,3,1,5,12,13,0,14,6,8,9,2,12,13,0,14,6,8,9,2,7,4,10,11,3,1,5,12,13,0,14,6,8,9,2,7,13,0,14,6,8,9,2,7,4,10,11,3,1,5,12,13,0,14,6,8,9,2,7,4,0,14,6,8,9,2,7,4,10,11,3,1,5,12,13,0,14,6,8,9,2,7,4,10,14,6,8,9,2,7,4,10,11,3,1,5,12,13,0,14,6,8,9,2,7,4,10,11,6,8,9,2,7,4,10,11,3,1,5,12,13,0,14,6,8,9,2,7,4,10,11,3,8,9,2,7,4,10,11,3,1,5,12,13,0,14,6,8,9,2,7,4,10,11,3,1,9,2,7,4,10,11,3,1,5,12,13,0,14,6,8,9,2,7,4,10,11,3,1,5,2,7,4,10,11,3,1,5,12,13,0,14,6,8,9,2,7,4,10,11,3,1,5,12,7,4,10,11,3,1,5,12,13,0,14,6,8,9,2,7,4,10,11,3,1,5,12,13}

    Returns: "Good"

  45. 15

    1

    {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}

    Returns: "Good"

  46. 5

    4

    {1,0,1,2,3,3,2,1,1,1,0,1,2,0,2,3,1,3,0,0,2,3,0,3,2}

    Returns: "Bad"

  47. 47

    36

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

    Returns: "Good"

  48. 7

    7

    {1,3,6,4,5,0,2,3,6,4,5,0,2,1,6,4,5,0,2,1,3,4,5,0,2,1,3,6,5,0,2,1,3,6,4,0,2,1,3,6,4,5,2,1,3,6,4,5,0}

    Returns: "Good"

  49. 9

    5

    {1,0,4,3,2,1,0,4,3,0,4,3,2,1,0,4,3,2,4,3,2,1,0,4,3,2,1,3,2,1,0,4,3,2,1,0,2,1,0,4,3,2,1,0,4,1,0,4,3,2,1,0,4,3,0,4,3,2,1,0,4,3,2,4,3,2,1,0,4,3,2,1,3,2,1,0,4,3,2,1,0}

    Returns: "Good"

  50. 44

    38

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

    Returns: "Good"

  51. 48

    29

    {12,27,26,27,13,0,15,9,7,16,20,13,1,17,13,16,13,13,12,7,5,26,9,7,0,24,24,16,17,15,6,8,10,6,7,22,18,21,26,3,26,9,2,3,16,17,28,26,5,4,4,25,8,18,7,28,5,24,7,27,18,5,18,27,20,24,11,9,12,13,7,17,15,20,7,24,15,20,7,20,5,22,28,9,0,6,26,1,1,9,24,5,23,4,25,24,12,17,25,12,23,6,24,23,18,26,20,25,10,13,22,6,24,15,16,24,26,11,5,1,25,26,23,17,6,16,12,5,10,5,28,17,2,6,12,28,8,15,14,16,15,26,11,5,25,1,15,5,16,18,19,13,8,8,23,18,7,7,25,9,9,10,7,3,12,2,6,1,0,11,4,17,16,0,20,28,21,8,9,28,17,24,16,27,15,26,7,20,14,14,10,9,1,27,10,20,14,6,7,5,8,9,28,6,7,3,4,13,9,19,5,5,11,3,8,15,10,10,7,2,4,11,10,22,1,1,10,23,21,3,16,10,1,21,18,10,11,3,0,11,24,21,5,6,6,11,15,14,4,28,20,19,20,2,26,8,13,24,14,26,5,28,19,21,2,1,19,21,22,26,19,12,2,1,5,7,25,8,20,21,23,16,16,17,23,17,10,4,13,17,10,28,1,11,11,14,2,9,20,13,17,23,7,23,22,23,4,3,20,12,12,23,16,21,27,3,2,8,22,1,5,7,3,9,25,27,0,16,14,9,20,5,5,27,25,10,8,18,21,24,21,12,13,23,13,2,11,22,2,5,2,17,27,22,1,1,27,9,26,23,23,4,27,20,7,24,2,12,28,16,3,23,17,0,8,28,8,2,25,20,13,18,25,0,7,13,20,10,27,19,22,18,27,9,6,19,26,4,26,23,23,17,20,28,1,26,6,24,6,16,22,3,0,22,24,18,18,8,22,10,4,6,4,18,26,3,15,24,4,17,2,8,13,10,10,18,9,24,8,22,6,26,3,0,3,15,20,1,10,14,26,23,28,3,16,26,21,7,7,11,21,0,11,21,22,9,2,4,24,16,18,10,17,11,8,5,26,23,7,0,4,28,12,11,12,0,0,12,5,26,26,2,23,2,3,5,25,0,10,1,8,9,12,23,2,13,9,12,27,0,20,9,25,27,9,6,11,17,2,26,6,20,12,0,12,10,0,15,12,0,2,15,10,4,15,12,1,6,19,5,23,20,10,17,6,17,27,15,5,26,13,25,0,23,3,6,6,18,5,7,25,4,26,9,23,15,11,5,19,13,19,22,23,22,6,22,1,0,1,20,18,24,12,17,26,0,24,4,20,6,20,7,10,27,8,5,8,3,27,5,0,23,22,8,13,7,2,13,16,25,23,18,15,26,10,21,21,18,18,7,17,22,14,12,11,6,17,1,2,20,13,28,16,7,21,18,0,6,25,27,10,15,20,5,0,26,20,3,19,11,18,13,20,22,24,15,20,22,1,17,25,21,14,25,9,26,16,19,13,18,11,2,25,17,20,6,23,16,10,16,12,28,8,25,19,4,7,11,14,6,22,18,16,21,5,4,21,16,22,23,1,22,1,11,24,26,12,26,19,23,22,20,23,27,24,15,3,6,1,19,3,5,2,11,20,7,20,9,27,25,9,1,26,23,19,18,24,27,8,26,2,24,14,17,19,10,12,6,0,25,11,15,1,0,13,23,21,27,24,15,6,22,18,11,14,21,23,22,14,5,8,3,17,3,19,21,24,28,0,8,12,13,1,4,6,8,1,21,4,23,14,0,17,4,27,9,25,4,22,14,10,8,4,2,18,0,11,20,9,7,20,3,23,23,2,12,28,18,6,21,10,5,14,2,8,23,2,14,28,11,28,24,14,18,11,8,21,21,1,16,8,10,21,9,11,11,5,21,3,13,15,9,16,14,17,23,22,4,10,11,27,0,7,19,16,7,2,25,20,0,18,26,17,2,19,9,4,12,11,9,22,4,4,5,13,26,23,16,17,28,27,24,7,10,26,16,7,19,11,18,4,2,0,28,4,3,14,2,20,23,1,18,24,28,6,7,15,2,21,13,8,25,5,16,12,9,0,26,13,2,26,25,21,4,24,16,15,0,4,28,27,5,28,28,11,27,13,19,8,13,2,28,13,24,20,27,13,19,25,1,24,9,0,14,26,22,28,22,27,28,26,28,1,16,9,2,14,2,7,27,5,5,20,28,10,11,25,20,16,10,21,12,8,22,20,15,26,28,0,8,8,19,0,22,22,1,23,3,12,16,0,13,22,7,6,13,7,6,24,19,12,22,18,20,6,9,8,12,18,15,26,19,13,19,12,26,14,26,3,24,1,9,11,3,5,12,28,13,23,14,24,1,15,1,2,18,14,21,23,14,24,2,10,19,9,15,4,27,17,14,20,26,11,1,7,27,6,9,6,24,17,24,26,15,23,14,19,11,14,4,9,5,5,20,20,10,14,19,9,8,7,19,15,4,28,17,1,25,25,17,12,6,15,1,17,13,28,15,20,19,22,6,4,27,25,24,18,14,26,12,16,3,1,4,23,19,4,20,25,26,19,7,0,10,19,2,26,13,10,7,0,10,2,10,8,14,3,13,1,1,0,9,20,14,15,4,2,28,11,14,15,20,3,22,16,14,27,18,7,14,26,28,21,25,3,13,19,22,15,7,20,26,1,21,11,21,11,14,14,2,17,23,19,15,22,23,3,22,23,7,6,18,2,7,2,8,15,11,5,0,7,9,21,16,16,19,5,18,6,3,10,16,6,12,15,2,12,2,16,10,27,14,28,9,11,17,7,23,27,15,14,1,28,15,6,14,23,23,3,16,27,9,7,12,22,10,19,22,3,27,17,18,21,21,9,2,13,12,26,26,2,1,5,14,14,10,20,22,1,19,24,14,4,8,18,23,11,4,5,10,27,0,26,15,26,9,7,25,3,25,13,20,2,10,9,6,16,19,28,26,5,17,7,18,25,25,14,14,25,27,28,11,25,9,5,11,15,7,2,23,25,4,10,24,18,25,21,4,18,15,6,18,23,1,19,5,26,28,10,13,24,6,18,9,12,23,27,10,11,20,16,22,15,17,2,24,21,22,3,17,21,27,28,2,9,5,20,18,15,5,19,5,14,4,2,24,9,4,27,27,16,3,19,7,9,13,4,7,9,6,12,0,6,18,27,16,14,26,27,4,15,6,22,24,28,17,8,8,22,7,6,25,18,6,13,16,6,1,0,17,3,24,12,20,28,24,20,1,13,27,25,1,27,15,18,5,16,11,12,9,28,11,8,19,14,9,2,1,28,24,11,27,20,24,28,18,2,4,8,1,12,9,9,17,26,2,7,5,18,14,25,19,7,0,8,11,23,1,0,10,18,20,24,4,7,2,13,13,11,15,9,15,14,27,20,1,20,25,4,15,28,24,19,28,8,23,14,1,8,11,12,18,9,14,5,14,13,19,28,4,21,28,24,6,23,9,19,22,28,14,18,16,4,0,19,14,5,19,18,25,24,7,7,16,5,3,25,18,17,16,0,22,5,9,18,28,11,3,2,12,9,20,3,6,0,20,16,17,20,27,21,1,16,15,17,25,4,8,16,17,17,13,5,21,1,1,19,25,0,13,4,16,22,19,5,14,22,15,9,16,27,15,16,27,20,17,0,16,7,20,22,26,17,4,16,12,11,3,19,25,14,6,15,25,21,28,22,16,16,6,3,19,1,22,3,1,20,1,23,6,11,27,23,7,2,18,21,14,3,1,19,24,15,9,9,17,23,21,4,22,22,10,11,8,6,3,19,24,20,21,12,21,3,24,17,20,28,3,24,28,6,20,28,13,25,11,26,8,9,28,11,0,15,16,27,4,21,16,7,3,20,2,13,2,22,18,5,9,24,2,12,19,14,21,17,6,8,18,17,0,5,21,4,7,1,27,23,17,7,15,24,24,13,12,16,10,4,4,3,23,16,3,8,8,20,5,13,1,17,18,14,22,16,21,13,1,3,11,19,23,7,13,21,19,18,1,26,10,25,13,11,19,24,7,11,13,15,14,7,0,19,5,5,15,8,14,1,13,27,22,11,15,27,19,10,22,24,3,5,8,16,12,22,6,26,17,6,2,13,5,12,10,25,17,24,13,13,27,4,9,0,24,1,21,10,1,18,7,12,18,27,3,0,23,19,25,2,16,5,8,2,25,15,17,17,24,14,28,28,0,20,9,0,5,20,3,3,24,6,5,0,13,8,11,13,11,1,8,7,12,1,8,10,8,27,13,23,27,18,18,21,13,13,18,16,10,14,4,18,13,6,19,16,5,6,19,8,12,13,11,7,22,3,28,7,14,27,14,23,11,14,25,18,24,17,17,27,23,19,6,25,23,8,8,7,3,10,9,5,22,24,5,0,4,13,13,20,15,11,14,19,0,12,25,14,25,19,11,21,17,16,23,16,2,8,1,24,26,19,8,23,21,2,14,18,12,27,8,12,1,0,23,1,24,28,17,13,13,5,8,12,6,6,2,17,25,25,24,13,12,28,17,14,1,23,8,23,7,25,13,13,4,4,9,12,10,25,24,3,21,11,12,10,4,8,20,9,12,27,7,21,18,21,11,6,23,26,2,6,16,15,25,11,16,23,21,3,15,14,18,4,19,18,3,16,15,0,17,27,6,5,25,21,18,10,25,28,3,10,22,25,25,11,22,10,18,20,15,2,5,7,18,25,3,3,27,26,14,28,28,25,18,17,16,28,27,3,20,18,0,20,0,23,3,2,7,23,25,4,8,26,12,8,27,9,1,6,4,8,19,11,10,16,27,28,23,0,28,27,3,3,0,11,26,13,15,12,1,0,16,14,9,8,22,3,9,20,26,15,10,21,22,0,22,12,6,15,15,0,7,23,9,4,7,19,2,21,18,17,21,6,17,15,26,10,22,24,0,21,28,6,13,25,27,26,22,15,9,22,8,20,7,21,0,23,19,8,9,9,3,4,28,18,23,12,8,5,23,21,22,9,21,12,27,6,1,1,28,8,21,22,21,8,2,14,2,17,18,22,26,20,19,13,1,17,11,21,15,10,26,13,28,6,4,14,22,12,9,28,7,14,27,10,1,14,17,11,3,21,3,18,2,4,12,15,7,13,8,27,16,22,25,7,10,27,10,14,8,12,12,15,4,22,10,6,27,10,0,21,11,7,16,17,16}

    Returns: "Bad"

  52. 7

    5

    {1,2,0,3,4,1,2,2,0,3,4,1,2,0,0,3,4,1,2,0,3,3,4,1,2,0,3,4,4,1,2,0,3,4,1,1,2,0,3,4,1,2,2,0,3,4,1,2,0}

    Returns: "Good"

  53. 42

    37

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

    Returns: "Good"

  54. 16

    12

    {2,6,4,0,5,9,10,1,11,8,7,3,2,6,4,0,6,4,0,5,9,10,1,11,8,7,3,2,6,4,0,5,4,0,5,9,10,1,11,8,7,3,2,6,4,0,5,9,0,5,9,10,1,11,8,7,3,2,6,4,0,5,9,10,5,9,10,1,11,8,7,3,2,6,4,0,5,9,10,1,9,10,1,11,8,7,3,2,6,4,0,5,9,10,1,11,10,1,11,8,7,3,2,6,4,0,5,9,10,1,11,8,1,11,8,7,3,2,6,4,0,5,9,10,1,11,8,7,11,8,7,3,2,6,4,0,5,9,10,1,11,8,7,3,8,7,3,2,6,4,0,5,9,10,1,11,8,7,3,2,7,3,2,6,4,0,5,9,10,1,11,8,7,3,2,6,3,2,6,4,0,5,9,10,1,11,8,7,3,2,6,4,2,6,4,0,5,9,10,1,11,8,7,3,2,6,4,0,6,4,0,5,9,10,1,11,8,7,3,2,6,4,0,5,4,0,5,9,10,1,11,8,7,3,2,6,4,0,5,9,0,5,9,10,1,11,8,7,3,2,6,4,0,5,9,10}

    Returns: "Good"

  55. 28

    19

    {6,8,10,16,7,12,18,0,17,13,9,3,14,1,11,2,5,4,15,6,8,10,16,7,12,18,0,17,8,10,16,7,12,18,0,17,13,9,3,14,1,11,2,5,4,15,6,8,10,16,7,12,18,0,17,13,10,16,7,12,18,0,17,13,9,3,14,1,11,2,5,4,15,6,8,10,16,7,12,18,0,17,13,9,16,7,12,18,0,17,13,9,3,14,1,11,2,5,4,15,6,8,10,16,7,12,18,0,17,13,9,3,7,12,18,0,17,13,9,3,14,1,11,2,5,4,15,6,8,10,16,7,12,18,0,17,13,9,3,14,12,18,0,17,13,9,3,14,1,11,2,5,4,15,6,8,10,16,7,12,18,0,17,13,9,3,14,1,18,0,17,13,9,3,14,1,11,2,5,4,15,6,8,10,16,7,12,18,0,17,13,9,3,14,1,11,0,17,13,9,3,14,1,11,2,5,4,15,6,8,10,16,7,12,18,0,17,13,9,3,14,1,11,2,17,13,9,3,14,1,11,2,5,4,15,6,8,10,16,7,12,18,0,17,13,9,3,14,1,11,2,5,13,9,3,14,1,11,2,5,4,15,6,8,10,16,7,12,18,0,17,13,9,3,14,1,11,2,5,4,9,3,14,1,11,2,5,4,15,6,8,10,16,7,12,18,0,17,13,9,3,14,1,11,2,5,4,15,3,14,1,11,2,5,4,15,6,8,10,16,7,12,18,0,17,13,9,3,14,1,11,2,5,4,15,6,14,1,11,2,5,4,15,6,8,10,16,7,12,18,0,17,13,9,3,14,1,11,2,5,4,15,6,8,1,11,2,5,4,15,6,8,10,16,7,12,18,0,17,13,9,3,14,1,11,2,5,4,15,6,8,10,11,2,5,4,15,6,8,10,16,7,12,18,0,17,13,9,3,14,1,11,2,5,4,15,6,8,10,16,2,5,4,15,6,8,10,16,7,12,18,0,17,13,9,3,14,1,11,2,5,4,15,6,8,10,16,7,5,4,15,6,8,10,16,7,12,18,0,17,13,9,3,14,1,11,2,5,4,15,6,8,10,16,7,12,4,15,6,8,10,16,7,12,18,0,17,13,9,3,14,1,11,2,5,4,15,6,8,10,16,7,12,18,15,6,8,10,16,7,12,18,0,17,13,9,3,14,1,11,2,5,4,15,6,8,10,16,7,12,18,0,6,8,10,16,7,12,18,0,17,13,9,3,14,1,11,2,5,4,15,6,8,10,16,7,12,18,0,17,8,10,16,7,12,18,0,17,13,9,3,14,1,11,2,5,4,15,6,8,10,16,7,12,18,0,17,13,10,16,7,12,18,0,17,13,9,3,14,1,11,2,5,4,15,6,8,10,16,7,12,18,0,17,13,9,16,7,12,18,0,17,13,9,3,14,1,11,2,5,4,15,6,8,10,16,7,12,18,0,17,13,9,3,7,12,18,0,17,13,9,3,14,1,11,2,5,4,15,6,8,10,16,7,12,18,0,17,13,9,3,14,12,18,0,17,13,9,3,14,1,11,2,5,4,15,6,8,10,16,7,12,18,0,17,13,9,3,14,1,18,0,17,13,9,3,14,1,11,2,5,4,15,6,8,10,16,7,12,18,0,17,13,9,3,14,1,11,0,17,13,9,3,14,1,11,2,5,4,15,6,8,10,16,7,12,18,0,17,13,9,3,14,1,11,2,17,13,9,3,14,1,11,2,5,4,15,6,8,10,16,7,12,18,0,17,13,9,3,14,1,11,2,5}

    Returns: "Good"

  56. 2

    2

    {0, 1, 0, 1 }

    Returns: "Bad"

  57. 3

    3

    {0, 1, 2, 0, 1, 2, 0, 1, 2 }

    Returns: "Bad"

  58. 5

    2

    {0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0 }

    Returns: "Good"

  59. 7

    4

    {3, 2, 1, 0, 3, 2, 1, 3, 2, 1, 3, 2, 1, 2, 2, 0, 3, 1, 1, 0, 3, 1, 3, 0, 2, 0, 3, 0, 0, 3, 1, 2, 3, 2, 1, 1, 1, 1, 2, 1, 0, 3, 3, 1, 2, 0, 3, 2, 3 }

    Returns: "Bad"

  60. 3

    3

    {1, 0, 2, 2, 0, 1, 2, 1, 0 }

    Returns: "Bad"

  61. 3

    3

    {0, 1, 2, 1, 2, 0, 2, 0, 1 }

    Returns: "Good"

  62. 3

    1

    {0, 0, 0, 0, 0, 0, 0, 0, 0 }

    Returns: "Good"

  63. 3

    3

    {1, 1, 1, 2, 2, 2, 0, 0, 0 }

    Returns: "Bad"

  64. 3

    3

    {0, 1, 2, 1, 2, 0, 2, 0, 0 }

    Returns: "Bad"

  65. 3

    3

    {0, 1, 2, 1, 2, 0, 0, 1, 2 }

    Returns: "Bad"

  66. 2

    2

    {0, 1, 1, 0 }

    Returns: "Good"

  67. 5

    2

    {0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0 }

    Returns: "Bad"


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: