- Time limit: 1.00 s
- Memory limit: 512 MB
Consider an grid whose squares may have traps. It is not allowed to move to a square with a trap.
Your task is to calculate the number of paths from the upper-left square to the lower-right square where you only can move right or down.
Input
The first input line has an integer : the size of the grid.
After this, there are lines that describe the grid. Each line has characters: .
denotes an empty cell, and *
denotes a trap.
Output
Print the number of paths modulo .
Note that this time, there might be traps in the top-left or bottom-right squares.
Constraints
Example
Input:
4 .... .*.. ...* *...
Output:
3