#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl; #define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl; 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; } using namespace std; typedef long long ll; template vector> vec2d(int n, int m, T v){ return vector>(n, vector(m, v)); } template vector>> vec3d(int n, int m, int k, T v){ return vector>>(n, vector>(m, vector(k, v))); } template void print_vector(vector v, char delimiter=' '){ if(v.empty()) { cout << endl; return; } for(int i = 0; i+1 < v.size(); i++) cout << v[i] << delimiter; cout << v.back() << endl; } vector gen_array(int n, int l, int r){ int d = r-l; random_device rnd; mt19937 mt(rnd()); vector ans(n); int x = mt(); for(int i = 0; i < n; i++) ans[i] = l+(mt()%d); return ans; } using mint = atcoder::modint998244353; ostream& operator<<(ostream& os, const mint& m){ os << m.val(); return os; } const ll MOD = 998244353; #define N_MAX 200002 mint inv[N_MAX],fac[N_MAX],finv[N_MAX]; void init(){ fac[0]=1;fac[1]=1; finv[0]=1;finv[1]=1; inv[1]=1; for(int i=2;i= 0); mint ans = 1; while (n > 0) { if (n&1) ans = ans*a; a = a*a; n >>= 1; } return ans; } mint solve(int n, vector a){ vector is_different(30); function, int)> dfs = [&](vector v, int d){ vector l, r; int b = 1< a){ set> st; for(int x = 0; x <= 100; x++){ vector b(n); for(int i = 0; i < n; i++) b[i] = a[i]^x; sort(b.begin(), b.end()); for(int i = 0; i < n; i++) b[i] = b[i]^x; st.insert(b); } return mint(st.size()); } void test(int n){ for(int i = 0; i < 10; i++){ auto a = gen_array(n, 0, 10); mint ans = solve(n, a); mint ans1 = naive(n, a); if(ans != ans1){ print_vector(a); cout << ans << ' ' << ans1 << endl; } } } int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << setprecision(10) << fixed; int n; cin >> n; // test(n); // return 0; vector a(n); for(int i = 0; i < n; i++) cin >> a[i]; cout << solve(n, a) << endl; }