Problem F
Four Die Rolls
Ashley and Brandon are playing a game where they roll a
six-sided dice four times. Each integer from
Ashley wins if all four digits in the integers are different. Otherwise, Brandon wins.
The dice has been rolled from
Input
The first line contains
The next line contains
Output
Output two space-separated integers on one line, which are the number of ways to roll the remaining times such that Ashley wins, and the number of ways to roll the remaining dice such that Brandon wins.
Sample Input 1 | Sample Output 1 |
---|---|
2 1 2 |
12 24 |
Sample Input 2 | Sample Output 2 |
---|---|
2 3 3 |
0 36 |