Submit solution
Points:
100
Time limit:
2.0s
PyPy 3
5.0s
Python 3
5.0s
Memory limit:
977M
Author:
Problem type
Subsubstrings
You are given a string of length , and you need to answer queries.
- What is the size of the largest substring containing the same character, within the interval
i.e. Given the string "aaabbbb"
and the interval , the largest substring containing the same character would be "bbbb"
and have size 4.
Input
This first line contains the integers and .
The second line contains the string.
The following lines contain integers and .
Output
For each query, output a line containing the answer.
Containts
Example 1
Input
20 10
aaaddddccccaaabbbccc
4 9
2 13
13 17
2 8
18 20
18 19
6 7
3 16
17 18
17 19
Output
4
4
3
4
3
2
2
4
1
2
Comments