atcoder#ARC076A. [ABC065C] Reconciled?
[ABC065C] Reconciled?
Score : points
Problem Statement
Snuke has dogs and monkeys. He wants them to line up in a row.
As a Japanese saying goes, these dogs and monkeys are on bad terms. ("ken'en no naka", literally "the relationship of dogs and monkeys", means a relationship of mutual hatred.) Snuke is trying to reconsile them, by arranging the animals so that there are neither two adjacent dogs nor two adjacent monkeys.
How many such arrangements there are? Find the count modulo (since animals cannot understand numbers larger than that). Here, dogs and monkeys are both distinguishable. Also, two arrangements that result from reversing each other are distinguished.
Constraints
Input
Input is given from Standard Input in the following format:
Output
Print the number of possible arrangements, modulo .
2 2
8
We will denote the dogs by A
and B
, and the monkeys by C
and D
. There are eight possible arrangements: ACBD
, ADBC
, BCAD
, BDAC
, CADB
, CBDA
, DACB
and DBCA
.
3 2
12
1 8
0
100000 100000
530123477