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
52
53
54
55
56
57
58
59
60
#include<bits/stdc++.h>
using namespace std;
#define int long long
int32_t main(){
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    //vector<int>v;
    //vector<bool>ok;
    int mod=1000000007;
    int res=0;
    bool frst=true;
    int n;
    cin>>n;
    vector<int>v;
    int oddctr=0;
    for(int i=0;i<n;i++){
        int x;
        cin>>x;
        v.push_back(x%2);
        if(x%2==1){
            oddctr++;
        }
    }
    if(oddctr%2==1){
        cout<<0;
        return 0;
    }
    int seria=0;
    bool on = false;
    for(auto w : v){
        if(on){
            if(w==0){
                continue;
            }
            else{
                on=false;
                continue;
            }
        }
        else{
            if(w==1){
                on=true;
                res+=seria+1;
                seria=0;
            }
            else{
                seria++;
            }
        }
    }
    //cout<<res;
    res+=seria+1;
    //cout<<res;
    int finalres=1;
    for(int i=0;i<res-2;i++){
        finalres*=2;
        finalres%=mod;
    }
    cout<<finalres;
}