結果
問題 | No.2193 メガの下1桁 |
ユーザー | w2w2 |
提出日時 | 2023-01-14 00:06:20 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 22,154 bytes |
コンパイル時間 | 6,429 ms |
コンパイル使用メモリ | 318,456 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-07 00:28:29 |
合計ジャッジ時間 | 7,486 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,812 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 1 ms
6,944 KB |
testcase_12 | AC | 1 ms
6,940 KB |
testcase_13 | AC | 1 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | AC | 2 ms
6,940 KB |
testcase_17 | AC | 2 ms
6,944 KB |
testcase_18 | AC | 2 ms
6,940 KB |
testcase_19 | AC | 2 ms
6,944 KB |
testcase_20 | AC | 2 ms
6,944 KB |
testcase_21 | AC | 2 ms
6,944 KB |
testcase_22 | AC | 2 ms
6,940 KB |
testcase_23 | AC | 2 ms
6,940 KB |
testcase_24 | AC | 2 ms
6,940 KB |
testcase_25 | AC | 2 ms
6,940 KB |
testcase_26 | AC | 2 ms
6,944 KB |
testcase_27 | AC | 2 ms
6,940 KB |
testcase_28 | AC | 2 ms
6,940 KB |
testcase_29 | AC | 2 ms
6,944 KB |
testcase_30 | AC | 1 ms
6,940 KB |
testcase_31 | AC | 1 ms
6,940 KB |
testcase_32 | AC | 2 ms
6,944 KB |
testcase_33 | AC | 2 ms
6,940 KB |
testcase_34 | AC | 2 ms
6,940 KB |
testcase_35 | AC | 2 ms
6,940 KB |
testcase_36 | AC | 2 ms
6,944 KB |
testcase_37 | AC | 1 ms
6,940 KB |
testcase_38 | AC | 2 ms
6,944 KB |
testcase_39 | WA | - |
ソースコード
#define MOD_TYPE 998244353 // #define MOD_TYPE 1000000007 // #define EXPAND // #define MOD_EXPAND #pragma region Macros #pragma GCC target("avx,avx2,bmi,bmi2,lzcnt,popcnt") #pragma GCC optimize("O3,unroll-loops") #include <bits/stdc++.h> using namespace std; using namespace std::literals; #if __has_include(<atcoder/all>) || defined(EXPAND) #include <atcoder/convolution> #include <atcoder/lazysegtree> #include <atcoder/math> #include <atcoder/maxflow> #include <atcoder/mincostflow> #include <atcoder/modint> #include <atcoder/scc> #include <atcoder/segtree> #include <atcoder/string> #include <atcoder/twosat> using namespace atcoder; #endif using ll= long long; using ld= long double; using ull= unsigned long long; using i128= __int128; using u128= unsigned __int128; using str= std::string; using pll= std::pair<ll, ll>; template<class T> using vec= std::vector<T>; template< class T, class Container= vec<T>, class Compare= std::less<typename Container::value_type>> using prique= std::priority_queue<T, Container, Compare>; using vi= vec<int>; using vl= vec<ll>; using vd= vec<ld>; using vs= vec<str>; using vi128= vec<i128>; using vpll= vec<pll>; using vvi= vec<vi>; using vvl= vec<vl>; using vvd= vec<vd>; using vvs= vec<vs>; using vvi128= vec<vi128>; using vvpll= vec<vpll>; #if __has_include(<atcoder/modint>) || defined(MOD_EXPAND) #if MOD_TYPE == 1000000007 using mint= atcoder::modint1000000007; #elif MOD_TYPE == 998244353 using mint= atcoder::modint998244353; #endif using vm= vec<mint>; using vvm= vec<vm>; #endif #if MOD_TYPE == 1000000007 constexpr ll mod= 1000000007ll; #elif MOD_TYPE == 998244353 constexpr ll mod= 998244353ll; #endif #define ALL(x) (x).begin(), (x).end() #define OVERLOAD3(_1, _2, _3, name, ...) name #define OVERLOAD5(_1, _2, _3, _4, _5, name, ...) name #define REPBASE(i, a, b) for(ll i= (a), i##_b= (b); i < i##_b; i++) #define RREPBASE(i, a, b) for(ll i= (a), i##_b= (b); i >= i##_b; i--) #define LOOP(n) REPBASE(i##__COUNTER__##_##__LINE__, 0, n) #define REPB(i, n) REPBASE(i, 0, n) #define REPS(i, n) REPBASE(i, 1, n + 1) #define RREP(i, n) RREPBASE(i, n - 1, 0) #define RREPS(i, n) RREPBASE(i, n, 1) #define REP(...) OVERLOAD3(__VA_ARGS__, REPBASE, REPB, LOOP)(__VA_ARGS__) #define EACH1(x, c) for(auto &&x: c) #define EACH2(x, y, c) for(auto &&[x, y]: c) #define EACH3(x, y, z, c) for(auto &&[x, y, z]: c) #define EACH4(x, y, z, w, c) for(auto &&[x, y, z, w]: c) #define EACH(...) OVERLOAD5(__VA_ARGS__, EACH4, EACH3, EACH2, EACH1)(__VA_ARGS__) #define PERM(p) \ std::sort(ALL(p)); \ for(bool(p##c)= true; (p##c); (p##c)= std::next_permutation(ALL(p))) #define eb emplace_back #define fi first #define se second #define likely(x) __builtin_expect(!!(x), 1) #define unlikely(x) __builtin_expect(!!(x), 0) template<class T> struct is_pair : std::false_type {}; template<class T1, class T2> struct is_pair<std::pair<T1, T2>> : std::true_type {}; template<class T> inline constexpr bool is_pair_v= is_pair<T>::value; template<class T> struct is_tuple : std::false_type {}; template<class... Ts> struct is_tuple<std::tuple<Ts...>> : std::true_type {}; template<class T> inline constexpr bool is_tuple_v= is_tuple<T>::value; template<class, class= void> inline constexpr bool has_iterator= false; template<class T> inline constexpr bool has_iterator<T, std::void_t<typename T::iterator>> = true; template<class, class= void> inline constexpr bool has_value_type= false; template<class T> inline constexpr bool has_value_type<T, std::void_t<typename T::value_type>> = true; #if __has_include(<atcoder/modint>) || defined(MOD_EXPAND) template<class T> inline constexpr bool is_modint_v= atcoder::internal::is_modint<T>::value; #endif template<class T> constexpr ll sz(const T &x) { return std::size(x); } constexpr ll topbit(const ll &t) { return (t == 0 ? -1 : 63 - __builtin_clzll(t)); } constexpr ll bit(const ll &n) noexcept { return (1ll << n); } template<class T, class U> constexpr T div_ceil(const T &a, const U &b) { assert(b != 0); return (a < 0) == (b < 0) ? (a + b - (b > 0) + (b < 0)) / b : a / b; } template<class T, class U> constexpr T div_floor(const T &a, const U &b) { assert(b != 0); return (a < 0) == (b < 0) ? a / b : (a - b + (b > 0) - (b < 0)) / b; } str YES(const bool &n) noexcept { return (n ? "YES"s : "NO"s); } str Yes(const bool &n) noexcept { return (n ? "Yes"s : "No"s); } str yes(const bool &n) noexcept { return (n ? "yes"s : "no"s); } template<class T> constexpr void uniq(T &v) { v.erase(std::unique(v.begin(), v.end()), v.end()); } template<class T, class U> constexpr ll lb(const T &v, const U &x) { return std::distance(v.begin(), std::lower_bound(v.begin(), v.end(), x)); } template<class T, class U, class Compare> constexpr ll lb(const T &v, const U &x, Compare comp) { return std::distance(v.begin(), std::lower_bound(v.begin(), v.end(), x, comp)); } template<class T, class U> constexpr ll ub(const T &v, const U &x) { return std::distance(v.begin(), std::upper_bound(v.begin(), v.end(), x)); } template<class T, class U, class Compare> constexpr ll ub(const T &v, const U &x, Compare comp) { return std::distance(v.begin(), std::upper_bound(v.begin(), v.end(), x, comp)); } template<class T, class U, class V> constexpr ll er(const T &v, const U &x, const V &y) { return std::distance( std::lower_bound(v.begin(), v.end(), x), std::upper_bound(v.begin(), v.end(), y)); } template<class T, class U, class V, class Compare> constexpr ll er(const T &v, const U &x, const V &y, Compare comp) { return std::distance( std::lower_bound(v.begin(), v.end(), x, comp), std::upper_bound(v.begin(), v.end(), y, comp)); } template<class T, class U> constexpr bool chmax(T &a, const U &b) noexcept { if(a < b) { a= b; return true; } return false; } template<class T, class U, class Compare> constexpr bool chmax(T &a, const U &b, Compare comp) noexcept { if(comp(a, b)) { a= b; return true; } return false; } template<class T, class U> constexpr bool chmin(T &a, const U &b) noexcept { if(b < a) { a= b; return true; } return false; } template<class T, class U, class Compare> constexpr bool chmin(T &a, const U &b, Compare comp) noexcept { if(comp(b, a)) { a= b; return true; } return false; } template<class Container> typename Container::value_type sum(Container &c) { return std::accumulate(c.begin(), c.end(), typename Container::value_type()); } constexpr std::array<pll, 4> dx4{{{1ll, 0ll}, {0ll, 1ll}, {-1ll, 0ll}, {0ll, -1ll}}}; constexpr std::array<pll, 8> dx8{ {{1ll, 0ll}, {1ll, 1ll}, {0ll, 1ll}, {-1ll, 1ll}, {-1ll, 0ll}, {-1ll, -1ll}, {0ll, -1ll}, {1ll, -1ll}}}; template<class F> struct rec { F f; rec(F &&f_) noexcept(noexcept(F(std::forward<F>(f_)))) : f(std::forward<F>(f_)) {} template<class... Args> auto operator()(Args &&...args) const noexcept(noexcept(f(*this, std::forward<Args>(args)...))) { return f(*this, std::forward<Args>(args)...); } }; template<class T, class U> constexpr std::pair<T, U> operator+(std::pair<T, U> p, const std::pair<T, U> &q) { p+= q; return p; } template<class T, class U> constexpr std::pair<T, U> &operator+=(std::pair<T, U> &p, const std::pair<T, U> &q) { p.first+= q.first; p.second+= q.second; return p; } template<class T, class U> constexpr std::pair<T, U> operator-(std::pair<T, U> p, const std::pair<T, U> &q) { p-= q; return p; } template<class T, class U> constexpr std::pair<T, U> &operator-=(std::pair<T, U> &p, const std::pair<T, U> &q) { p.first-= q.first; p.second-= q.second; return p; } template<class T, class U> constexpr std::pair<T, U> operator+(const std::pair<T, U> &p) { return p; } template<class T, class U> constexpr std::pair<T, U> operator-(const std::pair<T, U> &p) { return {-p.first, -p.second}; } inline i128 parse(str s) { std::reverse(s.begin(), s.end()); i128 ret= 0; bool minus= false; if(s.back() == '-') { minus= true; s.pop_back(); } while(!s.empty()) { if('0' <= s.back() && s.back() <= '9') { ret= ret * 10 + s.back() - '0'; s.pop_back(); } else { break; } } std::reverse(s.begin(), s.end()); if(minus) ret*= -1; return ret; } inline str to_string(i128 val) { str ret= ""s; bool minus= false; if(val < 0) { minus= true; val*= -1; } do { char digit= static_cast<char>(48 + val % 10); ret+= digit; val/= 10; } while(val != 0); if(minus) ret+= "-"s; std::reverse(ret.begin(), ret.end()); return ret; } inline str to_string(u128 val) { str ret= ""s; do { char digit= static_cast<char>(48 + val % 10); ret+= digit; val/= 10; } while(val != 0); std::reverse(ret.begin(), ret.end()); return ret; } #define CHR(...) \ char __VA_ARGS__; \ input(__VA_ARGS__) #define STR(...) \ str __VA_ARGS__; \ input(__VA_ARGS__) #define LL(...) \ ll __VA_ARGS__; \ input(__VA_ARGS__) #define LD(...) \ ld __VA_ARGS__; \ input(__VA_ARGS__) #define I128(...) \ i128 __VA_ARGS__; \ input(__VA_ARGS__) #define VEC(name, size, ...) \ vec<__VA_ARGS__> name(size); \ input(name) #define VV(name, h, w, ...) \ std::vector name((h), vec<__VA_ARGS__>(w)); \ input(name) #ifdef _WIN32 int inline getchar_unlocked() { return _getchar_nolock(); } void inline putc_unlocked(char c, FILE *stream) { _putc_nolock(c, stream); } #endif struct in { in()= delete; static inline void input_impl(char &a) { do { a= static_cast<char>(getchar_unlocked()); } while(a == ' ' || a == '\n'); } static inline void input_impl(str &a) { a= ""s; int c; do { c= getchar_unlocked(); } while(c == ' ' || c == '\n'); do { a+= static_cast<char>(c); c= getchar_unlocked(); } while(c != EOF && c != ' ' && c != '\n'); std::ungetc(c, stdin); } template< class T, std::enable_if_t< std::is_integral_v<T> || std::is_same_v<i128, T> || std::is_same_v<u128, T>, std::nullptr_t> = nullptr> static inline void input_impl(T &a) { a= 0; int c; do { c= getchar_unlocked(); } while(c == ' ' || c == '\n'); bool minus= 0; if(c == '-') { minus= 1; c= getchar_unlocked(); } if(c < '0' || '9' < c) { std::ungetc(c, stdin); return; } do { (a*= 10)+= c - 48; c= getchar_unlocked(); } while('0' <= c && c <= '9'); std::ungetc(c, stdin); if(minus) a*= -1; } static inline void input_impl(float &a) { std::scanf("%f", &a); } static inline void input_impl(double &a) { std::scanf("%lf", &a); } static inline void input_impl(ld &a) { std::scanf("%Lf", &a); } template<class T1, class T2> static inline void input_impl(std::pair<T1, T2> &a) { input_impl(a.first); input_impl(a.second); } template<class T, std::enable_if_t<is_tuple_v<T>, std::nullptr_t> = nullptr> static inline void input_impl(T &a) { if constexpr(std::tuple_size_v<T> != 0) { input_impl_tuple_impl(a, std::make_index_sequence<std::tuple_size_v<T>>()); } } template<class T, std::enable_if_t<has_iterator<T>, std::nullptr_t> = nullptr> static inline void input_impl(T &a) { for(auto &&e: a) { input_impl(e); } } private: template<class T, std::size_t... Seq> static inline void input_impl_tuple_impl(T &A, std::index_sequence<Seq...>) { using swallow= std::initializer_list<int>; swallow{(input_impl(std::get<Seq>(A)), 0)...}; } }; template<class... Args> inline void input(Args &...args) { using swallow= std::initializer_list<int>; swallow{(in::input_impl(args), 0)...}; } struct out { private: template<class, class= std::void_t<>> struct has_print_impl : std::false_type {}; template<class T> struct has_print_impl<T, std::void_t<decltype(std::declval<T>().print_impl(0))>> : std::true_type {}; template<class T> static constexpr bool has_print_impl_v= has_print_impl<T>::value; public: out()= delete; static inline void print_impl(FILE *stream, const char *const &a) { std::fputs(a, stream); } template<class T> static inline void print_impl(FILE *stream, T *const &a) { std::fprintf(stream, "%p", a); } static inline void print_impl(FILE *stream, const char &a) { putc_unlocked(a, stream); } static inline void print_impl(FILE *stream, const str &a) { std::fputs(a.c_str(), stream); } template<std::size_t length> static inline void print_impl(FILE *stream, const char (&a)[length]) { std::fputs(a, stream); } static inline void print_impl(FILE *stream, const bool &a) { putc_unlocked('0' + a, stream); } static inline void print_impl(FILE *stream, const signed char &a) { std::fprintf(stream, "%hhd", a); } static inline void print_impl(FILE *stream, const short &a) { std::fprintf(stream, "%hd", a); } static inline void print_impl(FILE *stream, const int &a) { std::fprintf(stream, "%d", a); } static inline void print_impl(FILE *stream, const long &a) { std::fprintf(stream, "%ld", a); } static inline void print_impl(FILE *stream, const ll &a) { std::fprintf(stream, "%lld", a); } static inline void print_impl(FILE *stream, const i128 &a) { std::fputs(to_string(a).c_str(), stream); } static inline void print_impl(FILE *stream, const unsigned char &a) { std::fprintf(stream, "%hhu", a); } static inline void print_impl(FILE *stream, const unsigned short &a) { std::fprintf(stream, "%hu", a); } static inline void print_impl(FILE *stream, const unsigned int &a) { std::fprintf(stream, "%u", a); } static inline void print_impl(FILE *stream, const unsigned long &a) { std::fprintf(stream, "%lu", a); } static inline void print_impl(FILE *stream, const ull &a) { std::fprintf(stream, "%llu", a); } static inline void print_impl(FILE *stream, const u128 &a) { std::fputs(to_string(a).c_str(), stream); } static inline void print_impl(FILE *stream, const float &a) { std::fprintf(stream, "%.15f", a); } static inline void print_impl(FILE *stream, const double &a) { std::fprintf(stream, "%.15lf", a); } static inline void print_impl(FILE *stream, const ld &a) { std::fprintf(stream, "%.15Lf", a); } static inline void print_impl(FILE *stream, const std::type_info &a) { std::fputs(a.name(), stream); } template<class T1, class T2> static inline void print_impl(FILE *stream, const std::pair<T1, T2> &a) { print_impl(stream, a.first); putc_unlocked(' ', stream); print_impl(stream, a.second); } #if __has_include(<atcoder/modint>) || defined(MOD_EXPAND) static inline void print_impl(FILE *stream, const mint &a) { std::fprintf(stream, "%u", a.val()); } #endif template<class T, std::enable_if_t<is_tuple_v<T>, std::nullptr_t> = nullptr> static inline void print_impl(FILE *stream, const T &a) { if constexpr(std::tuple_size_v<T> != 0) { print_impl_tuple_impl( stream, a, std::make_index_sequence<std::tuple_size_v<T> - 1>()); } } template<class T, std::enable_if_t<has_iterator<T>, std::nullptr_t> = nullptr> static inline void print_impl(FILE *stream, const T &a) { if(a.begin() == a.end()) return; print_impl(stream, *(a.begin())); if constexpr(!has_value_type<T> || !has_iterator<typename T::value_type>) { std::for_each(std::next(a.begin()), a.end(), [stream](const auto &value) { putc_unlocked(' ', stream); print_impl(stream, value); }); } else if constexpr( !has_value_type<typename T::value_type> || !has_iterator<typename T::value_type::value_type>) { std::for_each(std::next(a.begin()), a.end(), [stream](const auto &value) { putc_unlocked('\n', stream); print_impl(stream, value); }); } else { std::for_each(std::next(a.begin()), a.end(), [stream](const auto &value) { putc_unlocked('\n', stream); putc_unlocked('\n', stream); print_impl(stream, value); }); } } template<class T, std::enable_if_t<has_print_impl_v<T>, std::nullptr_t> = nullptr> static inline void print_impl(FILE *stream, const T &a) { a.print_impl(stream); } static inline void print_impl(...) { print_impl(stderr, "not supported"); } private: template<class T, std::size_t... Seq> static inline void print_impl_tuple_impl(FILE *stream, const T &A, std::index_sequence<Seq...>) { print_impl(stream, std::get<0>(A)); using swallow= std::initializer_list<int>; swallow{ (putc_unlocked(' ', stream), print_impl(stream, std::get<Seq + 1>(A)), 0)...}; } }; inline void print() { putc_unlocked('\n', stdout); } template<class Head, class... Tail> inline void print(Head &&H, Tail &&...T) { out::print_impl(stdout, std::forward<Head>(H)); using swallow= std::initializer_list<int>; swallow{ (putc_unlocked(' ', stdout), out::print_impl(stdout, std::forward<Tail>(T)), 0)...}; putc_unlocked('\n', stdout); } template<class... Args> inline void print_flush(Args &&...args) { print(std::forward<Args>(args)...); std::fflush(stdout); } template<class... Args> inline void debug([[maybe_unused]] Args &&...args) { #ifdef _DEBUG print_flush(std::forward<Args>(args)...); #endif } inline void print_err() { putc_unlocked('\n', stderr); } template<class Head, class... Tail> inline void print_err(Head &&H, Tail &&...T) { out::print_impl(stderr, std::forward<Head>(H)); using swallow= std::initializer_list<int>; swallow{ (putc_unlocked(' ', stderr), out::print_impl(stderr, std::forward<Tail>(T)), 0)...}; putc_unlocked('\n', stderr); } [[noreturn]] inline void flush_exit() { std::fflush(stdout); std::_Exit(0); } #pragma endregion /* modpow */ /* O(logN) */ /* define 0^0 as 1 */ /* constraint : 0 <= a */ /* 0 <= b */ /* 0 <= m */ constexpr ll modpow(ull a, ull b, ull m= mod) { ull res= 1ull; if(m < (1ull << 32)) { for(a%= m; b; a= a * a % m, b>>= 1) { if(b & 1ull) res= res * a % m; } return res % m; } else { for(; b; a= static_cast<ull>(static_cast<u128>(a) * a % m), b>>= 1) { if(b & 1ull) res= static_cast<ull>(static_cast<u128>(res) * a % m); } return res % m; } } /* pow */ /* O(logN) */ ll bipow(ll a, ll b) { ll res= 1; for(; b; a= a * a, b>>= 1) { if(b & 1) res= res * a; } return res; } signed main() { setvbuf(stdin, nullptr, _IOFBF, 1 << 17); setvbuf(stdout, nullptr, _IOFBF, 1 << 17); LL(M, D, N, B); if(N == 0) { M%= B; if(M == 10) { print("A"); } else { print(M); } return 0; } if(M == 0) { M= 1; N--; if(N == 0) { print(1); return 0; } } ll phi= 0; ll phiphi= 1; ll phiphiphi= 1; if(B == 2 || B == 3 || B == 5 || B == 7 || B == 11) { phi= B - 1; } else if(B == 4 || B == 6) { phi= 2; } else if(B == 9) { phi= 6; } else { phi= 4; } if(phi == 2 || phi == 1) { phiphi= 1; } else if(phi == 4 || phi == 6) { phiphi= 2; } else if(phi == 10) { phiphi= 4; } if(phiphi == 2 || phiphi == 1) { phiphiphi= 1; } else if(phi == 4) { phiphiphi= 2; } vector table(B, vector(phi, vector(phiphi, vec<array<ll, 4>>(phiphiphi)))); vector walk(B, vector(phi, vector(phiphi, vec<ll>(phiphiphi, -1)))); debug(B, phi, phiphi, phiphiphi); REP(i, B) { REP(j, phi) { REP(k, phiphi) { REP(l, phiphiphi) { table[i][j][k][l]= { modpow(i + D, j + phi, B), modpow(j + D, k + phiphi, phi), modpow(k + D, l + phiphiphi, phiphi), (l + D) % phiphiphi}; } } } } array<ll, 4> now= {M % B, M % phi, M % phiphi, M % phiphiphi}; if(M <= 10) { now= { modpow(now[0] + D, M, B), modpow(now[1] + D, M, phi), modpow(now[2] + D, M, phiphi), modpow(now[3] + D, M, phiphiphi)}; N--; } ll count= 0; if(N == 0) { if(now[0] == 10) { print("A"); } else { print(now[0]); } return 0; } while(walk[now[0]][now[1]][now[2]][now[3]] == -1) { debug(now); walk[now[0]][now[1]][now[2]][now[3]]= count; if(N == 0) { if(now[0] == 10) { print("A"); } else { print(now[0]); } return 0; } now= table[now[0]][now[1]][now[2]][now[3]]; N--; count++; } ll size= count - walk[now[0]][now[1]][now[2]][now[3]]; N%= size; while(1) { if(N == 0) { if(now[0] == 10) { print("A"); } else { print(now[0]); } return 0; } now= table[now[0]][now[1]][now[2]][now[3]]; N--; } }