#pragma GCC optimize("O3") #include using namespace std; using ll=long long; using P=pair; template using V=vector; #define fi first #define se second #define all(v) (v).begin(),(v).end() const ll inf=(1e18); //const ll mod=998244353; //const ll mod=1000000007; const ll mod=10; ll GCD(ll a,ll b) {return b ? GCD(b,a%b):a;} ll LCM(ll c,ll d){return c/GCD(c,d)*d;} struct __INIT{__INIT(){cin.tie(0);ios::sync_with_stdio(false);cout< bool chmax(T &a, const T &b) { if (a bool chmin(T &a, const T &b) { if (a>b) { a=b; return 1; } return 0; } templatevoid debag(const vector &a){cerr<<"debag :";for(auto v:a)cerr<void print(const vector &a){for(auto v:a)cout<>=1ll; } return res; } mint inv()const{return pow(mod-2);} //拡張ユークリッドの互除法 /* mint inv()const{ int x,y; int g=extgcd(v,mod,x,y); assert(g==1); if(x<0)x+=mod; return mint(x); }*/ friend ostream& operator<<(ostream&os,const mint&val){ return os<(const mint&val)const{return v>val.v;} }; template struct Matrix{ vector> A; Matrix() {} Matrix(int n,int m):A(n,vector(m,0)) {} Matrix(int n):A(n,vector(n,0)) {} int height() const{return (A.size());} int width() const{return (A[0].size());} inline const vector &operator[](int k)const{return (A.at(k));} inline vector &operator[](int k){return (A.at(k));} //単位行列 static Matrix I(int n){ Matrix mat(n); for(int i=0;i> C(n,vector(m,0)); for(int i=0;i0){ if(k&1){ B*=(*this); } (*this)*=(*this); k>>=1ll; } A.swap(B.A); return (*this); } Matrix operator+(const Matrix &B)const{return (Matrix(*this)+=B);} Matrix operator-(const Matrix &B)const{return (Matrix(*this)-=B);} Matrix operator*(const Matrix &B)const{return (Matrix(*this)*=B);} Matrix operator^(const long long k)const{return (Matrix(*this)^=k);} friend ostream &operator<<(ostream &os,Matrix &mat){ int n=mat.height(),m=mat.width(); for(int i=0;i>p>>q>>r>>k; Matrix mat(3,3),res(3,1); res[0][0]=mint(r); res[1][0]=mint(q); res[2][0]=mint(p); for(int i=0;i<3;i++)mat[0][i]=mint(1); mat[1][0]=mint(1); mat[2][1]=mint(1); mat^=(k-3); mat*=res; cout<