#include using namespace std; #define rep(i,n) for(ll i=0;i=0;i--) #define perl(i,r,l) for(ll i=r-1;i>=l;i--) #define fi first #define se second #define pb push_back #define ins insert #define pqueue(x) priority_queue,greater> #define all(x) (x).begin(),(x).end() #define CST(x) cout<; using vvl=vector>; using pl=pair; using vpl=vector; using vvpl=vector; const ll MOD=1000000007; const ll MOD9=998244353; const int inf=2e9+1; const ll INF=4e18; const ll dy[8]={-1,0,1,0,1,1,-1,-1}; const ll dx[8]={0,-1,0,1,1,-1,1,-1}; template inline bool chmax(T &a, T b) { return ((a < b) ? (a = b, true) : (false)); } template inline bool chmin(T &a, T b) { return ((a > b) ? (a = b, true) : (false)); } vector inv={0,1,5,0,7,2,0,4,8}; int maxN=1e7+10; vector a(maxN); vector b(maxN); void precalc(){ a[0]=1;b[0]=0; for(int i=1;i=2)return 0; if(bs)bs=3; else bs=1; bs=bs*a[n]*inv[a[n-k]]*inv[a[k]]%9; return bs; } int main(){ precalc(); ll t;cin >> t; /*for(int i=maxN-20;i> n >> x >> a >> b >> m; int ans=0; bool zero=true; rep(i,n){ if(x%10)zero=false; ans+=(x%10)*comb(n-1,i)%9; x=((x^a)+b)%m; } ans%=9; if((!zero)&&(!ans))ans+=9; cout << ans << endl; } }