Welcome to Massey CS Club 2015/16!
To start things off, a new head data slave needs to be hired (the old one has been promoted).
The new head data slave must not only be fast at copying data, but also decent with math calculations or simply bashing numbers. Luckily for most people, the head data slave exam only consists of 1 question. Solve this question for bonus (Komachi) points.
Question
In the massive multiplayer online role-playing game Elder Tale, the humans are at war with monsters. Shiroe, the strategist of the legendary Debauchery Tea Party is in charge of organizing NPC militants to fight. The armed forces consists of different kinds of militants. Each militant is labelled with a number to based on importance. Militants who share the same number are indistinguishable. Shiroe wants to know the number of ways he can organize his army in a line such that the last militant with number is before the last militant with number for .
Input Specification
The first line of input will have one integer , the number of different kinds of militants.
The following lines will contain one integer each. The line will contain , the number of militants with the number .
Output Specification
Print the number of ways Shiroe can order his armies modulo .
Sample Input 1
3
2
2
1
Sample Output 1
3
Explanation
The 3 ways are:
1 1 2 2 3
1 2 1 2 3
2 1 1 2 3
Ah, that scored high Komachi points!
Sample Input 2
5
4
1
2
3
1
Sample Output 2
216
Comments
Leo I like Log Horizon and everything, but I don't get the input specifications. What are those integers supposed to mean????
The given input is : 3 2 2 1
Which is interpreted as:
First line: There are 3 types of militants
Second line: There are 2 militants of type 1
Third line: There are 2 militants of type 2
Fourth line: There are 2 militants of type 3
For example, 1 1 2 2 3 is a valid case for this input