

Time Limit: 2 sec / Memory Limit: 1024 MB
配点 : 点
問題文
X
と .
からなる文字列 が与えられます。
に対して、次の操作を 回以上 回以下行うことができます。
.
をX
に置き換える
操作後に、X
を最大で何個連続させることができますか?
制約
- の各文字は
X
または.
である - は整数である
入力
入力は以下の形式で標準入力から与えられる。
出力
答えを出力せよ。
入力例 1Copy
XX...X.X.X. 2
出力例 1Copy
5
の 文字目と 文字目の .
を X
に置き換えて XX...XXXXX.
とすると、 文字目から 文字目で X
が 個連続しています。
X
を 個以上連続させることはできないので、答えは です。
入力例 2Copy
XXXX 200000
出力例 2Copy
4
操作を行う回数は 回でも構いません。
Score : points
Problem Statement
Given is a string consisting of X
and .
.
You can do the following operation on between and times (inclusive).
- Replace a
.
with anX
.
What is the maximum possible number of consecutive X
s in after the operations?
Constraints
- Each character of is
X
or.
. - is an integer.
Input
Input is given from Standard Input in the following format:
Output
Print the answer.
Sample Input 1Copy
XX...X.X.X. 2
Sample Output 1Copy
5
After replacing the X
s at the -th and -th positions with X
, we have XX...XXXXX.
, which has five consecutive X
s at -th through -th positions.
We cannot have six or more consecutive X
s, so the answer is .
Sample Input 2Copy
XXXX 200000
Sample Output 2Copy
4
It is allowed to do zero operations.