시간 제한메모리 제한제출정답맞힌 사람정답 비율
3 초 128 MB62171628.070%

문제

A sequence of words over alphabet [‘a’,…,’z’] is given. The length of longest word occuring as a coherent fragment in every word given is to be found.

Write a program which:

  • reads the sequence of words from the standard input,
  • counts the length of the longest word occuring as a coherent fragment in every word given,
  • writes the result to the standard output.

입력

In the first line of the standard input there is an integer n, where 1 ≤ n ≤ 5 is the number of words. In each of the next n lines there is one word formed from small letters of English alphabet [‘a’,…,’z’]. The length of each word is at least 1, but not greater than 2,000.

출력

The text of standard output should consist of exactly one line containing a single integer equal to the length of the longest word occuring as the coherent fragment in every word given.

예제 입력 1

3
abcb
bca
acbc

예제 출력 1

2