문제
It's the year , and Bessie became the first cow in space! During her journey between the stars, she found a number line with () points, numbered from to . All points are initially colored white. She can perform the following operation any number of times.
Choose a position within the number line and a positive integer . Then, color all the points in the interval red and all points in blue. All chosen intervals must be disjoint (i.e. no points in can be already colored red or blue). The entire interval must also fall within the number line (i.e. ).
Farmer John gives Bessie a string of length consisting of characters , , and . The string represents Farmer John's color preferences for each point: means the 'th point must be colored red, means the 'th point must be colored blue, and means there is no constraint on the color for the 'th point.
Help Bessie count the number of distinct ways for the number line to be colored while satisfying Farmer John's preferences. Two colorings are different if there is at least one corresponding point with a different color. Because the answer may be large, output it modulo .
입력
The first line contains an integer .
The following line contains string .
출력
Output the number of distinct ways for the number line to be colored while satisfying Farmer John's preferences modulo .
예제 입력 1
6
RXXXXB
예제 출력 1
5
예제 입력 2
6
XXRBXX
예제 출력 2
6
예제 입력 3
12
XBXXXXRXRBXX
예제 출력 3
18
점수
Input 4: Inputs 5-6: Inputs 7-13: All but at most characters in are .Inputs 14-23: No additional constraints
코드를 제출하려면 로그인이 필요합니다.
로그인