結果
問題 | No.1140 EXPotentiaLLL! |
ユーザー | itohdak |
提出日時 | 2020-07-31 22:26:51 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,271 bytes |
コンパイル時間 | 2,049 ms |
コンパイル使用メモリ | 200,300 KB |
実行使用メモリ | 16,960 KB |
最終ジャッジ日時 | 2024-07-06 18:51:43 |
合計ジャッジ時間 | 9,195 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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; } void solve() { ll a, p; cin >> a >> p; if(!is_prime(p)) cout << -1 << endl; else { ll ans = 1; rep(i, p) (ans *= modpow(a, i+1, p)) %= p; cout << ans << endl; } } int main() { cin.tie(0); ios::sync_with_stdio(false); int t; cin >> t; while(t--) { solve(); } return 0; }