For a given integer K and a string S of length N, we denote power of S, as the length of a longest substring occurring in S at least K times.
Given K and S, find the power of S.
Constraints:
1 <= N <= 106
1 <= K <= N
S consists of latin lowercase letters only
Input format:
In the first line there are two integers K and N separated by a single space. The second line constains string S itself.
Output format:
In one line, output the power of string S for a given K.
2 11 abrakadabra
4
Substring "abra" occurs in S two times and it is the longest substring of all substrings of S occurring at least two times.
Please login to use the editor
You need to be logged in to access the code editor
Loading...
Please wait while we load the editor
Login to unlock the editorial
Please login to use the editor
You need to be logged in to access the code editor
Loading...
Please wait while we load the editor