100 atcoder#ABC175A. [ABC175A] Rainy Season
[ABC175A] Rainy Season
Score : points
Problem Statement
We have weather records at AtCoder Town for some consecutive three days. A string of length , , represents the records - if the -th character is S
, it means it was sunny on the -th day; if that character is R
, it means it was rainy on that day.
Find the maximum number of consecutive rainy days in this period.
Constraints
- Each character of is
S
orR
.
Input
Input is given from Standard Input in the following format:
Output
Print the maximum number of consecutive rainy days in the period.
RRS
2
We had rain on the -st and -nd days in the period. Here, the maximum number of consecutive rainy days is , so we should print .
SSS
0
It was sunny throughout the period. We had no rainy days, so we should print .
RSR
1
We had rain on the -st and -rd days - two "streaks" of one rainy day, so we should print .