#arc124e. [arc124_e]Pass to Next
[arc124_e]Pass to Next
Problem Statement
people called Person are standing in a circle.
For each , Person 's neighbor to the right is Person , and Person 's neighbor to the right is Person .
Person initially has balls.
They will do the following procedure just once.
- Each person chooses some (possibly zero) of the balls they have.
- Then, each person simultaneously hands the chosen balls to the neighbor to the right.
- Now, make a sequence of length , where the -th term is the number of balls Person has at the moment.
Let be the set of all sequences that can result from the procedure. For example, when , we have $S= \\{(0,1,2),(0,2,1),(1,0,2),(1,1,1),(1,2,0),(2,0,1),(2,1,0) \\}$.
Compute , modulo .
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print , modulo .
Sample Input 1
3
1 1 1
Sample Output 1
1
- We have $S= \\{(0,1,2),(0,2,1),(1,0,2),(1,1,1),(1,2,0),(2,0,1),(2,1,0) \\}$.
- is .
Sample Input 2
3
2 1 1
Sample Output 2
6
Sample Input 3
20
5644 493 8410 8455 7843 9140 3812 2801 3725 6361 2307 1522 1177 844 654 6489 3875 3920 7832 5768
Sample Output 3
864609205
- Be sure to compute it modulo .