eolymp
bolt
Try our new interface for solving problems
Problems

Where Am I?

Where Am I?

Farmer John has gone out for a walk down the road and thinks he may now be lost!

Along the road there are n farms in a row. Farms unfortunately do not have house numbers, making it hard for Farmer John to figure out his location along the road. However, each farm does have a colorful mailbox along the side of the road, so Farmer John hopes that if he looks at the colors of the mailboxes nearest to him, he can uniquely determine where he is.

Each mailbox color is specified by a letter in the range A..Z, so the sequence of n mailboxes down the road can be represented by a string of length n containing letters in the range A..Z. Some mailboxes may have the same colors as other mailboxes. Farmer John wants to know what is the smallest value of k such that if he looks at any sequence of k consecutive mailboxes, he can uniquely determine the location of that sequence along the road.

For example, suppose the sequence of mailboxes along the road is ABCDABC. Farmer John cannot set k = 3, since if he sees ABC, there are two possible locations along the road where this consecutive set of colors might be. The smallest value of k that works is k = 4, since if he looks at any consecutive set of 4 mailboxes, this sequence of colors uniquely determines his position along the road.

Input

The first line contains n (1n100), and the second line contains a string of n characters, each in the range A..Z.

Output

Print a single integer, specifying the smallest value of k that solves Farmer John's problem.

Time limit 1 second
Memory limit 128 MiB
Input example #1
7
ABCDABC
Output example #1
4
Source 2019 USACO December Bronze