#include using namespace std; typedef long long ll; typedef long double ld; #define REP(i, n) for (int i = 0; i < (n); ++i) #define REPR(i, n) for (int i = n - 1; i >= 0; --i) #define FOR(i, m, n) for (int i = m; i < n; ++i) #define FORR(i, m, n) for (int i = m; i >= n; --i) #define ALL(v) (v).begin(),(v).end() templatebool chmax(T &a, const T &b) { if (abool chmin(T &a, const T &b) { if (b> n >> m; vector dp(2*n+1,vector(n*n+1,vector(2*n+1,0LL))); dp[0][0][0]=1; REP(i,2*n){ REP(j,n*n+1){ REP(k,i/2+1){ if(dp[i][j][k]==0) continue; (dp[i+1][j+k][k]+=dp[i][j][k])%=m; (dp[i+1][j][k+1]+=dp[i][j][k])%=m; } } } REP(i,n*n+1){ cout << dp[2*n][i][n] << endl; } }