結果
問題 | No.1140 EXPotentiaLLL! |
ユーザー | itohdak |
提出日時 | 2020-07-31 23:06:30 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,187 bytes |
コンパイル時間 | 1,953 ms |
コンパイル使用メモリ | 203,496 KB |
実行使用メモリ | 16,952 KB |
最終ジャッジ日時 | 2024-07-06 20:53:56 |
合計ジャッジ時間 | 9,081 ms |
ジャッジサーバーID (参考情報) |
judge3 / 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; void find_divisor(ll N, vector<ll>& divisor) { for(int i=1; i<=sqrt(N); i++) { if(N % i == 0) divisor.push_back(i); } int n = divisor.size(); for(int i=n-1; i>=0; i--) { if(N != (ll)pow(divisor[i], 2)) divisor.push_back(N / divisor[i]); } } 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; } void solve() { ll a, p; cin >> a >> p; vector<ll> div; find_divisor(p, div); if(div.size() != 2) cout << -1 << endl; else { ll ans = a; rep(i, p) ans = modpow(ans, i+1)%p; cout << ans << endl; } } int main() { cin.tie(0); ios::sync_with_stdio(false); int t; cin >> t; while(t--) { solve(); } return 0; }