PivotOJ

Ace Arbiter

시간 제한: 1000ms메모리 제한: 1024MB출처: NCPC 2022BOJ 26024

문제

Alice and Bob are playing a friendly game of ping pong. The game consists of several rounds. At the end of each round, exactly one player gets one point. The first player to 11 points wins. When that happens, the game immediately ends. Alice start serving the first round, then Bob serves for the next two rounds, then Alice serves twice, then Bob serves twice, and so on.

At any time in the game, the current score is written XX-YY, where XX is the number of points of the player who is currently serving, and YY is the number of points of the other player. This constant switching of the scores back and forth can be a little bit error-prone. Eve is the umpire, and she wrote down a log of the current scores at a few different times during the game. But since Eve is a bit unreliable, you worry that she wrote down the wrong scores. Write a program which, given the list of scores Eve wrote down, checks whether or not this list of scores can appear in an actual game.

입력

The first line of input contains an integer nn (1n1001 \le n \le 100), the number of lines in the log. Then follow nn lines, each containing a string of the from XX-YY (0X,Y110 \le X,Y \le 11), the list of scores Eve wrote down, in chronological order.

출력

If the input is a valid log of a not necessarily finished game, output "ok". Otherwise, output "error ii", where 1in1 \le i \le n is the largest value such that the list of the first i1i-1 entries is valid, but the list of the first ii entries is invalid.

예제

예제 1

입력
5
0-0
1-0
1-0
2-0
1-2
출력
ok

예제 2

입력
2
1-0
0-0
출력
error 2

예제 3

입력
4
11-0
11-0
11-1
11-11
출력
error 3

예제 4

입력
4
0-0
1-0
0-2
2-1
출력
error 3
코드를 제출하려면 로그인하세요.