#define SINGLE_TESTCASE #define FAST_IO #define INF 4'000'000'000'000'000'037LL #define EPS 1e-11 // https://github.com/miscalculation53/library/tree/wip/template/template_all.hpp // https://github.com/miscalculation53/library/tree/wip/template/template_all_but_modint.hpp // https://github.com/miscalculation53/library/tree/wip/template/template_types.hpp #include namespace { using namespace std; using ld = decltype(EPS); using ll = long long; using uint = unsigned int; using ull = unsigned long long; using pll = pair; using tlll = tuple; using tllll = tuple; #define vc vector template using vvc = vc>; template using vvvc = vc>>; using vb = vc; using vl = vc; using vpll = vc; using vtlll = vc; using vtllll = vc; using vstr = vc; using vvb = vvc; using vvl = vvc; template using pql = priority_queue, greater>; template using pqg = priority_queue; using i128 = __int128_t; using u128 = __uint128_t; i128 stoi128(const string &s) { const bool neg = s.front() == '-'; u128 res = 0; for (int i = neg; i < (int)s.size(); i++) res = 10 * res + s[i] - '0'; if (neg) return -i128(res - 1) - 1; return i128(res); } string i128tos(i128 x) { if (x == 0) return "0"; string sign = "", res = ""; u128 ux; if (x < 0) ux = u128(-(x + 1)) + 1, sign = "-"; else ux = x; while (ux > 0) { res += '0' + ux % 10; ux /= 10; } reverse(res.begin(), res.end()); return sign + res; } istream &operator>>(istream &is, i128 &a) { string s; is >> s; a = stoi128(s); return is; } ostream &operator<<(ostream &os, const i128 &a) { os << i128tos(a); return os; } #define cauto const auto // https://github.com/miscalculation53/library/tree/wip/template/template_rep.hpp #define overload4(_1,_2,_3,_4,name,...) name #define rep1(i,n) for (ll i = 0, nnnnn = ll(n); i < nnnnn; i++) #define rep2(i,l,r) for (ll i = ll(l), rrrrr = ll(r); i < rrrrr; i++) #define rep3(i,l,r,d) for (ll i = ll(l), rrrrr = ll(r), ddddd = ll(d); ddddd > 0 ? i < rrrrr : i > rrrrr; i += d) #define rep(...) overload4(__VA_ARGS__, rep3, rep2, rep1)(__VA_ARGS__) #define repi1(i,n) for (int i = 0, nnnnn = int(n); i < nnnnn; i++) #define repi2(i,l,r) for (int i = int(l), rrrrr = int(r); i < rrrrr; i++) #define repi3(i,l,r,d) for (int i = int(l), rrrrr = int(r), ddddd = int(d); ddddd > 0 ? i < rrrrr : i > rrrrr; i += d) #define repi(...) overload4(__VA_ARGS__, repi3, repi2, repi1)(__VA_ARGS__) #define fe(...) for (auto __VA_ARGS__) #define fec(...) for (cauto &__VA_ARGS__) #define fem(...) for (auto &__VA_ARGS__) // https://github.com/miscalculation53/library/tree/wip/template/template_math.hpp // https://github.com/miscalculation53/library/tree/wip/utils/is_integral_ext.hpp template constexpr bool is_integral_ext = is_integral_v || is_same_v || is_same_v; template constexpr bool is_signed_ext = is_signed_v || is_same_v; template constexpr bool is_unsigned_ext = is_unsigned_v || is_same_v; template inline bool chmin(T &a, U b) { return a > b ? a = b, true : false; } template inline bool chmax(T &a, U b); template && is_integral_ext>> inline constexpr T divfloor(U a, V b) { return T(a) / T(b) - (T(a) % T(b) && (T(a) ^ T(b)) < 0); } template && is_integral_ext>> inline constexpr T divceil(U a, V b); template && is_integral_ext>> inline constexpr T divround(U a, V b); template && is_integral_ext>> inline constexpr T safemod(U a, V b) { return T(a) - T(b) * divfloor(a, b); } template constexpr T ipow(U a, V b); template T mul_limited(A a, B b, M m); template T mul_limited(A a, B b); template T pow_limited(A a, B b, M m); template T pow_limited(A a, B b); template constexpr T iroot(A a, K k); template constexpr T iroot_ceil(A a, K k); template int SGN(A a, D eps = EPS); template vc base_repr(U val, V base); template vc base_repr(U val, V base, int n); template string base_repr_str(U val, int base); template string base_repr_str(U val, int base, int n); // https://github.com/miscalculation53/library/tree/wip/template/template_vector.hpp #define ALL(a) (a).begin(), (a).end() template inline T SZ(const V &x) { return x.size(); } #define eb emplace_back #define LMD(x,fx) ([&](auto x) { return fx; }) template auto gen_vec(int n, const F &f); #define GEN_VEC(n,i,fi) (gen_vec(n, LMD(i, fi))) template auto dvec(const V (&sz)[d], const T &init); template T ctol(const char &c, const string &s); template vc stov(const string &s, char first); template vc stov(const string &s, const string &t); template string vtos(const vc &v, char first); template string vtos(const vc &v, const string &t); template vc concat(const vvc &vs); template vc concat(const vc &v); template vc concat(vc v, const vc &...vs); template vc merged(const vc &a, const vc &b); template T vecget(const vc &v, I i, const T &dflt_negative = -INF, const T &dflt_positive = INF); // https://github.com/miscalculation53/library/tree/wip/template/template_algo.hpp // https://github.com/miscalculation53/library/tree/wip/utils/resolved_value.hpp template , int> = 0> constexpr T resolved_value(); template , long> = 0> const T &resolved_value(); template auto SUM(const V &v); template T SUM(const V &v); template auto MAX(const V &v); template auto MIN(const V &v); template I ARGMAX(const V &v); template I ARGMIN(const V &v); template T mex(const V &a); template bool is_permutation(const vc &p); template vc permid(const int &n, const int &base_index = 0); template vc perminv(const vc &p); template vc permuted(const vc &a, const vc &p); template vc permuted(const vc &p, const vc &q, const vc &...rs); template V reversed(const V &v); template V sorted(V v, Args&&... args); template > void unique(V &v, Equal equal = {}); template > V uniqued(V v, Equal equal = {}); template , class Equal = equal_to<>> void sortunique(V &v, Compare comp = {}, Equal equal = {}); template , class Equal = equal_to<>> V sortuniqued(V v, Compare comp = {}, Equal equal = {}); template void rotate(V &v, U k); template V rotated(V v, U k); template vvc top(const vvc &a) { if (a.empty()) return {}; const int n = a.size(), m = a[0].size(); vvc b(m, vc(n)); repi(i, n) { assert(SZ(a[i]) == m); repi(j, m) b[j][i] = a[i][j]; } return b; } vstr top(const vstr &a) { vvc a_(a.size()); repi(i, SZ(a)) a_[i] = {ALL(a[i])}; vvc b_ = top(a_); vstr b(b_.size()); repi(i, SZ(b)) b[i] = {ALL(b_[i])}; return b; } template struct has_e0 : false_type {}; template struct has_e0> : true_type {}; template inline constexpr bool has_e0_v = has_e0::value; template struct MonoidAdd { using S = T; static constexpr S op(S a, S b); static constexpr S e(); template () * declval())> static constexpr S pow(const S &a, I k); }; template struct MonoidMin { using S = T; static constexpr S op(S a, S b); static constexpr decltype(auto) e(); template static constexpr S pow(const S &a, I k); }; template struct MonoidMax { using S = T; static constexpr S op(S a, S b); static constexpr S e(); template static constexpr S pow(const S &a, I k); }; namespace internal { template struct HasMonoidPow : false_type { }; template struct HasMonoidPow(), declval()))>> : true_type { }; } template typename M::S pow_monoid(typename M::S a, I k); template typename G::S pow_group(typename G::S a, I k); template vc cuml(const vc &v, int left_index = 0); template vc cumr(const vc &v, int right_index = 0); template vc cumlsum(const vc &v, int left_index = 0); template vc cumrsum(const vc &v, int right_index = 0); template vc cumlmin(const vc &v, int left_index = 0); template vc cumrmin(const vc &v, int right_index = 0); template vc cumlmax(const vc &v, int left_index = 0); template vc cumrmax(const vc &v, int right_index = 0); template vc adjd(const vc &v, int left_index = 0, int right_index = 0); constexpr array DRULgrid = {{{1, 0}, {0, 1}, {-1, 0}, {0, -1}}}; constexpr array DRULplane = {{{0, -1}, {1, 0}, {0, 1}, {-1, 0}}}; // https://github.com/miscalculation53/library/tree/wip/template/template_binsearch.hpp template struct is_random_access_iterator { static constexpr bool value = is_same_v< typename iterator_traits::iterator_category, random_access_iterator_tag >; }; template constexpr bool is_random_access_iterator_v = is_random_access_iterator::value; template inline T LB(const V &v, const Value &val, Comp comp = {}, Proj proj = {}); template inline T UB(const V &v, const Value &val, Comp comp = {}, Proj proj = {}); #define DEFAULT_COMP ranges::less template inline auto lt_max(const V &v, const Value &val, Comp comp = {}, Proj proj = {}) -> enable_if_t, T>; template inline auto leq_max(const V &v, const Value &val, Comp comp = {}, Proj proj = {}) -> enable_if_t, T>; template inline auto gt_min(const V &v, const Value &val, Comp comp = {}, Proj proj = {}) -> enable_if_t, T>; template inline auto geq_min(const V &v, const Value &val, Comp comp = {}, Proj proj = {}) -> enable_if_t, T>; template inline auto lt_cnt(const V &v, const Value &val, Comp comp = {}, Proj proj = {}) -> enable_if_t, T>; template inline auto leq_cnt(const V &v, const Value &val, Comp comp = {}, Proj proj = {}) -> enable_if_t, T>; template inline auto gt_cnt(const V &v, const Value &val, Comp comp = {}, Proj proj = {}) -> enable_if_t, T>; template inline auto geq_cnt(const V &v, const Value &val, Comp comp = {}, Proj proj = {}) -> enable_if_t, T>; template inline auto in_cnt(const V &v, L l, R r, Comp comp = {}, Proj proj = {}) -> enable_if_t, T>; template inline auto lt_max(const V &v, const Value &val) -> enable_if_t, typename V::const_iterator>; template inline auto leq_max(const V &v, const Value &val) -> enable_if_t, typename V::const_iterator>; template inline auto gt_min(const V &v, const Value &val) -> enable_if_t, typename V::const_iterator>; template inline auto geq_min(const V &v, const Value &val) -> enable_if_t, typename V::const_iterator>; namespace internal { template bool binsearch_adjacent(T a, T b); }; template pair binsearch(const Judge &judge, InitOk init_ok, InitNg init_ng, bool check_ok = true, bool check_ng = true); template T binsearch_real(const Judge &judge, InitOk init_ok, InitNg init_ng, int iteration_count = 100, bool check_ok = true, bool check_ng = true); template pair expsearch(const Judge &judge, InitVal init_val, bool positive = true); // https://github.com/miscalculation53/library/tree/wip/template/template_bit.hpp template inline constexpr ull pow2(T k); template inline constexpr ull MASK(T k) { return (1ULL << k) - 1ULL; } inline constexpr ll bit_width(ll x) { return std::bit_width((ull)x); } inline constexpr ll bit_floor(ll x) { return std::bit_floor((ull)x); } inline constexpr ll bit_ceil(ll x) { return std::bit_ceil((ull)x); } inline constexpr ll countr_zero(ll x) { assert(x != 0); return std::countr_zero((ull)x); } inline constexpr ll popcount(ll x) { return std::popcount((ull)x); } inline constexpr bool has_single_bit(ll x) { return std::has_single_bit((ull)x); } inline constexpr ull lsb_pos(ull x) { assert(x != 0); return countr_zero(x); } inline constexpr ull msb_pos(ull x) { assert(x != 0); return bit_width(x) - 1; } inline constexpr ull lsb_mask(ull x) { assert(x != 0); return x & -x; } inline constexpr ull msb_mask(ull x) { assert(x != 0); return bit_floor(x); } inline constexpr bool btest(ull x, uint k) { return (x >> k) & 1; } template inline void bset(T &x, uint k, bool b = 1); template inline void bflip(T &x, uint k); inline constexpr bool bsubset(ull x, ull y) { return (x & y) == x; } inline constexpr bool bsupset(ull x, ull y) { return (x & y) == y; } inline constexpr ull bsetminus(ull x, ull y) { return x & ~y; } // https://github.com/miscalculation53/library/tree/wip/template/template_inout.hpp // https://github.com/miscalculation53/library/tree/wip/template/template_dump.hpp #define CPP_DUMP_DEFINE_DATA(...) #define dump(...) #define local(...) #define oj(...) __VA_ARGS__ #define local_oj(a,b) (b) template vc content(queue que); template vc content(priority_queue pque); template auto content(const T &obj); namespace fastio { template struct unsigned_integer { using type = make_unsigned_t; }; template <> struct unsigned_integer { using type = u128; }; template <> struct unsigned_integer { using type = u128; }; template using unsigned_integer_t = typename unsigned_integer::type; static constexpr uint32_t SIZ = 1 << 17; char ibuf[SIZ]; char obuf[SIZ]; char out[100]; uint32_t pil = 0, pir = 0, por = 0; struct Pre { char num[10000][4]; constexpr Pre() : num() { for (int i = 0; i < 10000; i++) { int n = i; for (int j = 3; j >= 0; j--) { num[i][j] = n % 10 | '0'; n /= 10; } } } } constexpr pre; inline void load() { memcpy(ibuf, ibuf + pil, pir - pil); pir = pir - pil + fread(ibuf + pir - pil, 1, SIZ - pir + pil, stdin); pil = 0; if (pir < SIZ) ibuf[pir++] = '\n'; } inline void flush() { fwrite(obuf, 1, por, stdout); por = 0; } void rd1(char &c) { do { if (pil + 1 > pir) load(); c = ibuf[pil++]; } while (c <= ' '); } void rd1(string &x) { x.clear(); while (true) { if (pil == pir) load(); while (pil < pir && ibuf[pil] <= ' ') ++pil; if (pil < pir) break; } while (true) { uint32_t p = pil; while (pil < pir && ibuf[pil] > ' ') ++pil; x.append(ibuf + p, pil - p); if (pil < pir) { ++pil; return; } load(); } } template void rd1_real(T &x) { string s; rd1(s); if constexpr (!is_same_v) { auto [p, ec] = from_chars(s.data(), s.data() + s.size(), x); if (ec == errc{} && p == s.data() + s.size()) return; } if constexpr (is_same_v) x = stold(s); else x = stod(s); } template void rd1_integer(T &x) { using U = unsigned_integer_t; bool minus = false; U val = 0; if constexpr (check_buffer) if (pil + 100 > pir) load(); uint32_t p = pil; while (ibuf[p] < '-') ++p; if constexpr (is_signed::value || is_same_v) { if (ibuf[p] == '-') minus = true, ++p; } while ('0' <= ibuf[p]) val = val * 10 + (ibuf[p++] & 15); pil = p; if constexpr (is_signed::value || is_same_v) { if (minus) { const U min_abs = U(numeric_limits::max()) + 1; x = val == min_abs ? numeric_limits::lowest() : -T(val); } else x = T(val); } else x = T(val); } void rd1(int &x) { rd1_integer(x); } void rd1(ll &x) { rd1_integer(x); } void rd1(i128 &x) { rd1_integer(x); } void rd1(uint &x) { rd1_integer(x); } void rd1(ull &x) { rd1_integer(x); } void rd1(u128 &x) { rd1_integer(x); } void rd1(double &x) { rd1_real(x); } void rd1(long double &x) { rd1_real(x); } template void rd1(pair &p); template void rd1(tuple &tpl); template void rd1(array &x); template void rd1(vc &x); template void read(T &...x) { if constexpr (sizeof...(T) <= SIZ / 100 && ((!is_same_v && (is_integral_v || is_same_v || is_same_v)) && ...)) { if (pil + 100 * sizeof...(T) > pir) load(); (rd1_integer(x), ...); } else (rd1(x), ...); } void wt1(const char c) { if (por == SIZ) flush(); obuf[por++] = c; } void wt1(string_view s) { while (!s.empty()) { if (por == SIZ) flush(); size_t n = min(s.size(), SIZ - por); memcpy(obuf + por, s.data(), n); por += n; s.remove_prefix(n); } } template void wt1_integer(T x) { if (por > SIZ - 100) flush(); using U = unsigned_integer_t; U ux; if constexpr (is_signed::value || is_same_v) { if (x < 0) obuf[por++] = '-', ux = U(0) - U(x); else ux = U(x); } else ux = x; int outi; for (outi = 96; ux >= 10000; outi -= 4) { memcpy(out + outi, pre.num[ux % 10000], 4); ux /= 10000; } if (ux >= 1000) { memcpy(obuf + por, pre.num[ux], 4); por += 4; } else if (ux >= 100) { memcpy(obuf + por, pre.num[ux] + 1, 3); por += 3; } else if (ux >= 10) { int q = (ux * 103) >> 10; obuf[por] = q | '0'; obuf[por + 1] = (ux - q * 10) | '0'; por += 2; } else obuf[por++] = ux | '0'; memcpy(obuf + por, out + outi + 4, 96 - outi); por += 96 - outi; } template void wt1_real(T x) { if constexpr (!is_same_v) { auto [p, ec] = to_chars(out, out + sizeof(out), x, chars_format::fixed, 15); if (ec == errc{}) { wt1(string_view(out, p)); return; } } ostringstream oss; oss << fixed << setprecision(15) << x; wt1(oss.str()); } void wt1(int x) { wt1_integer(x); } template , int> = 0> void wt1(T x); void wt1(i128 x) { wt1_integer(x); } void wt1(u128 x) { wt1_integer(x); } void wt1(double x) { wt1_real(x); } void wt1(long double x) { wt1_real(x); } template void wt1(const pair &val); template void wt1(const tuple &tpl); template void wt1(const array &val); template void wt1(const vector &val); template void write(T &&...x) { (wt1(std::forward(x)), ...); } template void print(T &&...x) { if constexpr (sizeof...(T)) { int i = 0; ((i++ ? wt1(' ') : void(), wt1(std::forward(x))), ...); } wt1('\n'); } } struct Dummy { Dummy() { atexit(fastio::flush); } } dummy; namespace internal { template void READnodump(Ts &...a) { fastio::read(a...); } template void READVECnodump(int n, vc &...v); template void READVEC2nodump(int n, int m, vvc &...v); template void READJAGnodump(int n, vvc &...vs); }; #define READ(...) internal::READnodump(__VA_ARGS__); dump(__VA_ARGS__) #define IN(T,...) T __VA_ARGS__; READ(__VA_ARGS__) #define CHAR(...) IN(char, __VA_ARGS__) #define INT(...) IN(int, __VA_ARGS__) #define LL(...) IN(ll, __VA_ARGS__) #define STR(...) IN(string, __VA_ARGS__) #define ARR(T,n,...) array __VA_ARGS__; READ(__VA_ARGS__) #define READVEC(...) internal::READVECnodump(__VA_ARGS__); dump(__VA_ARGS__) #define READVEC2(...) internal::READVEC2nodump(__VA_ARGS__); dump(__VA_ARGS__) #define VEC(T,n,...) vc __VA_ARGS__; READVEC(n, __VA_ARGS__) #define VEC2(T,n,m,...) vvc __VA_ARGS__; READVEC2(n, m, __VA_ARGS__) #define READJAG(...) internal::READJAGnodump(__VA_ARGS__); dump(__VA_ARGS__) #define JAG(T,n,...) vvc __VA_ARGS__; READJAG(n, __VA_ARGS__) #define ENDL '\n' #define WRITE fastio::write #define PRINT fastio::print #define PRINTEXIT(...) do { PRINT(__VA_ARGS__); exit(0); } while (false) #define PRINTRETURN(...) do { PRINT(__VA_ARGS__); return; } while (false) template void PRINTV(const vc &v); #define PRINTVEXIT(...) do { PRINTV(__VA_ARGS__); exit(0); } while (false) #define PRINTVRETURN(...) do { PRINTV(__VA_ARGS__); return; } while (false) template pair &operator+=(pair &a, const P &b); template pair operator+(pair a, const P &b); template pair &operator-=(pair &a, const P &b); template pair operator-(pair a, const P &b); template pair operator-(pair a); template array &operator+=(array &a, const A &b); template array operator+(array a, const A &b); template array &operator-=(array &a, const A &b); template array operator-(array a, const A &b); template array operator-(array a); namespace internal { template auto &tuple_add_impl(A &a, const B &b, const index_sequence); template auto &tuple_sub_impl(A &a, const B &b, const index_sequence); template auto &tuple_neg_impl(A &a, const index_sequence); }; template tuple &operator+=(tuple &a, const Tp &b); template tuple operator+(tuple a, const Tp &b); template tuple &operator-=(tuple &a, const Tp &b); template tuple operator-(tuple a, const Tp &b); template tuple operator-(tuple a); template void offset(vc &v, const Add &add); template void offset(vvc &v, const Add &add); template array, m> unzip(const vc> &vt); template vc> zip(const array, m> &tv); template pair, vc> unzip(const vc> &vt); template vc> zip(const pair, vc> &tv); namespace internal { template auto vt_to_tv_impl(V &tv, const Tp &t, index_sequence, size_t index); template auto tv_to_vt_impl(const Tp &tv, index_sequence, size_t index); }; template auto unzip(const vc> &vt); template auto zip(const tuple...> &tv); #define UNZIP(vt,...) auto [__VA_ARGS__] = unzip(vt) #define ZIP(vt,...) auto vt = zip(tuple{__VA_ARGS__}) // https://github.com/miscalculation53/library/tree/wip/template/template_random.hpp mt19937_64 mt; template T randint(U1 l, U2 r); template T randrange(U1 l, U2 r); template T randreal(U1 l, U2 r); bool randbool(double p) { assert(0 <= p && p <= 1); return bernoulli_distribution(p)(mt); } namespace internal { template void random_sample_range(V &res, T l, T r); }; template array random_sample_range_array(U1 l, U2 r); template vc random_sample_range_vector(U1 l, U2 r, int k); // https://github.com/miscalculation53/library/tree/wip/math/modint/template_modint.hpp // https://github.com/miscalculation53/library/tree/wip/math/modint/modint.hpp // https://github.com/miscalculation53/library/tree/wip/math/modint/modint_internal_static.hpp // https://github.com/miscalculation53/library/tree/wip/utils/larger_int.hpp template struct larger_int { using type = T; }; #define LARGER_INT(T,U) template <> struct larger_int { using type = U; }; LARGER_INT(signed char, short) LARGER_INT(short, int) LARGER_INT(int, long long) LARGER_INT(long, __int128_t) LARGER_INT(long long, __int128_t) LARGER_INT(unsigned char, unsigned short) LARGER_INT(unsigned short, unsigned int) LARGER_INT(unsigned int, unsigned long long) LARGER_INT(unsigned long, __uint128_t) LARGER_INT(unsigned long long, __uint128_t) #undef LARGER_INT template using larger_int_t = typename larger_int::type; // https://github.com/miscalculation53/library/tree/wip/math/modint/modint_internal_isprime.hpp namespace internal { template constexpr ll powmod_constexpr(ll x, ll n, T m) { if (m == 1) return 0; using U = make_unsigned_t; using L = larger_int_t; U r = 1, y = safemod(x, m); while (n) { if (n & 1) r = L(r) * y % m; y = L(y) * y % m; n >>= 1; } return r; } template constexpr bool isprime_constexpr(T n); template constexpr bool isprime = isprime_constexpr(n); }; namespace internal { template struct policy_static { using mod_type = decltype(M); using value_type = make_unsigned_t; using calc_type = larger_int_t; static constexpr bool is_prime = isprime_constexpr(M); static constexpr mod_type mod() { return M; } static constexpr value_type umod() { return M; } static constexpr value_type init(value_type v) { return v; } static constexpr mod_type val(value_type v) { return v; } static constexpr value_type mul(value_type a, value_type b) { return (value_type)((calc_type(a) * b) % M); } }; }; // https://github.com/miscalculation53/library/tree/wip/math/modint/modint_internal_barrett32.hpp namespace internal { struct barrett32 { uint m; ull im; explicit barrett32(uint m) : m(m), im((ull)(-1) / m + 1) {} uint umod() const { return m; } uint mul(uint a, uint b) const { ull z = a; z *= b; ull x = ull((u128(z) * im) >> 64); ull y = x * m; return uint(z - y + (z < y ? m : 0)); } }; template struct policy_barrett32 { using value_type = uint; using calc_type = ull; using mod_type = int; static constexpr bool is_prime = false; static inline barrett32 reducer{998244353}; static void set_mod(mod_type m); static mod_type mod(); static value_type umod(); static value_type init(value_type v) { return v; } static mod_type val(value_type v); static value_type mul(value_type a, value_type b); }; }; // https://github.com/miscalculation53/library/tree/wip/math/modint/modint_internal_montgomery64.hpp namespace internal { inline constexpr ull inv64(ull a) { ull x = a; while (a * x != 1) x *= 2 - a * x; return x; } struct montgomery64odd { ull m, im, sq; explicit montgomery64odd(ull m) : m(m), im(inv64(m)), sq(-u128(m) % m) {} ull umod() const { return m; } ull reduce(u128 x) const { auto t = (x + u128(m) * (-im * ull(x))) >> 64; if (t >= m) t -= m; return (ull)t; } ull inv_reduce(i128 v) const { return reduce(u128(v % m + m) * sq); } }; struct montgomery64 { ull m, mx, imx, d, q; uint b; explicit montgomery64(ull m) : m(m) { b = countr_zero(m), mx = m >> b; imx = inv64(mx); d = powmod_constexpr((mx + 1) / 2, b, mx); u128 sq = -u128(mx) % mx; q = (1 + (((sq - 1) * d) << b)) % m; } ull umod() const { return m; } ull reduce(u128 x) const { if (b == 0) { auto t = (x + u128(mx) * (-imx * ull(x))) >> 64; if (t >= m) t -= m; return (ull)t; } ull p = x & MASK(b); x = (x >> b) + p * d; ull y = p << (64 - b); auto t = (x + u128(mx) * (imx * (y - ull(x)))) >> (64 - b); if (t >= m) { t -= m; if (t >= m) t -= m; } return (ull)t; } ull inv_reduce(i128 v) const { return reduce(u128(v % m + m) * q); } }; template struct policy_montgomery64_odd { using value_type = ull; using calc_type = u128; using mod_type = ll; static constexpr bool is_prime = false; static inline montgomery64odd reducer{(1LL << 61) - 1}; static void set_mod(mod_type m); static mod_type mod(); static value_type umod(); static value_type init(value_type v) { return reducer.inv_reduce(v); } static mod_type val(value_type v); static value_type mul(value_type a, value_type b); }; template struct policy_montgomery64 { using value_type = ull; using calc_type = u128; using mod_type = ll; static constexpr bool is_prime = false; static inline montgomery64 reducer{(1LL << 61) - 1}; static void set_mod(mod_type m); static mod_type mod(); static value_type umod(); static value_type init(value_type v) { return reducer.inv_reduce(v); } static mod_type val(value_type v); static value_type mul(value_type a, value_type b); }; }; // https://github.com/miscalculation53/library/tree/wip/math/extgcd.hpp template constexpr tuple extgcd(T a, T b); namespace internal { template struct modint_impl { using V = typename Policy::value_type; using M = typename Policy::mod_type; using mint = modint_impl; private: V _v; public: static constexpr M mod() { return Policy::mod(); } template static auto set_mod(M m) -> decltype(T::set_mod(m)); static mint raw(V v) { mint x; x._v = v; return x; } modint_impl() : _v(0) {} template >> modint_impl(T v) { V rem; if constexpr (is_signed_ext) { using S = make_signed_t; S x = v % S(Policy::umod()); if (x < 0) x += Policy::umod(); rem = x; } else rem = V(v % Policy::umod()); _v = Policy::init(rem); }; M val() const { return Policy::val(_v); } mint &operator+=(const mint &rhs) { _v += rhs._v; if (_v >= Policy::umod()) _v -= Policy::umod(); return *this; } mint &operator-=(const mint &rhs) { _v -= rhs._v; if (_v >= Policy::umod()) _v += Policy::umod(); return *this; } mint &operator*=(const mint &rhs) { _v = Policy::mul(_v, rhs._v); return *this; } mint &operator/=(const mint &rhs); mint &operator++(); mint &operator--(); mint operator++(int); mint operator--(int); mint operator+() const; mint operator-() const { return mint() - *this; } template mint pow(T n) const; mint inv() const; friend mint operator+(const mint &lhs, const mint &rhs) { return mint(lhs) += rhs; } friend mint operator-(const mint &lhs, const mint &rhs) { return mint(lhs) -= rhs; } friend mint operator*(const mint &lhs, const mint &rhs) { return mint(lhs) *= rhs; } friend mint operator/(const mint &lhs, const mint &rhs) { return mint(lhs) /= rhs; } friend bool operator==(const mint &lhs, const mint &rhs) { return lhs._v == rhs._v; } friend bool operator!=(const mint &lhs, const mint &rhs) { return lhs._v != rhs._v; } friend M safe_hash_key(const mint &x) { return x.val(); } friend void rd1(mint &x) { long long a; fastio::rd1(a); x = a; } friend void wt1(const mint &x) { fastio::wt1(x.val()); } }; }; template using static_modint32 = internal::modint_impl>; template using dynamic_modint32 = internal::modint_impl>; template using static_modint64 = internal::modint_impl>; template using dynamic_modint64_odd = internal::modint_impl>; template using dynamic_modint64 = internal::modint_impl>; using modint998244353 = static_modint32<998244353>; using modint1000000007 = static_modint32<1000000007>; using modint = dynamic_modint32<-1>; using modint61 = static_modint64<(1LL << 61) - 1>; using modint64 = dynamic_modint64<-1>; template struct is_modint : std::false_type { }; template struct is_modint> : std::true_type { }; template inline constexpr bool is_modint_v = is_modint::value; template struct is_static_modint : false_type {}; template struct is_static_modint> : true_type {}; template struct is_static_modint> : true_type {}; template inline constexpr bool is_static_modint_v = is_static_modint::value; template struct is_dynamic_modint : false_type {}; template struct is_dynamic_modint> : true_type {}; template struct is_dynamic_modint> : true_type {}; template struct is_dynamic_modint> : true_type {}; template inline constexpr bool is_dynamic_modint_v = is_dynamic_modint::value; template struct has_mod : std::false_type { }; template struct has_mod> : std::true_type { }; template struct modint_less { bool operator()(const mint &a, const mint &b) const; }; template struct modint_hash { auto operator()(const mint &x) const; }; // https://github.com/miscalculation53/library/tree/wip/math/modint/power_table.hpp template struct PowerTable { private: decltype(mint::mod()) mod; mint base; vc pw; public: PowerTable(); PowerTable(const mint &base); void reserve(int n); mint pow(int n); }; // https://github.com/miscalculation53/library/tree/wip/math/modint/binomial.hpp template struct Binomial { private: inline static decltype(T::mod()) mod; public: inline static vc fac_, finv_, inv_; static void reserve(int n) { if constexpr (is_dynamic_modint_v) { if (mod != T::mod()) { mod = T::mod(); fac_ = {1, 1}, finv_ = {1, 1}, inv_ = {0, 1}; } } else { if (fac_.empty()) fac_ = {1, 1}, finv_ = {1, 1}, inv_ = {0, 1}; } if (n < SZ(fac_)) return; chmin(n, T::mod() - 1); int si = fac_.size(); fac_.resize(n + 1), finv_.resize(n + 1), inv_.resize(n + 1); repi(i, si, n + 1) { fac_[i] = fac_[i - 1] * T::raw(i); inv_[i] = -inv_[T::mod() % i] * T::raw(T::mod() / i); finv_[i] = finv_[i - 1] * inv_[i]; } } static T fac(int n); static T finv(int n); static T inv(int n); static T P(int n, int k); static T C(int n, int k); static T H(int n, int k); }; // https://github.com/miscalculation53/library/tree/wip/math/modint/stom.hpp template mint stom(string s); // https://github.com/miscalculation53/library/tree/wip/math/modint/to_rational.hpp // https://github.com/miscalculation53/library/tree/wip/math/svp2d.hpp template > pair svp2d(const pair &a, const pair &b); template pair mint_to_rat(const mint &x); namespace cpp_dump { struct mint_to_rat_fn { template constexpr auto operator()(const T &x) const -> decltype(mint_to_rat(x)); }; struct rat_closure : std::ranges::range_adaptor_closure { template constexpr auto operator()(T &&t) const; }; template requires(!std::ranges::range && std::invocable) constexpr auto operator|(T &&t, const rat_closure &c); constexpr rat_closure rat() { return rat_closure{}; } } using mint = modint998244353; using bi = Binomial; void init() { oj(mt.seed(random_device()())); } // https://github.com/miscalculation53/library/tree/wip/math/prime/sieve/lcm_gcd_convolution.hpp // https://github.com/miscalculation53/library/tree/wip/math/prime/sieve/zeta_mobius_divisor_multiple.hpp // https://github.com/miscalculation53/library/tree/wip/math/prime/sieve/linear_sieve.hpp // https://github.com/miscalculation53/library/tree/wip/math/prime/prime_power.hpp template struct PrimePower { P p; int e; P pe; PrimePower() : p(-1), e(-1), pe(-1) {} PrimePower(P p, int e = 1); PrimePower(P p, int e, P pe) : p(p), e(e), pe(pe) {} template PrimePower(const PrimePower &pp); template bool operator==(const PrimePower &rhs) const; template bool operator!=(const PrimePower &rhs) const; void mul_p(); void div_p(); }; tuple ord_pow_div(ll n, ll m) { assert(m >= 2); if (m == 2) { int e = countr_zero(n); return {e, 1LL << e, n >> e}; } if (n % m != 0) return {0, 1, n}; n /= m; if (n % m != 0) return {1, m, n}; n /= m; ll m2 = m * m; auto [f, m2f, nn] = ord_pow_div(n, m2); int e = 2 + 2 * f; ll me = m2f * m2; if (nn % m == 0) e++, me *= m, nn /= m; return {e, me, nn}; } template vc

factors(const vc> &fac); template vc divisors(const vc> &fac); template vc> factorized_mul (const vc> &fac1, const vc> &fac2) { const int n = fac1.size(), m = fac2.size(); vc> fac; fac.reserve(n + m); int i = 0, j = 0; while (i < n && j < m) { if (fac1[i].p < fac2[j].p) fac.emplace_back(fac1[i++]); else if (fac1[i].p > fac2[j].p) fac.emplace_back(fac2[j++]); else { using U = larger_int_t

; fac.emplace_back(fac1[i].p, fac1[i].e + fac2[j].e, U(fac1[i].pe) * U(fac2[j].pe)); i++, j++; } } fac.insert(fac.end(), fac1.begin() + i, fac1.end()); fac.insert(fac.end(), fac2.begin() + j, fac2.end()); return fac; } struct LinearSieve { public: static int n; static vc> lpf_; static vc primes; static void reserve(int n_) { if (n_ <= n) return; n = max(n_, 2 * n); lpf_.resize(n + 1); for (int d = 2; d <= n; d++) { if (lpf_[d].p == -1) { lpf_[d] = PrimePower(d, 1, d); primes.eb(d); } fec(p : primes) { if (p > n / d || p > lpf_[d].p) break; if (lpf_[d].p == p) lpf_[p * d] = PrimePower(p, lpf_[d].e + 1, lpf_[d].pe * p); else lpf_[p * d] = PrimePower(p, 1, p); } } } template static PrimePower

lpf(int n) { assert(n >= 1); reserve(n); return lpf_[n]; } static bool is_prime(int n) { if (n <= 1) return false; return lpf(n).p == n; } template static vc> factorize(int n); }; vc> LinearSieve::lpf_{}; int LinearSieve::n{}; vc LinearSieve::primes{}; // https://github.com/miscalculation53/library/tree/wip/algebra/algebra_basic_ops.hpp // https://github.com/miscalculation53/library/tree/wip/algebra/algebra_base.hpp template struct Monoid { using S = S_; static constexpr auto op = op_; static constexpr auto e = e_; }; template struct Group { using S = S_; static constexpr auto op = op_; static constexpr auto e = e_; static constexpr auto inv = inv_; }; template struct SemiRing { using S = S_; static constexpr auto add = add_; static constexpr auto e0 = e0_; static constexpr auto mul = mul_; static constexpr auto e1 = e1_; }; template struct Ring { using S = S_; static constexpr auto add = add_; static constexpr auto e0 = e0_; static constexpr auto minus = minus_; static constexpr auto mul = mul_; static constexpr auto e1 = e1_; }; template struct Field { using S = S_; static constexpr auto add = add_; static constexpr auto e0 = e0_; static constexpr auto minus = minus_; static constexpr auto mul = mul_; static constexpr auto e1 = e1_; static constexpr auto inv = inv_; }; template struct OppositeMonoid { using S = typename M::S; static constexpr S op(const S &a, const S &b); static constexpr auto e = M::e; }; template struct OppositeGroup { using S = typename G::S; static constexpr S op(const S &a, const S &b); static constexpr auto e = G::e; static constexpr auto inv = G::inv; }; template struct NormalAndOppositeMonoid { struct S { typename M::S normal; typename M::S opposite; S(); template , std::nullptr_t> = nullptr> S(Args &&...args); S rev(); S(const typename M::S &normal, const typename M::S &opposite); }; static constexpr S op(const S &a, const S &b); static constexpr S e(); }; template struct NormalAndOppositeGroup { struct S { typename G::S normal; typename G::S opposite; S(); template , std::nullptr_t> = nullptr> S(Args &&...args); S rev(); S(const typename G::S &normal, const typename G::S &opposite); }; static constexpr S op(const S &a, const S &b); static constexpr S e(); static constexpr S inv(const S &a); }; template using MonoidOfSemiRingAdd = Monoid; template using MonoidOfSemiRingMul = Monoid; template using GroupOfRingAdd = Group; template using GroupOfFieldMul = Group; template struct SemiRingFromMonoidMonoid { static_assert(is_same_v, "Madd::S and Mmul::S must be identical"); using S = typename Madd::S; static constexpr auto add = Madd::op; static constexpr auto e0 = Madd::e; static constexpr auto mul = Mmul::op; static constexpr auto e1 = Mmul::e; }; template struct RingFromGroupMonoid { static_assert(is_same_v, "Gadd::S and Mmul::S must be identical"); using S = typename Gadd::S; static constexpr auto add = Gadd::op; static constexpr auto e0 = Gadd::e; static constexpr auto minus = Gadd::inv; static constexpr auto mul = Mmul::op; static constexpr auto e1 = Mmul::e; }; template struct FieldFromGroupGroup { static_assert(is_same_v, "Gadd::S and Gmul::S must be identical"); using S = typename Gadd::S; static constexpr auto add = Gadd::op; static constexpr auto e0 = Gadd::e; static constexpr auto minus = Gadd::inv; static constexpr auto mul = Gmul::op; static constexpr auto e1 = Gmul::e; static constexpr auto inv = Gmul::inv; }; template struct has_e1 : false_type {}; template struct has_e1> : true_type {}; template inline constexpr bool has_e1_v = has_e1::value; template struct MonoidMul { using S = T; static constexpr S op(S a, S b); static constexpr S e(); }; template struct GroupAddSub { using S = T; static constexpr S op(S a, S b) { return a + b; } static constexpr S e(); static constexpr S inv(S a) { return -a; } template () * declval())> static constexpr S pow(const S &a, I k); }; template struct GroupMulDiv { using S = T; static constexpr S op(S a, S b); static constexpr S e(); static constexpr S inv(S a); }; template using SemiRingMinPlus = SemiRingFromMonoidMonoid, MonoidAdd>; template using SemiRingMaxPlus = SemiRingFromMonoidMonoid, MonoidAdd>; template using RingAddSubMul = RingFromGroupMonoid, MonoidMul>; template using FieldAddSubMulDiv = FieldFromGroupGroup, GroupMulDiv>; template vc zeta_divisor(const vc &a); template vc mobius_divisor(const vc &a); template vc zeta_multiple(const vc &a); template vc mobius_multiple(const vc &a) { const int n = SZ(a) - 1; LinearSieve::reserve(n); auto b = a; fec(p : LinearSieve::primes) { if (p > n) break; for (int i = 1; i * p <= n; i++) b[i] = G::op(b[i], G::inv(b[i * p])); } return b; } template vc lcm_convolution (const vc &a, const vc &b) { assert(a.size() == b.size()); auto za = zeta_divisor>(a); auto zb = zeta_divisor>(b); repi(i, 1, SZ(a)) za[i] = R::mul(za[i], zb[i]); return mobius_divisor>(za); } template vc gcd_convolution (const vc &a, const vc &b) { assert(a.size() == b.size()); auto za = zeta_multiple>(a); auto zb = zeta_multiple>(b); repi(i, 1, SZ(a)) za[i] = R::mul(za[i], zb[i]); return mobius_multiple>(za); } void main2() { LL(N, M); const ll L = max(N, M); vc g(L + 1); rep(d, 1, L + 1) g[d] = mint(d) * ((N / d) * (N / d + 1) / 2) * mint(d) * ((M / d) * (M / d + 1) / 2); dump(g | cp::index()); auto f = mobius_multiple>(g); dump(f | cp::index()); bi::reserve(L + 1); mint ans = 0; rep(d, 1, L + 1) ans += f[d] * bi::inv_[d]; PRINT(ans); } void test() { } // https://github.com/miscalculation53/library/tree/wip/template/template_main.hpp template struct Main { Main() { cauto CERR = [](string val, string color) { string s = "\033[" + color + "m" + val + "\033[m"; }; CERR("\n[FAST_IO]\n\n", "32"); cout << fixed << setprecision(20); init(); CERR("\n[SINGLE_TESTCASE]\n\n", "36"); main2(); } }; Main main_dummy; } int main() {}