#include namespace { #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wunused-function" #include #pragma GCC diagnostic pop using namespace std; using namespace atcoder; #define rep(i,n) for(int i = 0; i < (int)(n); i++) #define rrep(i,n) for(int i = (int)(n) - 1; i >= 0; i--) #define all(x) begin(x), end(x) #define rall(x) rbegin(x), rend(x) template bool chmax(T& a, const T& b) { if (a < b) { a = b; return true; } else return false; } template bool chmin(T& a, const T& b) { if (b < a) { a = b; return true; } else return false; } using ll = long long; using P = pair; using VI = vector; using VVI = vector; using VL = vector; using VVL = vector; ll dp[2][1 << 19], ndp[2][1 << 19]; } int main() { ios::sync_with_stdio(false); cin.tie(0); dp[0][0] = 1; rep(i, 19) { memset(ndp, 0, sizeof(ndp)); int l; cin >> l; rep(_, l) { int j; cin >> j; j--; rep(b, 2) rep(s, 1 << 19) if (!(s >> j & 1)) { ll v = dp[b][s]; if (!v) continue; ndp[b ^ __builtin_parity(s & (~0U << j))][s | 1 << j] += v; } } memcpy(dp, ndp, sizeof(dp)); } rep(b, 2) cout << dp[b][(1 << 19) - 1] << " \n"[b + 1 == 2]; }