This documentation is automatically generated by competitive-verifier/competitive-verifier
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/tetration_mod
#include "../../template/template.hpp"
#include "../../math/combinatorics/mod-tetration.hpp"
int main() {
int T;
cin >> T;
while(T--) {
int a, b, m;
cin >> a >> b >> m;
cout << mod_tetration< int64_t >(a, b, m) % m << "\n";
}
}
#line 1 "test/verify/yosupo-tetration-mod.test.cpp"
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/tetration_mod
#line 1 "template/template.hpp"
#include <bits/stdc++.h>
#if __has_include(<atcoder/all>)
#include <atcoder/all>
#endif
using namespace std;
using int64 = long long;
const int64 infll = (1LL << 62) - 1;
const int inf = (1 << 30) - 1;
struct IoSetup {
IoSetup() {
cin.tie(nullptr);
ios::sync_with_stdio(false);
cout << fixed << setprecision(10);
cerr << fixed << setprecision(10);
}
} iosetup;
template <typename T1, typename T2>
ostream &operator<<(ostream &os, const pair<T1, T2> &p) {
os << p.first << " " << p.second;
return os;
}
template <typename T1, typename T2>
istream &operator>>(istream &is, pair<T1, T2> &p) {
is >> p.first >> p.second;
return is;
}
template <typename T>
ostream &operator<<(ostream &os, const vector<T> &v) {
for (int i = 0; i < (int)v.size(); i++) {
os << v[i] << (i + 1 != v.size() ? " " : "");
}
return os;
}
template <typename T>
istream &operator>>(istream &is, vector<T> &v) {
for (T &in : v) is >> in;
return is;
}
template <typename T1, typename T2>
inline bool chmax(T1 &a, T2 b) {
return a < b && (a = b, true);
}
template <typename T1, typename T2>
inline bool chmin(T1 &a, T2 b) {
return a > b && (a = b, true);
}
template <typename T = int64>
vector<T> make_v(size_t a) {
return vector<T>(a);
}
template <typename T, typename... Ts>
auto make_v(size_t a, Ts... ts) {
return vector<decltype(make_v<T>(ts...))>(a, make_v<T>(ts...));
}
template <typename T, typename V>
typename enable_if<is_class<T>::value == 0>::type fill_v(T &t, const V &v) {
t = v;
}
template <typename T, typename V>
typename enable_if<is_class<T>::value != 0>::type fill_v(T &t, const V &v) {
for (auto &e : t) fill_v(e, v);
}
template <typename F>
struct FixPoint : F {
explicit FixPoint(F &&f) : F(std::forward<F>(f)) {}
template <typename... Args>
decltype(auto) operator()(Args &&...args) const {
return F::operator()(*this, std::forward<Args>(args)...);
}
};
template <typename F>
inline decltype(auto) MFP(F &&f) {
return FixPoint<F>{std::forward<F>(f)};
}
#line 4 "test/verify/yosupo-tetration-mod.test.cpp"
#line 1 "math/number-theory/euler-phi.hpp"
/**
* @brief Euler's Phi(オイラーのφ関数)
*
*/
template <typename T>
T euler_phi(T n) {
T ret = n;
for (T i = 2; i * i <= n; i++) {
if (n % i == 0) {
ret -= ret / i;
while (n % i == 0) n /= i;
}
}
if (n > 1) ret -= ret / n;
return ret;
}
#line 1 "math/combinatorics/mod-pow.hpp"
/**
* @brief Mod Pow(べき乗)
*
*/
template <typename T>
T mod_pow(T x, int64_t n, const T &p) {
T ret = 1;
while (n > 0) {
if (n & 1) (ret *= x) %= p;
(x *= x) %= p;
n >>= 1;
}
return ret % p;
}
#line 3 "math/combinatorics/mod-tetration.hpp"
/**
* @brief Mod Tetration(テトレーション)
*
*/
template <typename T>
T mod_tetration(const T &a, const T &b, const T &m) {
if (m == 1) return 0;
if (a == 0) return !(b & 1);
if (b == 0) return 1;
if (b == 1) return a % m;
if (b == 2) return mod_pow(a, a, m);
auto phi = euler_phi(m);
auto tmp = mod_tetration(a, b - 1, phi);
if (tmp == 0) tmp += phi;
return mod_pow(a, tmp, m);
}
#line 6 "test/verify/yosupo-tetration-mod.test.cpp"
int main() {
int T;
cin >> T;
while(T--) {
int a, b, m;
cin >> a >> b >> m;
cout << mod_tetration< int64_t >(a, b, m) % m << "\n";
}
}
Env | Name | Status | Elapsed | Memory |
---|---|---|---|---|
g++ | 2_3_32_00 | AC | 6 ms | 3 MB |
g++ | example_00 | AC | 5 ms | 3 MB |
g++ | example_01 | AC | 5 ms | 3 MB |
g++ | max_00 | AC | 17 ms | 3 MB |
g++ | max_01 | AC | 17 ms | 3 MB |
g++ | max_02 | AC | 17 ms | 3 MB |
g++ | max_1000000000_00 | AC | 9 ms | 3 MB |
g++ | max_1000000000_01 | AC | 9 ms | 3 MB |
g++ | max_1000000000_02 | AC | 9 ms | 3 MB |
g++ | max_998244353_00 | AC | 78 ms | 3 MB |
g++ | max_998244353_01 | AC | 78 ms | 3 MB |
g++ | max_998244353_02 | AC | 78 ms | 3 MB |
g++ | random_00 | AC | 13 ms | 3 MB |
g++ | random_01 | AC | 7 ms | 3 MB |
g++ | random_02 | AC | 6 ms | 3 MB |
g++ | random_03 | AC | 7 ms | 3 MB |
g++ | random_04 | AC | 11 ms | 3 MB |
g++ | small_00 | AC | 5 ms | 3 MB |
g++ | small_ab_00 | AC | 11 ms | 3 MB |
clang++ | 2_3_32_00 | AC | 6 ms | 3 MB |
clang++ | example_00 | AC | 5 ms | 3 MB |
clang++ | example_01 | AC | 5 ms | 3 MB |
clang++ | max_00 | AC | 16 ms | 3 MB |
clang++ | max_01 | AC | 16 ms | 3 MB |
clang++ | max_02 | AC | 16 ms | 3 MB |
clang++ | max_1000000000_00 | AC | 9 ms | 3 MB |
clang++ | max_1000000000_01 | AC | 9 ms | 3 MB |
clang++ | max_1000000000_02 | AC | 9 ms | 3 MB |
clang++ | max_998244353_00 | AC | 69 ms | 3 MB |
clang++ | max_998244353_01 | AC | 69 ms | 3 MB |
clang++ | max_998244353_02 | AC | 69 ms | 3 MB |
clang++ | random_00 | AC | 13 ms | 3 MB |
clang++ | random_01 | AC | 7 ms | 3 MB |
clang++ | random_02 | AC | 6 ms | 3 MB |
clang++ | random_03 | AC | 7 ms | 3 MB |
clang++ | random_04 | AC | 11 ms | 3 MB |
clang++ | small_00 | AC | 5 ms | 3 MB |
clang++ | small_ab_00 | AC | 10 ms | 3 MB |