FN16QUOT - String Theory

no tags 

Nested quotations are great not only for writing literature with a complex narrative structure, but also in programming languages. While it may seem necessary to use different quotation marks at different nesting levels for clarity, there is an alternative. We can display various nesting levels using $k$-quotations, which are defined as follows.

A $1$-quotation is a string that begins with a quote character, ends with another quote character and contains no quote characters in-between. These are just the usual (unnested) quotations. For example, 'this is a string' is a $1$-quotation.

For $k > 1$, a $k$-quotation is a string that begins with $k$ quote characters, ends with another $k$ quote characters and contains a nested string in-between. The nested string is a non-empty sequence of $(k-1)$-quotations, which may be preceded, separated, and/or succeeded by any number of non-quote characters. For example, ''All 'work' and no 'play''' is a $2$-quotation.

Given a description of a string, you must determine its maximum possible nesting level.

Input

Multiple test cases. Please process until EOF is reached. For each test case:

The input consists of two lines. The first line contains an integer $n$ ( $1 \le n \le 100$). The second line contains $n$ integers $a_1, a_2, \ldots , a_ n$ ($1 \le a_ i \le 100$), which describe a string as follows. The string starts with $a_1$ quote characters, which are followed by a positive number of non-quote characters, which are followed by $a_2$ quote characters, which are followed by a positive number of non-quote characters, and so on, until the string ends with $a_ n$ quote characters.

Output

For each test case, display the largest number $k$ such that a string described by the input is a $k$-quotation. If there is no such $k$, display no quotation instead.

Example

Input:
5
2 1 1 1 3
1
22
1
1

Output:
2
4
no quotation

hide comments
feodorv: 2020-04-23 01:06:43

Second test case: ((((-(((-((-(-)-(-)-))-)))-))))

Ha Minh Ngoc: 2016-06-11 17:49:09

Please check test cases data to support Java?

RE: Data fixed. Please resubmit.

RE: Thank you

Last edit: 2016-06-11 19:11:03
Vipul Srivastava: 2016-06-10 18:42:47

Can someone explain the second test case??


Added by:Fudan University Problem Setters
Date:2016-05-20
Time limit:1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: ASM64 GOSU JS-MONKEY
Resource:ACM/ICPC World Finals 2016