#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 = 1001001, T; cin >> T; vm v(N); mint a=26, b=0, c=0; v[1] = 0, v[2] = 650; repx(i, 3, N) { v[i] = v[i-2]*26; if (i%2 == 1) { v[i] += a.pow((i-1)/2-1) * 2 * 650; } else { v[i] += (a.pow(i/2-1) * 2 - 1) * 650; } } rep(_, T) { lint x, y, z; cin >> x; std::cout << v[x].val() << '\n'; } }