#include using namespace std; constexpr int mod = 1000000007; long long modpow(long long a,long long b) { long long ans = 1; while(b) { if(b & 1) { (ans *= a) %= mod; } (a *= a) %= mod; b /= 2; } return ans; } int main() { int n; cin >> n; vectorp(n); int cnt = 0,cnt2 = 0; for(int i = 0; i < n; i++) { cin >> p[i]; if(p[i] > 50) { cnt++; } if(p[i] < 50) { cnt2++; } } if(cnt == 0) { cout << 0 << endl; return 0; } cout << modpow(2,cnt-1)*modpow(2,cnt2)%mod << endl; }