#ifndef LOCAL #pragma GCC optimize ("Ofast") #pragma GCC optimize ("unroll-loops") #endif #include using namespace std; using ll=long long; #define int ll bool dbg=false; #define rng(i,a,b) for(int i=int(a);i=int(a);i--) #define per(i,b) gnr(i,0,b) #define pb push_back #define eb emplace_back #define a first #define b second #define bg begin() #define ed end() #define all(x) x.bg,x.ed #define si(x) int(x.size()) #ifdef LOCAL #define dmp(x) cerr<<__LINE__<<" "<<#x<<" "< bool chmax(t&a,u b){if(a bool chmin(t&a,u b){if(b using vc=vector; template using vvc=vc>; using pi=pair; using vi=vc; using vvi=vc>; template ostream& operator<<(ostream& os,const pair& p){ return os<<"{"< ostream& operator<<(ostream& os,const vc& v){ os<<"{"; for(auto e:v)os< void dmpr(ostream&os,const T&t,const Args&... args){ os< ostream& operator<<(ostream&os,const array&a){ return os<(all(a)); } ll rand_int(ll l, ll r) { //[l, r] //#ifdef LOCAL static mt19937_64 gen; /*#else static mt19937_64 gen(chrono::steady_clock::now().time_since_epoch().count()); #endif*/ return uniform_int_distribution(l, r)(gen); } ll rand_int(ll k){ //[0,k) return rand_int(0,k-1); } string rand_string(int n,char lw,char up){ string s(n,'?'); rep(i,n)s[i]=rand_int(lw,up); return s; } int current_run_id,run_batch_size=1000; int calc_random_limit(){ return current_run_id/run_batch_size+1; } template void generate_single(t&a){ a=rand_int(1,calc_random_limit()); } void generate_single(string&a){ int n;generate_single(n); a=rand_string(n,'a','b'); } template void generate_single(pair&a){ generate_single(a.a); generate_single(a.b); } //https://trap.jp/post/1224/ template void input(Args&... a){ if(dbg){ (generate_single(a),...); }else{ (cin >> ... >> a); } } #define INT(...) int __VA_ARGS__;input(__VA_ARGS__) #define LL(...) ll __VA_ARGS__;input(__VA_ARGS__) #define ULL(...) ull __VA_ARGS__;input(__VA_ARGS__) #define STR(...) string __VA_ARGS__;input(__VA_ARGS__) #define CHR(...) char __VA_ARGS__;input(__VA_ARGS__) #define DBL(...) double __VA_ARGS__;input(__VA_ARGS__) #define LD(...) ld __VA_ARGS__;input(__VA_ARGS__) #define overload3(a,b,c,d,...) d #define VI2(name,size) vi name(size);rep(i_##name,size)input(name[i_##name]); #define VI3(name,size,offset) vi name(size);rep(i_##name,size)input(name[i_##name]),name[i_##name]+=offset; #define VI(...) overload3(__VA_ARGS__,VI3,VI2)(__VA_ARGS__) #define VPI(name,size) vc name(size);rep(i_##name,size)input(name[i_##name]); #define VVI(name,sizeN,sizeM) vvi name(sizeN,vi(sizeM));\ rep(i_##name,sizeN)rep(j_##name,sizeM)input(name[i_##name][j_##name]); #define VS(name,size) vc name(size);rep(i_##name,size)input(name[i_##name]); #define overload5(a,b,c,d,e,f,...) f #define VVC4(type,name,sizeN,sizeM) vvc name(sizeN,vc(sizeM)); #define VVC5(type,name,sizeN,sizeM,ini) vvc name(sizeN,vc(sizeM,ini)); #define VVC(...) overload5(__VA_ARGS__,VVC5,VVC4)(__VA_ARGS__) template T vvvc(T v){ return v; } template auto vvvc(int n,T v,Args...args){ return vector(n,vvvc(v,args...)); } template void print_tuple(ostream&,const T&){ } template void print_tuple(ostream&os,const T&t){ if(i)os<<","; os<(t); print_tuple(os,t); } template ostream& operator<<(ostream&os,const tuple&t){ os<<"{"; print_tuple<0,tuple,Args...>(os,t); return os<<"}"; } ll read(){ ll i; cin>>i; return i; } vi readvi(int n,int off=0){ vi v(n); rep(i,n)v[i]=read()+off; return v; } pi readpi(int off=0){ int a,b;cin>>a>>b; return pi(a+off,b+off); } template void print_single(t x,int suc=1){ cout< void print_single(const pair&p,int suc=1){ print_single(p.a,2); print_single(p.b,suc); } template void print_single(const vector&v,int suc=1){ rep(i,v.size()) print_single(v[i],i==int(v.size())-1?suc:2); } template void print_offset(const vector&v,ll off,int suc=1){ rep(i,v.size()) print_single(v[i]+off,i==int(v.size())-1?suc:2); } template void print_single(const array&v,int suc=1){ rep(i,N) print_single(v[i],i==int(N)-1?suc:2); } template void print(const T&t){ print_single(t); } template void print(const T&t,const Args&...args){ print_single(t,2); print(args...); } template void printvv(const vvc&vs){ for(const auto&row:vs)print(row); } string readString(){ string s; cin>>s; return s; } template T sq(const T& t){ return t*t; } void YES(bool ex=true){ cout<<"YES\n"; if(ex)exit(0); #ifdef LOCAL cout.flush(); #endif } void NO(bool ex=true){ cout<<"NO\n"; if(ex)exit(0); #ifdef LOCAL cout.flush(); #endif } void Yes(bool ex=true){ cout<<"Yes\n"; if(ex)exit(0); #ifdef LOCAL cout.flush(); #endif } void No(bool ex=true){ cout<<"No\n"; if(ex)exit(0); #ifdef LOCAL cout.flush(); #endif } //#define CAPITAL /* void yes(bool ex=true){ #ifdef CAPITAL cout<<"YES"<<"\n"; #else cout<<"Yes"<<"\n"; #endif if(ex)exit(0); #ifdef LOCAL cout.flush(); #endif } void no(bool ex=true){ #ifdef CAPITAL cout<<"NO"<<"\n"; #else cout<<"No"<<"\n"; #endif if(ex)exit(0); #ifdef LOCAL cout.flush(); #endif }*/ void possible(bool ex=true){ #ifdef CAPITAL cout<<"POSSIBLE"<<"\n"; #else cout<<"Possible"<<"\n"; #endif if(ex)exit(0); #ifdef LOCAL cout.flush(); #endif } void impossible(bool ex=true){ #ifdef CAPITAL cout<<"IMPOSSIBLE"<<"\n"; #else cout<<"Impossible"<<"\n"; #endif if(ex)exit(0); #ifdef LOCAL cout.flush(); #endif } constexpr ll ten(int n){ return n==0?1:ten(n-1)*10; } const ll infLL=LLONG_MAX/3; #ifdef int const int inf=infLL; #else const int inf=INT_MAX/2-100; #endif int topbit(signed t){ return t==0?-1:31-__builtin_clz(t); } int topbit(ll t){ return t==0?-1:63-__builtin_clzll(t); } int topbit(ull t){ return t==0?-1:63-__builtin_clzll(t); } int botbit(signed a){ return a==0?32:__builtin_ctz(a); } int botbit(ll a){ return a==0?64:__builtin_ctzll(a); } int botbit(ull a){ return a==0?64:__builtin_ctzll(a); } int popcount(signed t){ return __builtin_popcount(t); } int popcount(ll t){ return __builtin_popcountll(t); } int popcount(ull t){ return __builtin_popcountll(t); } int bitparity(ll t){ return __builtin_parityll(t); } bool ispow2(int i){ return i&&(i&-i)==i; } ll mask(int i){ return (ll(1)< void mkuni(S&v){ sort(all(v)); v.erase(unique(all(v)),v.ed); } template bool isuni(vc v){ int s=si(v); mkuni(v); return si(v)==s; } template void myshuffle(vc&a){ rep(i,si(a))swap(a[i],a[rand_int(0,i)]); } template int lwb(const S&v,const u&a){ return lower_bound(all(v),a)-v.bg; } template bool bis(const vc&v,const u&a){ return binary_search(all(v),a); } //VERIFY: yosupo //KUPC2017J //AOJDSL1A //without rank struct unionfind{ vi p,s; int c; unionfind(int n):p(n,-1),s(n,1),c(n){} void clear(){ fill(all(p),-1); fill(all(s),1); c=si(p); } int find(int a){ return p[a]==-1?a:(p[a]=find(p[a])); } //set b to a child of a bool unite(int a,int b){ a=find(a); b=find(b); if(a==b)return false; p[b]=a; s[a]+=s[b]; c--; return true; } bool same(int a,int b){ return find(a)==find(b); } int sz(int a){ return s[find(a)]; } }; vvc readGraph(int n,int m){ vvc g(n); rep(i,m){ int a,b; cin>>a>>b; //sc.read(a,b); a--;b--; g[a].pb(b); g[b].pb(a); } return g; } vvc rand_tree(int n){ vvc t(n); unionfind uf(n); while(uf.c>1){ int a=rand_int(n); int b=rand_int(n); if(uf.unite(a,b)){ t[a].pb(b); t[b].pb(a); } } return t; } vvc readTree(int n){ if(dbg){ return rand_tree(n); }else{ return readGraph(n,n-1); } } void printTree(const vvc t){ int n=si(t); int degsum=0; rep(i,n)degsum+=si(t[i]); if(degsum==n-1){ //directed rep(i,si(t))for(auto j:t[i]){ print(i+1,j+1); } }else if(degsum==2*(n-1)){ //undirected rep(i,si(t))for(auto j:t[i])if(i vc presum(const vc&a){ vc s(si(a)+1); rep(i,si(a))s[i+1]=s[i]+a[i]; return s; } vc presum(const vi&a){ vc s(si(a)+1); rep(i,si(a))s[i+1]=s[i]+a[i]; return s; } //BIT で数列を管理するときに使う (CF850C) template vc predif(vc a){ gnr(i,1,si(a))a[i]-=a[i-1]; return a; } template vvc imos(const vvc&a){ int n=si(a),m=si(a[0]); vvc b(n+1,vc(m+1)); rep(i,n)rep(j,m) b[i+1][j+1]=b[i+1][j]+b[i][j+1]-b[i][j]+a[i][j]; return b; } //verify してないや void transvvc(int&n,int&m){ swap(n,m); } template void transvvc(int&n,int&m,vvc&a,Args&...args){ assert(si(a)==n); vvc b(m,vi(n)); rep(i,n){ assert(si(a[i])==m); rep(j,m)b[j][i]=a[i][j]; } a.swap(b); transvvc(n,m,args...); } //CF854E void rotvvc(int&n,int&m){ swap(n,m); } template void rotvvc(int&n,int&m,vvc&a,Args&...args){ assert(si(a)==n); vvc b(m,vi(n)); rep(i,n){ assert(si(a[i])==m); rep(j,m)b[m-1-j][i]=a[i][j]; } a.swap(b); rotvvc(n,m,args...); } //ソートして i 番目が idx[i] //CF850C template vi sortidx(const vc&a){ int n=si(a); vi idx(n);iota(all(idx),0); sort(all(idx),[&](int i,int j){return a[i] vc a_idx(const vc&a,const vi&idx){ int n=si(a); assert(si(idx)==n); vc vs(n); rep(i,n)vs[i]=a[idx[i]]; return vs; } //CF850C vi invperm(const vi&p){ int n=si(p); vi q(n); rep(i,n)q[p[i]]=i; return q; } template s SUM(const vc&a){ return accumulate(all(a),s(0)); } template s SUM(const array&a){ return accumulate(all(a),s(0)); } template t MAX(const vc&a){ return *max_element(all(a)); } template pair MAXi(const vc&a){ auto itr=max_element(all(a)); return mp(*itr,itr-a.bg); } template auto MIN(const A&a){ return *min_element(all(a)); } template pair MINi(const vc&a){ auto itr=min_element(all(a)); return mp(*itr,itr-a.bg); } vi vid(int n){ vi res(n);iota(all(res),0); return res; } template void soin(S&s){ sort(all(s)); } template void soin(S&s,F&&f){ sort(all(s),forward(f)); } template S soout(S s){ soin(s); return s; } template void rein(S&s){ reverse(all(s)); } template S reout(S s){ rein(s); return s; } template pair&operator+=(pair&a,pair b){ a.a+=b.a;a.b+=b.b;return a;} template pair&operator-=(pair&a,pair b){ a.a-=b.a;a.b-=b.b;return a;} template pair operator+(pair a,pair b){return mp(a.a+b.a,a.b+b.b);} template pair operator-(pair a,pair b){return mp(a.a-b.a,a.b-b.b);} template pair&operator*=(pair&a,v b){ a.a*=b;a.b*=b;return a;} template pair operator*(pair a,v b){return a*=b;} template pair operator-(pair a){return mp(-a.a,-a.b);} namespace std{ template istream&operator>>(istream&is,pair&a){ return is>>a.a>>a.b; } } template t gpp(vc&vs){ assert(si(vs)); t res=move(vs.back()); vs.pop_back(); return res; } template void pb(vc&a,const vc&b){ a.insert(a.ed,all(b)); } template vc cat(vc a,Args&&...b){ (pb(a,forward(b)),...); return a; } template vc& operator+=(vc&a,u x){ for(auto&v:a)v+=x; return a; } template vc operator+(vc a,u x){ return a+=x; } template vc& operator+=(vc&a,const vc&b){ a.resize(max(si(a),si(b))); rep(i,si(b))a[i]+=b[i]; return a; } template vc operator+(const vc&a,const vc&b){ vc c(max(si(a),si(b))); rep(i,si(a))c[i]+=a[i]; rep(i,si(b))c[i]+=b[i]; return c; } template vc& operator-=(vc&a,u x){ for(auto&v:a)v-=x; return a; } template vc& operator-(vc a,u x){ return a-=x; } template vc& operator*=(vc&a,u x){ for(auto&v:a)v*=x; return a; } template vc& operator*(vc a,u x){ return a*=x; } template vc& operator/=(vc&a,u x){ for(auto&v:a)v/=x; return a; } template vc& operator/(vc a,u x){ return a/=x; } template void remval(vc&a,const u&v){ a.erase(remove(all(a),v),a.ed); } //消した要素の個数を返してくれる //UCUP 2-8-F template int remif(vc&a,F f){ auto itr=remove_if(all(a),f); int res=a.ed-itr; a.erase(itr,a.ed); return res; } template void fila(VS&vs,const u&a){ fill(all(vs),a); } template int findid(const vc&vs,const u&a){ auto itr=find(all(vs),a); if(itr==vs.ed)return -1; else return itr-vs.bg; } template void rtt(vc&vs,int i){ rotate(vs.bg,vs.bg+i,vs.ed); } //Multiuni2023-8 C //f(lw)=false,...,f(n-1)=false,f(n)=true,...,f(up)=true, //のときに n を返す template int find_min_true(int lw,int up,F f){ while(up-lw>1){ const int mid=(lw+up)/2; if(f(mid))up=mid; else lw=mid; } return up; } //f(lw)=true,f(up)=false template int find_max_true(int lw,int up,F f){ while(up-lw>1){ const int mid=(lw+up)/2; if(f(mid))lw=mid; else up=mid; } return lw; } template using pqmin=priority_queue,greater>; template using pqmax=priority_queue; using T=tuple; //mint107 は verify してねえ //#define DYNAMIC_MOD struct modinfo{uint mod,root; #ifdef DYNAMIC_MOD constexpr modinfo(uint m,uint r):mod(m),root(r),im(0){set_mod(m);} ull im; constexpr void set_mod(uint m){ mod=m; im=ull(-1)/m+1; } uint product(uint a,uint b)const{ ull z=ull(a)*b; uint x=((unsigned __int128)z*im)>>64; uint v=uint(z)-x*mod; return v struct modular{ static constexpr uint const &mod=ref.mod; static modular root(){return modular(ref.root);} uint v; //modular(initializer_listls):v(*ls.bg){} modular(ll vv=0){s(vv%mod+mod);} modular& s(uint vv){ v=vv>=1; } return res; } modular inv()const{return pow(mod-2);} /*modular inv()const{ int x,y; int g=extgcd(v,mod,x,y); assert(g==1); if(x<0)x+=mod; return modular(x); }*/ friend modular operator+(ll x,const modular&y){ return modular(x)+y; } friend modular operator-(ll x,const modular&y){ return modular(x)-y; } friend modular operator*(ll x,const modular&y){ return modular(x)*y; } friend modular operator/(ll x,const modular&y){ return modular(x)/y; } friend ostream& operator<<(ostream&os,const modular&m){ return os<>(istream&is,modular&m){ ll x;is>>x; m=modular(x); return is; } bool operator<(const modular&r)const{return v; #endif using mint=modular; mint parity(int i){ return i%2==0?1:-1; } #ifdef LOCAL const int vmax=10010; #else const int vmax=(1<<21)+10; #endif mint fact[vmax],finv[vmax],invs[vmax]; void initfact(){ const int s=min(vmax,base.mod); fact[0]=1; rng(i,1,s){ fact[i]=fact[i-1]*i; } finv[s-1]=fact[s-1].inv(); for(int i=s-2;i>=0;i--){ finv[i]=finv[i+1]*(i+1); } for(int i=s-1;i>=1;i--){ invs[i]=finv[i]*fact[i-1]; } } mint choose(int n,int k){ return inc(0,k,n)?fact[n]*finv[n-k]*finv[k]:0; } mint binom(int a,int b){ return 0<=a&&0<=b?fact[a+b]*finv[a]*finv[b]:0; } mint catalan(int n){ return binom(n,n)-(n-1>=0?binom(n-1,n+1):0); } //対角線を超えず (x,y) に至る方法の数 mint catalan(int x,int y){ assert(y<=x); return binom(x,y)-binom(x+1,y-1); } //y=x+c を超えず (x,y) に至る方法の数 mint catalan(int x,int y,int c){ assert(y<=x+c); return binom(x,y)-binom(x+c+1,y-c-1); } /* const int vmax=610; mint fact[vmax+1],binbuf[vmax+1][vmax+1]; mint choose(int n,int k){ return 0<=k&&k<=n?binbuf[n-k][k]:0; } mint binom(int a,int b){ return 0<=a&&0<=b?binbuf[a][b]:0; } void initfact(int n){ fact[0]=1; rep(i,n)fact[i+1]=fact[i]*(i+1); rep(i,n+1)rep(j,n+1){ if(i==0&&j==0){ binbuf[i][j]=1; }else{ binbuf[i][j]=0; if(i)binbuf[i][j]+=binbuf[i-1][j]; if(j)binbuf[i][j]+=binbuf[i][j-1]; } } } */ mint p2[vmax],p2inv[vmax]; void initp2(){ p2[0]=1; rep(i,vmax-1)p2[i+1]=p2[i]*2; p2inv[vmax-1]=p2[vmax-1].inv(); per(i,vmax-1)p2inv[i]=p2inv[i+1]*2; } int m2i(mint a){ uint v=a.v; return v1&&strcmp(argv[1],"D")==0)dbg=true; cin.tie(0); ios::sync_with_stdio(0); cout<>t;rep(_,t) slv(); } }