#ARC066A. [ABC050C] Lining Up

[ABC050C] Lining Up

Score : 300300 points

Problem Statement

There are NN people, conveniently numbered 11 through NN. They were standing in a row yesterday, but now they are unsure of the order in which they were standing. However, each person remembered the following fact: the absolute difference of the number of the people who were standing to the left of that person, and the number of the people who were standing to the right of that person. According to their reports, the difference above for person ii is AiA_i.

Based on these reports, find the number of the possible orders in which they were standing. Since it can be extremely large, print the answer modulo 109+710^9+7. Note that the reports may be incorrect and thus there may be no consistent order. In such a case, print 00.

Constraints

  • 1N1051 \leq N \leq 10^5
  • 0AiN10 \leq A_i \leq N-1

Input

The input is given from Standard Input in the following format:

NN

A1A_1 A2A_2 ...... ANA_N

Output

Print the number of the possible orders in which they were standing, modulo 109+710^9+7.

5
2 4 4 0 2
4

There are four possible orders, as follows:

  • 2,1,4,5,32,1,4,5,3
  • 2,5,4,1,32,5,4,1,3
  • 3,1,4,5,23,1,4,5,2
  • 3,5,4,1,23,5,4,1,2
7
6 4 0 2 4 0 2
0

Any order would be inconsistent with the reports, thus the answer is 00.

8
7 5 1 1 7 3 5 3
16