시간 제한메모리 제한제출정답맞힌 사람정답 비율
2 초 128 MB43272259.459%

문제

The puzzle game of Sudoku is played on a board of $N^2 \times N^2$ cells. The cells are grouped in $N \times N$ squares of $N \times N$ cells each. Each cell is either empty or contains a number between $1$ and $N^2$.

The sudoku position is correct when numbers in each row, each column and each square are different. The goal of the game is, starting from some correct position, fill all empty cells so that the final position is still correct.

This game is fairly popular in the Internet, and there are many sites which allow visitors to solve puzzles online. Such sites always have a subroutine to determine a correctness of a given position.

You are to write such a routine.

입력

Input file contains integer $N$, followed by $N^4$ integers -- sudoku position. Empty cells are denoted by zeroes. 

출력

Output file must contain a single string 'CORRECT' or 'INCORRECT'.

제한

  • $1 \le N \le 10$.

예제 입력 1

2
0 0 0 0
0 0 0 0
0 0 2 0
0 0 0 1

예제 출력 1

CORRECT

예제 입력 2

2
2 1 3 0
3 2 4 0
1 3 2 4
0 0 0 1

예제 출력 2

INCORRECT