Reconciled?

AtCoder
IDarc076_a
Time2000ms
Memory256MB
Difficulty
Snuke has $N$ dogs and $M$ 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 $10^9+7$ (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 * $1 ≤ N,M ≤ 10^5$ ## Input Input is given from Standard Input in the following format: $N$ $M$ [samples]
Samples
Input #1
2 2
Output #1
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`.
Input #2
3 2
Output #2
12
Input #3
1 8
Output #3
0
Input #4
100000 100000
Output #4
530123477
API Response (JSON)
{
  "problem": {
    "name": "Reconciled?",
    "description": {
      "content": "Snuke has $N$ dogs and $M$ 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 m",
      "description_type": "Markdown"
    },
    "platform": "AtCoder",
    "limit": {
      "time_limit": 2000,
      "memory_limit": 262144
    },
    "difficulty": "None",
    "is_remote": true,
    "is_sync": true,
    "sync_url": null,
    "sign": "arc076_a"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "content": "Snuke has $N$ dogs and $M$ monkeys. He wants them to line up in a row.\nAs a Japanese saying goes, these dogs and monkeys are on bad terms. _(\"ken'en no naka\", literally \"the relationship of dogs and m...",
      "is_translate": false,
      "language": "English"
    }
  ]
}
Full JSON Raw Segments