結果
問題 | No.1140 EXPotentiaLLL! |
ユーザー | itohdak |
提出日時 | 2020-07-31 22:20:29 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,524 bytes |
コンパイル時間 | 1,816 ms |
コンパイル使用メモリ | 202,008 KB |
実行使用メモリ | 134,216 KB |
最終ジャッジ日時 | 2024-07-06 18:40:40 |
合計ジャッジ時間 | 9,396 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define ll long long #define ld long double #define REP(i,m,n) for(int i=(int)(m); i<(int)(n); i++) #define rep(i,n) REP(i,0,n) #define RREP(i,m,n) for(int i=(int)(m); i>=(int)(n); i--) #define rrep(i,n) RREP(i,n-1,0) #define all(v) v.begin(), v.end() const int inf = 1e9+7; const ll longinf = 1LL<<60; const ll mod = 1e9+7; const ld eps = 1e-10; bool is_prime(const ll n) { switch(n) { case 0: // fall-through case 1: return false; case 2: // fall-through case 3: return true; } if(n % 2 == 0) return false; if(n % 3 == 0) return false; if(n % 6 != 1 && n % 6 != 5) return false; for(ll i=5; i*i<=n; i+=6) { if(n % i == 0) return false; // 6n-1 if(n % (i+2) == 0) return false; // 6n+1 } return true; } ll modpow(ll a, ll N, ll mod=mod) { ll ans = 1; ll tmp = a; while(N > 0) { if(N % 2 == 1) (ans *= tmp) %= mod; (tmp *= tmp) %= mod; N /= 2; } return ans; } #define MAX_N 5000005 ll inv[MAX_N], fac[MAX_N], finv[MAX_N]; void make() { fac[0] = fac[1] = 1; finv[0] = finv[1] = 1; inv[1] = 1; for(int i=2; i<MAX_N; i++) { inv[i] = mod - inv[mod%i] * (mod/i) % mod; fac[i] = fac[i-1] * (ll)i % mod; finv[i] = finv[i-1] * inv[i] % mod; } } void solve() { ll a, p; cin >> a >> p; if(!is_prime(p)) cout << -1 << "\n"; else cout << modpow(a, fac[p], p) << "\n"; } int main() { cin.tie(0); ios::sync_with_stdio(false); make(); int t; cin >> t; while(t--) { solve(); } return 0; }