This documentation is automatically generated by online-judge-tools/verification-helper
#include "src/math/pow_mod.hpp"
ll pow_mod(ll x, ll n, ll mod)
$x^{n}$ を $\mathrm{mod}$ で割った余りを返します.
制約
計算量
#pragma once
#include "../template/template.hpp"
constexpr long long pow_mod(long long x, long long n, const long long mod) {
assert(n >= 0 and mod >= 1);
x %= mod;
if(x < 0) x += mod;
long long res = 1;
while(n > 0) {
if(n & 1) res = res * x % mod;
x = x * x % mod;
n >>= 1;
}
return res;
}
#line 2 "src/template/template.hpp"
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using P = pair<long long, long long>;
#define rep(i, a, b) for(long long i = (a); i < (b); ++i)
#define rrep(i, a, b) for(long long i = (a); i >= (b); --i)
constexpr long long inf = 4e18;
struct SetupIO {
SetupIO() {
ios::sync_with_stdio(0);
cin.tie(0);
cout << fixed << setprecision(30);
}
} setup_io;
#line 3 "src/math/pow_mod.hpp"
constexpr long long pow_mod(long long x, long long n, const long long mod) {
assert(n >= 0 and mod >= 1);
x %= mod;
if(x < 0) x += mod;
long long res = 1;
while(n > 0) {
if(n & 1) res = res * x % mod;
x = x * x % mod;
n >>= 1;
}
return res;
}