프로그램 명: ioi_garden
제한시간: 2 초
//번역//

Ramesses II has just returned victorious from battle. To commemorate his victory, he has decided to build a majestic garden. The garden will contain a long line of plants that will run all the way from his palace at Luxor to the temple of Karnak. It will consist only of lotus plants and papyrus plants, since they symbolize Upper and Lower Egypt respectively.??

The garden must contain exactly N plants. Also, it must be balanced: in any contiguous section of the garden, the numbers of lotus and papyrus plants must not differ by more than 2.

A garden can be represented as a string of letters ‘L’ (lotus) and ‘P’ (papyrus). For example, for N=5 there are 14 possible balanced gardens. In alphabetical order, these are: LLPLP, LLPPL, LPLLP, LPLPL, LPLPP, LPPLL, LPPLP, PLLPL, PLLPP, PLPLL, PLPLP, PLPPL, PPLLP, and PPLPL.

The possible balanced gardens of a certain length can be ordered alphabetically, and then numbered starting from 1. For example, for N=5, garden number 12 is the garden PLPPL.

TASK

Write a program that, given the number of plants N and a string that represents a balanced garden, calculates the number assigned to this garden modulo some given integer M. Note that for solving the task, the value of M has no importance other than simplifying computations.

CONSTRAINTS

입력

Your program must read from the standard input the following data:

출력

Your program must write to the standard output a single line containing one integer between 0 and M?1 (inclusive), the number assigned to the garden described in the input, modulo M.

입출력 예

입력

5 
7 
PLPPL 

출력

5
The actual number assigned to PLPPL is 12. So, the output is 12 modulo 7, which is 5.

입력

12 
10000 
LPLLPLPPLPLL 

출력

39

GRADING

In inputs worth a total of 40 points, N will not exceed 40.
출처:International Olympiad In Informatics 2008

[질/답] [제출 현황] [푼 후(3)]
[ 채 점 ] [홈으로]  [뒤 로]