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
#include <bits/stdc++.h>
typedef long long ll;

int main() {
	std::ios_base::sync_with_stdio(false);
	std::cin.tie(nullptr);
	std::cout.tie(nullptr);

	constexpr int MOD = 1e9+7;

	int n;
	std::cin >> n;

	ll sum = 0, ans = 1;
	for (int i = 0; i < n; i++) {
		int x;
		std::cin >> x;
		sum += x;
		if (sum % 2 == 0) ans = (ans * 2) % MOD;
	}
	ans /= 2;

	if (sum % 2 == 1) std::cout << "0\n";
	else std::cout << ans << '\n';

	return 0;
}