#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; } const ll MOD = 998244353; using mint = atcoder::modint998244353; ostream& operator<<(ostream& os, const mint& m){ os << m.val(); return os; } #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> n; dp[0][0][0] = 1; for(int i = 0; i < n; i++){ for(int j = 0; j < n; j++){ for(int k = 0; k < 3; k++){ // 次のやつ int j_nx = k == 2 ? j+1 : j; int k_nx = (k+1)%3; dp[i+1][j_nx][k_nx] += dp[i][j][k]; // そうでないやつ dp[i+1][j][k] += dp[i][j][k]*25; } } } mint ans = 0; for(int j = 0; j <= n; j++){ for(int k = 0; k < 3; k++){ ans += dp[n][j][k]*j; } } cout << ans << endl; }