0_0_38161123_5119.cpp:63:23: error: 'std::enable_if_t' has not been declared
template <int m, std::enable_if_t<(1 <= m)> * = nullptr>
^
0_0_38161123_5119.cpp:63:34: error: expected '>' before '<' token
template <int m, std::enable_if_t<(1 <= m)> * = nullptr>
^
0_0_38161123_5119.cpp:195:33: error: wrong number of template arguments (1, should be 2)
using modint = static_modint<mod>;
^
0_0_38161123_5119.cpp:64:8: error: provided for 'template<int m, int <anonymous> > struct static_modint'
struct static_modint
^
0_0_38161123_5119.cpp:199:1: error: 'modint' does not name a type
modint dp[MAXP + 5][MAXN * MAXA + 5];
^
0_0_38161123_5119.cpp:200:1: error: 'modint' does not name a type
modint f[MAXA + 5][MAXN * MAXA + 5], C[MAXN + 5][MAXN + 5];
^
0_0_38161123_5119.cpp: In function 'void Main()':
0_0_38161123_5119.cpp:205:12: error: 'dp' was not declared in this scope
memset(dp, 0, sizeof(dp));
^
0_0_38161123_5119.cpp:207:12: error: 'f' was not declared in this scope
memset(f, 0, sizeof(f));
^
0_0_38161123_5119.cpp:218:50: error: 'C' was not declared in this scope
f[i][j] += f[i - 1][j - x * i] * C[b[i]][x];
^
0_0_38161123_5119.cpp: In function 'int main()':
0_0_38161123_5119.cpp:237:5: error: 'C' was not declared in this scope
C[0][0] = 1;
^
|