#include #include using namespace std; using namespace atcoder; typedef int64_t lint; #define rep(i, n) for(int i=0; i; using vvi = vector>; template inline void vin(vector& v) { rep(i, v.size()) cin >> v.at(i); } template inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } template inline void drop(T x) { cout << x << endl; exit(0); } template void vout(vector v) { rep(i, v.size()) { cout << v.at(i) << ' '; } cout << endl; } constexpr lint LINF = LLONG_MAX/2; using mint = modint998244353; using vm = vector; int main() { lint N; cin >> N; vi v(N); std::vector> w(N); mint a=2, b=0, c=0; lint x, y, z; rep(i, N) { cin >> v[i]; rep(j, v[i]) { cin >> x; x--; w[i].insert(x); } } rep(bit, 1<<12) { bitset<12> bits = bit; x = 0; rep(i, N) { bool f = true; rep(j, 12) { if (bits.test(j)) { if (!w[i].count(j)) f = false; } } if (f) x++; } if (bits.count()%2 == 0) b += a.pow(x); else b -= a.pow(x); } std::cout << b.val() << '\n'; }