组合数模板(取模,大数)
#include <iostream>#include <bits/stdc++.h>#define maxn 200005typedef long long ll;using namespace std;const ll mod=998244353;ll fac[maxn],inv[maxn];ll pow_mod(ll a,ll n){ ll ...