시간 제한메모리 제한제출정답맞힌 사람정답 비율
서브태스크 참고 (추가 시간 없음) 1024 MB (추가 메모리 없음)51323062.500%

문제

You are given a 3×3 grid of integers. Let Gi,j denote the integer in the i-th row and j-th column of the grid, where i and j are 0-indexed. The integer in the middle of the grid, G1,1, is missing. Find the maximum number of rows, columns, and diagonals of this square, that form sequences which are arithmetic progressions. You can replace the missing number with any integer.

An arithmetic progression (also known as arithmetic sequence) is a sequence of numbers such that the difference between consecutive terms is constant. In mathematical terms, this can be represented as an=an−1+d, where d is the common difference. In this problem, a sequence can be the 3 numbers in either a row, column or diagonal. We are looking to replace the missing value by an integer that maximizes the number of arithmetic progressions that can be found in the resulting set of sequences.

Two sequences are considered different if they are from different rows, columns, or diagonals. For example, the sequence {2,4,6} across the middle row and {2,4,6} across the top row will be counted as two sequences but the sequences {2,4,6} and {6,4,2} across the same row, column, or diagonal will be counted as one sequence.

입력

The first line of the input gives the number of test cases, T. T test cases follow.

Each test case consists of 3 lines.

The first line of each test case contains 3 integers, G0,0, G0,1, and G0,2.

The second line of each test case contains 2 integers, G1,0 and G1,2.

The last line of each test case contains 3 integers, G2,0, G2,1, and G2,2.

출력

For each test case, output one line containing Case #x: y, where x is the test case number (starting from 1) and y is the maximum possible number of arithmetic progressions that can be generated by the rows, columns, and diagonals of the grid after setting the missing element.

제한

  • 1 ≤ T ≤ 100.
  • Gi,j are integers, for all i,j.

Test Set 1 (6점)

시간 제한: 20 초

  • |Gi,j| ≤ 50, for all i,j.

Test Set 2 (8점)

시간 제한: 40 초

  • |Gi,j| ≤ 109, for all i,j.

예제 입력 1

3
3 4 11
10 9
-1 6 7
4 1 6
3 5
2 5 6
9 9 9
9 9
9 9 9

예제 출력 1

Case #1: 4
Case #2: 3
Case #3: 8

힌트

In Sample Case #1, if we set the missing number to be 5, we have exactly 4 arithmetic progressions.

  • top left diagonal: [3,5,7]
  • top right diagonal: [−1,5,11]
  • middle column: [4,5,6]
  • right column: [11,9,7]

If we set the missing number to any other integer, there would be only 1 progression. Thus, the answer is 4.

In Sample Case #2, if we set the missing number to be 4, we have exactly 3 arithmetic progressions.

  • top right diagonal: [6,4,2]
  • middle row: [3,4,5]
  • left column: [4,3,2]

Setting the missing number to any other integer results in fewer progressions, so we output 3.

In Sample Case #3, if we set the missing number to be 9, we have all possible arithmetic progressions. There are 8 total progressions (each one is [9,9,9]), so we output 8.

채점 및 기타 정보

  • 예제는 채점하지 않는다.