Let <
and >
.
Find the number of permutations
- For each
, if the -th character in is<
and if the -th character in is>
.
Constraints
is an integer. is a string of length . consists of<
and>
.
Input Specification
The first line will contain the integer
The second line will contain the string
Output Specification
Print the number of permutations that satisfy the condition, modulo
Note: Be sure to print the number modulo
Sample Input 1
Copy
4
<><
Sample Output 1
Copy
5
Explanation For Sample 1
There are five permutations that satisfy the condition, as follows:
Sample Input 2
Copy
5
<<<<
Sample Output 2
Copy
1
Explanation For Sample 2
There is one permutation that satisfies the condition, as follows:
Sample Input 3
Copy
20
>>>><>>><>><>>><<>>
Sample Output 3
Copy
217136290
Comments