1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#include <algorithm>
#include <cstdio>

using namespace std;

#define P 1000000007LL

int main()
{
	int n;
	scanf("%d", &n);
	int k = 0, a;
	bool p = true;
	for (int i = 0; i < n; i++)
	{
		scanf("%d", &a);
		
		if (p&& a%2==0)
		{
			k++;
		}
		else if (a % 2 != 0 && p)
		{
			p = false;
		} else if (a % 2 != 0 && !p)
		{
			p = true;
			k++;
		}
	}
	if (!p)
	{
		printf("0");
	}
	else
	{
		k--;
		long long res = 1;
		for (int i = 0; i < k; i++)
		{
			res *= 2;
			res %= P;
		}


		printf("%lld", res);
	}
	

	return 0;
}