#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #define popcount __builtin_popcount using namespace std; using namespace atcoder; typedef long long ll; typedef pair P; using mint=modint998244353; mint f[2000010], invf[2000010]; void fac(int n){ f[0]=1; for(ll i=1; i<=n; i++) f[i]=f[i-1]*i; invf[n]=f[n].inv(); for(ll i=n-1; i>=0; i--) invf[i]=invf[i+1]*(i+1); } mint comb(int x, int y){ if(!(0<=y && y<=x)) return 0; return f[x]*invf[y]*invf[x-y]; } struct R{ ll a, b; R(ll a, ll b):a(b>0 ? a : -a), b(b>0 ? b : -b){} R(ll a):a(a), b(1){} R():a(0), b(1){} R &operator+=(const R &x){ ll a1=a*x.b+b*x.a, b1=b*x.b; a=a1, b=b1; return *this; } R &operator-=(const R &x){ ll a1=a*x.b-b*x.a, b1=b*x.b; a=a1, b=b1; return *this; } R &operator*=(const R &x){ a*=x.a, b*=x.b; return *this; } R &operator/=(const R &x){ a*=x.b, b*=x.a; if(b<0) a=-a, b=-b; return *this; } R operator-() const{ R res(-a, b); return res; } R operator+(const R &x) const{ return R(*this)+=x; } R operator-(const R &x) const{ return R(*this)-=x; } R operator*(const R &x) const{ return R(*this)*=x; } R operator/(const R &x) const{ return R(*this)/=x; } bool operator==(const R &x) const{ return a*x.b==b*x.a; } bool operator!=(const R &x) const{ return a*x.b!=b*x.a; } bool operator<(const R &x) const{ return a*x.b(const R &x) const{ return a*x.b>b*x.a; } bool operator<=(const R &x) const{ return a*x.b<=b*x.a; } bool operator>=(const R &x) const{ return a*x.b>=b*x.a; } }; int main() { int t; cin>>t; fac(100010); while(t--){ int n, k; cin>>n>>k; vector a(n); int s=0; for(int i=0; i>a[i]; s+=a[i]; } vector nx(n, 1); priority_queue> que; for(int i=0; i