#include using i32 = int; using u32 = unsigned int; using i64 = long long; using u64 = unsigned long long; using i128 = __int128_t; using u128 = __uint128_t; using f64 = double; using f80 = long double; using f128 = __float128; constexpr i32 operator"" _i32(u64 v) { return v; } constexpr i32 operator"" _u32(u64 v) { return v; } constexpr i64 operator"" _i64(u64 v) { return v; } constexpr u64 operator"" _u64(u64 v) { return v; } constexpr f64 operator"" _f64(f80 v) { return v; } constexpr f80 operator"" _f80(f80 v) { return v; } using Istream = std::istream; using Ostream = std::ostream; using Str = std::string; template using Lt = std::less; template using Gt = std::greater; template using IList = std::initializer_list; template using BSet = std::bitset; template using Pair = std::pair; template using Tup = std::tuple; template using Arr = std::array; template using Deq = std::deque; template using Set = std::set; template using MSet = std::multiset; template using USet = std::unordered_set; template using UMSet = std::unordered_multiset; template using Map = std::map; template using MMap = std::multimap; template using UMap = std::unordered_map; template using UMMap = std::unordered_multimap; template using Vec = std::vector; template using Stack = std::stack; template using Queue = std::queue; template using MaxHeap = std::priority_queue; template using MinHeap = std::priority_queue, Gt>; using NSec = std::chrono::nanoseconds; using USec = std::chrono::microseconds; using MSec = std::chrono::milliseconds; using Sec = std::chrono::seconds; template constexpr T LIMMIN = std::numeric_limits::min(); template constexpr T LIMMAX = std::numeric_limits::max(); template constexpr T INF = (LIMMAX - 1) / 2; template constexpr T PI = T{3.141592653589793238462643383279502884}; template constexpr T TEN(const int n) { return n == 0 ? T{1} : TEN(n - 1) * T{10}; } Ostream& operator<<(Ostream& os, i128 v) { bool minus = false; if (v < 0) { minus = true, v = -v; } Str ans; if (v == 0) { ans = "0"; } while (v) { ans.push_back('0' + v % 10), v /= 10; } std::reverse(ans.begin(), ans.end()); return os << (minus ? "-" : "") << ans; } Ostream& operator<<(Ostream& os, u128 v) { Str ans; if (v == 0) { ans = "0"; } while (v) { ans.push_back('0' + v % 10), v /= 10; } std::reverse(ans.begin(), ans.end()); return os << ans; } template bool chmin(T& a, const T& b) { if (a > b) { a = b; return true; } else { return false; } } template bool chmax(T& a, const T& b) { if (a < b) { a = b; return true; } else { return false; } } template constexpr T floorDiv(T x, T y) { if (y < T{}) { x = -x, y = -y; } return x >= T{} ? x / y : (x - y + 1) / y; } template constexpr T ceilDiv(T x, T y) { if (y < T{}) { x = -x, y = -y; } return x >= T{} ? (x + y - 1) / y : x / y; } template constexpr T modPower(T v, I n, T mod) { T ans = 1 % mod; for (; n > 0; n >>= 1, (v *= v) %= mod) { if (n % 2 == 1) { (ans *= v) %= mod; } } return ans; } template constexpr T power(T v, I n) { T ans = 1; for (; n > 0; n >>= 1, v *= v) { if (n % 2 == 1) { ans *= v; } } return ans; } template constexpr T power(T v, I n, const T& e) { T ans = e; for (; n > 0; n >>= 1, v *= v) { if (n % 2 == 1) { ans *= v; } } return ans; } template Vec& operator+=(Vec& vs1, const Vec& vs2) { vs1.insert(vs1.end(), vs2.begin(), vs2.end()); return vs1; } template Vec operator+(const Vec& vs1, const Vec& vs2) { auto vs = vs1; vs += vs2; return vs; } template void fillAll(Vs& arr, const V& v) { if constexpr (std::is_convertible::value) { arr = v; } else { for (auto& subarr : arr) { fillAll(subarr, v); } } } template void sortAll(Vs& vs) { std::sort(std::begin(vs), std::end(vs)); } template void sortAll(Vs& vs, C comp) { std::sort(std::begin(vs), std::end(vs), comp); } template void reverseAll(Vs& vs) { std::reverse(std::begin(vs), std::end(vs)); } template V sumAll(const Vs& vs) { if constexpr (std::is_convertible::value) { return static_cast(vs); } else { V ans = 0; for (const auto& v : vs) { ans += sumAll(v); } return ans; } } template int minInd(const Vs& vs) { return std::min_element(std::begin(vs), std::end(vs)) - std::begin(vs); } template int maxInd(const Vs& vs) { return std::max_element(std::begin(vs), std::end(vs)) - std::begin(vs); } template int lbInd(const Vs& vs, const V& v) { return std::lower_bound(std::begin(vs), std::end(vs), v) - std::begin(vs); } template int ubInd(const Vs& vs, const V& v) { return std::upper_bound(std::begin(vs), std::end(vs), v) - std::begin(vs); } template bool contains(const Vs& vs, const V& v) { const int li = lbInd(vs, v); return (li < std::size(vs) and vs[li] == v); } template void plusAll(Vs& vs, const V& v) { for (auto& v_ : vs) { v_ += v; } } template Vec genVec(int n, F gen) { Vec ans; std::generate_n(std::back_insert_iterator(ans), n, gen); return ans; } template Vec iotaVec(int n, T offset = 0) { Vec ans(n); std::iota(ans.begin(), ans.end(), offset); return ans; } constexpr int popcount(const u64 v) { return v ? __builtin_popcountll(v) : 0; } constexpr int log2p1(const u64 v) { return v ? 64 - __builtin_clzll(v) : 0; } constexpr int lsbp1(const u64 v) { return __builtin_ffsll(v); } constexpr int clog(const u64 v) { return v ? log2p1(v - 1) : 0; } constexpr u64 ceil2(const u64 v) { const int l = clog(v); return (l == 64) ? 0_u64 : (1_u64 << l); } constexpr u64 floor2(const u64 v) { return v ? (1_u64 << (log2p1(v) - 1)) : 0_u64; } constexpr bool ispow2(const u64 v) { return (v > 0) and ((v & (v - 1)) == 0); } constexpr bool btest(const u64 mask, const int ind) { return (mask >> ind) & 1_u64; } template struct Fix : F { Fix(F&& f) : F{std::forward(f)} {} template auto operator()(Args&&... args) const { return F::operator()(*this, std::forward(args)...); } }; class irange { private: struct itr { itr(i64 start = 0, i64 step = 1) : m_cnt{start}, m_step{step} {} bool operator!=(const itr& it) const { return m_cnt != it.m_cnt; } int operator*() { return m_cnt; } itr& operator++() { m_cnt += m_step; return *this; } i64 m_cnt, m_step; }; i64 m_start, m_end, m_step; public: irange(i64 start, i64 end, i64 step = 1) { assert(step != 0); const i64 d = std::abs(step); const i64 l = (step > 0 ? start : end); const i64 r = (step > 0 ? end : start); int n = (r - l) / d + ((r - l) % d ? 1 : 0); if (l >= r) { n = 0; } m_start = start; m_end = start + step * n; m_step = step; } itr begin() const { return itr{m_start, m_step}; } itr end() const { return itr{m_end, m_step}; } }; irange rep(i64 end) { return irange(0, end, 1); } irange per(i64 rend) { return irange(rend - 1, -1, -1); } /** * @ref https://prng.di.unimi.it */ namespace xoshiro_impl { u64 x; u64 next() { uint64_t z = (x += 0x9e3779b97f4a7c15); z = (z ^ (z >> 30)) * 0xbf58476d1ce4e5b9; z = (z ^ (z >> 27)) * 0x94d049bb133111eb; return z ^ (z >> 31); } } // namespace xoshiro_impl class Xoshiro32 { public: using result_type = u32; using T = result_type; Xoshiro32(T seed = 0) { xoshiro_impl::x = seed; s[0] = xoshiro_impl::next(); s[1] = xoshiro_impl::next(); s[2] = xoshiro_impl::next(); s[3] = xoshiro_impl::next(); } static constexpr T min() { return LIMMIN; } static constexpr T max() { return LIMMAX; } T operator()() { return next(); } private: static constexpr T rotl(const T x, int k) { return (x << k) | (x >> (32 - k)); } T next() { const T ans = rotl(s[1] * 5, 7) * 9; const T t = s[1] << 9; s[2] ^= s[0]; s[3] ^= s[1]; s[1] ^= s[2]; s[0] ^= s[3]; s[2] ^= t; s[3] = rotl(s[3], 11); return ans; } T s[4]; }; class Xoshiro64 { public: using result_type = u64; using T = result_type; Xoshiro64(T seed = 0) { xoshiro_impl::x = seed; s[0] = xoshiro_impl::next(); s[1] = xoshiro_impl::next(); s[2] = xoshiro_impl::next(); s[3] = xoshiro_impl::next(); } static constexpr T min() { return LIMMIN; } static constexpr T max() { return LIMMAX; } T operator()() { return next(); } private: static constexpr T rotl(const T x, int k) { return (x << k) | (x >> (64 - k)); } T next() { const T ans = rotl(s[1] * 5, 7) * 9; const T t = s[1] << 17; s[2] ^= s[0]; s[3] ^= s[1]; s[1] ^= s[2]; s[0] ^= s[3]; s[2] ^= t; s[3] = rotl(s[3], 45); return ans; } T s[4]; }; template class RNG { public: using result_type = typename Rng::result_type; using T = result_type; static constexpr T min() { return Rng::min(); } static constexpr T max() { return Rng::max(); } RNG() : RNG(std::random_device{}()) {} RNG(T seed) : m_rng(seed) {} T operator()() { return m_rng(); } template T val(T min, T max) { return std::uniform_int_distribution(min, max)(m_rng); } template Pair pair(T min, T max) { return std::minmax({val(min, max), val(min, max)}); } template Vec vec(int n, T min, T max) { return genVec(n, [&]() { return val(min, max); }); } template Vec> vvec(int n, int m, T min, T max) { return genVec>(n, [&]() { return vec(m, min, max); }); } private: Rng m_rng; }; RNG rng; RNG rng64; RNG rng_xo; RNG rng_xo64; class Scanner { public: Scanner(Istream& is = std::cin) : m_is{is} { m_is.tie(nullptr)->sync_with_stdio(false); } template T val() { T v; return m_is >> v, v; } template T val(T offset) { return val() - offset; } template Vec vec(int n) { return genVec(n, [&]() { return val(); }); } template Vec vec(int n, T offset) { return genVec(n, [&]() { return val(offset); }); } template Vec> vvec(int n, int m) { return genVec>(n, [&]() { return vec(m); }); } template Vec> vvec(int n, int m, const T offset) { return genVec>(n, [&]() { return vec(m, offset); }); } template auto tup() { return Tup{val()...}; } template auto tup(const Args&... offsets) { return Tup{val(offsets)...}; } private: Istream& m_is; }; Scanner in; class Printer { public: Printer(Ostream& os = std::cout) : m_os{os} { m_os << std::fixed << std::setprecision(15); } template int operator()(const Args&... args) { dump(args...); return 0; } template int ln(const Args&... args) { dump(args...), m_os << '\n'; return 0; } template int el(const Args&... args) { dump(args...), m_os << std::endl; return 0; } private: template void dump(const T& v) { m_os << v; } template void dump(const Vec& vs) { for (const int i : rep(vs.size())) { m_os << (i ? " " : ""), dump(vs[i]); } } template void dump(const Vec>& vss) { for (const int i : rep(vss.size())) { m_os << (i ? "\n" : ""), dump(vss[i]); } } template int dump(const T& v, const Ts&... args) { dump(v), m_os << ' ', dump(args...); return 0; } Ostream& m_os; }; Printer out; template class modint { template static U modRef() { static u32 s_mod = 0; return s_mod; } template static U rootRef() { static u32 s_root = 0; return s_root; } template static U max2pRef() { static u32 s_max2p = 0; return s_max2p; } public: static constexpr bool isDynamic() { return (mod_ == 0); } template static constexpr std::enable_if_t mod() { return mod_; } template static std::enable_if_t mod() { return modRef(); } template static constexpr std::enable_if_t root() { return root_; } template static std::enable_if_t root() { return rootRef(); } template static constexpr std::enable_if_t max2p() { return max2p_; } template static std::enable_if_t max2p() { return max2pRef(); } template static void setMod(std::enable_if_t m) { modRef() = m; } template static void setRoot(std::enable_if_t r) { rootRef() = r; } template static void setMax2p(std::enable_if_t m) { max2pRef() = m; } constexpr modint() : m_val{0} {} constexpr modint(i64 v) : m_val{normll(v)} {} constexpr void setRaw(u32 v) { m_val = v; } constexpr modint operator-() const { return modint{0} - (*this); } constexpr modint& operator+=(const modint& m) { m_val = norm(m_val + m.val()); return *this; } constexpr modint& operator-=(const modint& m) { m_val = norm(m_val + mod() - m.val()); return *this; } constexpr modint& operator*=(const modint& m) { m_val = normll((i64)m_val * (i64)m.val() % (i64)mod()); return *this; } constexpr modint& operator/=(const modint& m) { return *this *= m.inv(); } constexpr modint operator+(const modint& m) const { auto v = *this; return v += m; } constexpr modint operator-(const modint& m) const { auto v = *this; return v -= m; } constexpr modint operator*(const modint& m) const { auto v = *this; return v *= m; } constexpr modint operator/(const modint& m) const { auto v = *this; return v /= m; } constexpr bool operator==(const modint& m) const { return m_val == m.val(); } constexpr bool operator!=(const modint& m) const { return not(*this == m); } friend Istream& operator>>(Istream& is, modint& m) { i64 v; return is >> v, m = v, is; } friend Ostream& operator<<(Ostream& os, const modint& m) { return os << m.val(); } constexpr u32 val() const { return m_val; } template constexpr modint pow(I n) const { return power(*this, n); } constexpr modint inv() const { return pow(mod() - 2); } static modint sinv(u32 n) { static Vec is{1, 1}; for (u32 i = (u32)is.size(); i <= n; i++) { is.push_back(-is[mod() % i] * (mod() / i)); } return is[n]; } static modint fact(u32 n) { static Vec fs{1, 1}; for (u32 i = (u32)fs.size(); i <= n; i++) { fs.push_back(fs.back() * i); } return fs[n]; } static modint ifact(u32 n) { static Vec ifs{1, 1}; for (u32 i = (u32)ifs.size(); i <= n; i++) { ifs.push_back(ifs.back() * sinv(i)); } return ifs[n]; } static modint comb(int n, int k) { return k > n or k < 0 ? modint{0} : fact(n) * ifact(n - k) * ifact(k); } private: static constexpr u32 norm(u32 x) { return x < mod() ? x : x - mod(); } static constexpr u32 normll(i64 x) { return norm(u32(x % (i64)mod() + (i64)mod())); } u32 m_val; }; using modint_1000000007 = modint<1000000007, 5, 1>; using modint_998244353 = modint<998244353, 3, 23>; template using modint_dynamic = modint<0, 0, id>; using u16 = unsigned short; template class smodint { public: static constexpr u16 mod() { return mod_; } constexpr smodint() : m_val{0} {} constexpr smodint(i64 v) : m_val{normll(v)} {} constexpr smodint operator-() const { return smodint{0} - (*this); } constexpr smodint& operator+=(const smodint& m) { m_val = norm(m_val + m.val()); return *this; } constexpr smodint& operator-=(const smodint& m) { m_val = norm(m_val + mod() - m.val()); return *this; } constexpr smodint& operator*=(const smodint& m) { m_val = normll((i64)m_val * (i64)m.val() % (i64)mod()); return *this; } constexpr smodint& operator/=(const smodint& m) { return *this *= m.inv(); } constexpr smodint operator+(const smodint& m) const { auto v = *this; return v += m; } constexpr smodint operator-(const smodint& m) const { auto v = *this; return v -= m; } constexpr smodint operator*(const smodint& m) const { auto v = *this; return v *= m; } constexpr u32 val() const { return m_val; } template constexpr smodint pow(I n) const { return power(*this, n); } constexpr smodint inv() const { return pow(mod() - 2); } private: static constexpr u16 norm(u16 x) { return x < mod() ? x : x - mod(); } static constexpr u16 normll(i64 x) { return norm(u16(x % (i64)mod() + (i64)mod())); } u16 m_val; }; constexpr u32 Ps[] = {32771, 32779, 32783, 32789, 32797, 32801}; using smint0 = smodint; using smint1 = smodint; using smint2 = smodint; using smint3 = smodint; using smint4 = smodint; using smint5 = smodint; template constexpr Tup coeff(const mint1& x1, const mint2& x2, const mint3& x3, const mint4& x4, const mint5& x5, const mint6& x6) { constexpr auto m1 = mint1::mod(); constexpr auto m2 = mint2::mod(); constexpr auto m3 = mint3::mod(); constexpr auto m4 = mint4::mod(); constexpr auto m5 = mint5::mod(); constexpr auto m6 = mint6::mod(); constexpr mint2 m1_inv = mint2(m1).inv(); constexpr mint3 m1m2_inv = (mint3(m1) * mint3(m2)).inv(); constexpr mint4 m1m2m3_inv = (mint4(m1) * mint4(m2) * mint4(m3)).inv(); constexpr mint5 m1m2m3m4_inv = (mint5(m1) * mint5(m2) * mint5(m3) * mint5(m4)).inv(); constexpr mint6 m1m2m3m4m5_inv = (mint6(m1) * mint6(m2) * mint6(m3) * mint6(m4) * mint6(m5)).inv(); const mint1 y0 = x1; const mint2 y1 = (x2 - mint2(y0.val())) * m1_inv; const mint3 y2 = (x3 - mint3(y0.val()) - mint3(y1.val()) * m1) * m1m2_inv; const mint4 y3 = (x4 - mint4(y0.val()) - mint4(y1.val()) * m1 - mint4(y2.val()) * m1 * m2) * m1m2m3_inv; const mint5 y4 = (x5 - mint5(y0.val()) - mint5(y1.val()) * m1 - mint5(y2.val()) * m1 * m2 - mint5(y3.val()) * m1 * m2 * m3) * m1m2m3m4_inv; const mint6 y5 = (x6 - mint6(y0.val()) - mint6(y1.val()) * m1 - mint6(y2.val()) * m1 * m2 - mint6(y3.val()) * m1 * m2 * m3 - mint6(y4.val()) * m1 * m2 * m3 * m4) * m1m2m3m4m5_inv; return {y0, y1, y2, y3, y4, y5}; } template constexpr mint restore_mod(const mint1& x1, const mint2& x2, const mint3& x3, const mint4& x4, const mint5& x5, const mint6& x6) { constexpr auto m1 = mint1::mod(); constexpr auto m2 = mint2::mod(); constexpr auto m3 = mint3::mod(); constexpr auto m4 = mint4::mod(); constexpr auto m5 = mint5::mod(); constexpr auto m6 = mint6::mod(); const auto [y0, y1, y2, y3, y4, y5] = coeff(x1, x2, x3, x4, x5, x6); return mint(y0.val()) + mint(y1.val()) * m1 + mint(y2.val()) * m1 * m2 + mint(y3.val()) * m1 * m2 * m3 + mint(y4.val()) * m1 * m2 * m3 * m4 + mint(y5.val()) * m1 * m2 * m3 * m4 * m5; } int main() { using mint = modint_dynamic<0>; auto [N, M, C] = in.tup(); mint::setMod(M); bool complement = false; if (N - C < C) { C = N - C; complement = true; } const auto As = in.vec(N); const int A = sumAll(As); Vec ans0(A + 1, 0); Vec ans1(A + 1, 0); Vec ans2(A + 1, 0); Vec ans3(A + 1, 0); Vec ans4(A + 1, 0); Vec ans5(A + 1, 0); do { Vec> dp(C + 1); dp.shrink_to_fit(); dp[0] = {1}; for (int i : rep(N)) { for (int c : per(std::min(i + 1, C))) { for (int j : per(dp[c].size())) { const int nj = j + As[i]; if (dp[c + 1].size() < nj + 1) { dp[c + 1].resize(nj + 1); dp[c + 1].shrink_to_fit(); } dp[c + 1][nj] += dp[c][j]; } } } ans0 = dp[C]; } while (0); do { Vec> dp(C + 1); dp.shrink_to_fit(); dp[0] = {1}; for (int i : rep(N)) { for (int c : per(std::min(i + 1, C))) { for (int j : per(dp[c].size())) { const int nj = j + As[i]; if (dp[c + 1].size() < nj + 1) { dp[c + 1].resize(nj + 1); dp[c + 1].shrink_to_fit(); } dp[c + 1][nj] += dp[c][j]; } } } ans1 = dp[C]; } while (0); do { Vec> dp(C + 1); dp.shrink_to_fit(); dp[0] = {1}; for (int i : rep(N)) { for (int c : per(std::min(i + 1, C))) { for (int j : per(dp[c].size())) { const int nj = j + As[i]; if (dp[c + 1].size() < nj + 1) { dp[c + 1].resize(nj + 1); dp[c + 1].shrink_to_fit(); } dp[c + 1][nj] += dp[c][j]; } } } ans2 = dp[C]; } while (0); do { Vec> dp(C + 1); dp.shrink_to_fit(); dp[0] = {1}; for (int i : rep(N)) { for (int c : per(std::min(i + 1, C))) { for (int j : per(dp[c].size())) { const int nj = j + As[i]; if (dp[c + 1].size() < nj + 1) { dp[c + 1].resize(nj + 1); dp[c + 1].shrink_to_fit(); } dp[c + 1][nj] += dp[c][j]; } } } ans3 = dp[C]; } while (0); do { Vec> dp(C + 1); dp.shrink_to_fit(); dp[0] = {1}; for (int i : rep(N)) { for (int c : per(std::min(i + 1, C))) { for (int j : per(dp[c].size())) { const int nj = j + As[i]; if (dp[c + 1].size() < nj + 1) { dp[c + 1].resize(nj + 1); dp[c + 1].shrink_to_fit(); } dp[c + 1][nj] += dp[c][j]; } } } ans4 = dp[C]; } while (0); do { Vec> dp(C + 1); dp.shrink_to_fit(); dp[0] = {1}; for (int i : rep(N)) { for (int c : per(std::min(i + 1, C))) { for (int j : per(dp[c].size())) { const int nj = j + As[i]; if (dp[c + 1].size() < nj + 1) { dp[c + 1].resize(nj + 1); dp[c + 1].shrink_to_fit(); } dp[c + 1][nj] += dp[c][j]; } } } ans5 = dp[C]; } while (0); Vec ans(A); for (int i : irange(1, A + 1)) { const int a = (complement ? A - i : i); ans[a - 1] = restore_mod( ans0[i], ans1[i], ans2[i], ans3[i], ans4[i], ans5[i]); } out.ln(ans); return 0; }