#include #include using namespace std; #include #include #include #include #include #include #include #include #include #include #include using ll = long long; using ld = long double; const ll MOD1 = 1000000007; const ll MOD2 = 998244353; const ll LIMIT1 = 200010; const ll LIMIT2 = 500010; const ll LIMIT3 = 1000010; const int INF = ((1<<30)-1); const ll LLINF = (1LL<<60); const ld EPS = (1e-14); using cv = const void; using P = pair; #define rep(i,n) for((i)=0;(i)<(n);(i)++) #define per(i,n) for((i)=(n)-1;(i)>=0;(i)--) #define ALL(a) (a).begin(),(a).end() #define ALL2(a, n) (a),(a)+(n) template T max(T a,C b){ return std::max(a, (T)b); } template T min(T a,C b){ return std::min(a, (T)b); } template bool chmax(T &a,const C b){ if(a<(T)b){ a=(T)b;return true; } return false; } template bool chmin(T &a,const C b){ if((T)b char gl(const T a,const C b){ T bb = (T)b; if(abb) return '>'; else return '='; } int dx[8]={1,0,-1,0,1,-1,-1,1},dy[8]={0,1,0,-1,1,1,-1,-1}; ll modpow(ll a, ll n, ll mod) { ll res = 1; while (n > 0) { if (n & 1){ res *= a; if(mod>=1) res %= mod; } a *= a; if(mod>=1) a %= mod; n >>= 1; } return res; } void initialize(){ } struct Doubling{//ダブリング計算(0-indexed) int n;//頂点数 const ll logMaxCnt = 63; const ll MAX_CNT = (1LL<<60)-1; bool alreadyCalc = false; vector> d;//移動先,コスト Doubling(int n_) : d(logMaxCnt, vector

(n_)){ n = n_; } void update_edge(int from, ll to, ll cost){//辺の設定 if(from<0 || from>=n || to<0 || to>=n){ cerr << "update_edge error: out of vertex" << '\n'; return; } d[0][from].first = (ll)to; d[0][from].second = cost; } void calculate(){//ダブリング構築 int i,k; for(k=0;k=n || cnt<0) return P{-1,0}; else if(cnt==0) return P{from,0}; if(!alreadyCalc) calculate();//前計算がまだ ll to = from, cost = 0, k; for(k=0;cnt>0;k++){ if(cnt & 1){ cost += d[k][to].second; to = d[k][to].first; } cnt = cnt >> 1; } return P{to, cost}; } }; int main(void){ initialize(); ll n,m,i,j,k,result=0; string s; ll p,q,r; cin >> p >> q >> r >> k; p%=10;q%=10;r%=10; Doubling db(1000); for(i=0;i<1000;i++){ int a = i/100; int b = i/10 - a*10; int c = i%10; db.update_edge(i, b*100+c*10+(a+b+c)%10, 1); } result = db.query(p*100+q*10+r, k-3).first; result %= 10; cout << result << endl; return 0; }