#include #include #include #include #include #include #include #include using mint = atcoder::static_modint<943718401>; // <嘘解法 (TLE)> int main() { std::cin.tie(nullptr); std::ios_base::sync_with_stdio(false); int n, x; std::cin >> n >> x; std::vector a(n + 1), b(n + 1), c(n + 1); std::ranges::for_each(a, [](int& e) -> void { std::cin >> e; }); std::ranges::for_each(b, [](int& e) -> void { std::cin >> e; }); std::ranges::for_each(c, [](int& e) -> void { std::cin >> e; }); if (x == 0) { const mint s = std::inner_product(a.begin(), a.end(), b.begin(), mint::raw(0), std::plus(), std::multiplies()) * mint::raw(c[0]) + std::inner_product(std::next(a.begin()), a.end(), std::next(c.begin()), mint::raw(0), std::plus(), std::multiplies()) * mint::raw(b[0]); std::cout << s.val() << '\n'; return 0; } mint s = 0; for (int j = 0; j <= n; ++j) { for (int k = 0; j + k <= n; ++k) { s += mint::raw(x).pow(std::int64_t{j + k} * j * k) * a[j + k] * b[j] * c[k]; } } std::cout << s.val() << '\n'; return 0; }