結果
問題 | No.1140 EXPotentiaLLL! |
ユーザー | akun0716 |
提出日時 | 2020-08-01 00:04:19 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,267 bytes |
コンパイル時間 | 963 ms |
コンパイル使用メモリ | 85,212 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-06 22:26:55 |
合計ジャッジ時間 | 5,493 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 465 ms
6,816 KB |
testcase_01 | AC | 172 ms
6,944 KB |
testcase_02 | AC | 467 ms
6,944 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 474 ms
6,940 KB |
testcase_08 | AC | 31 ms
6,940 KB |
testcase_09 | AC | 31 ms
6,940 KB |
testcase_10 | AC | 32 ms
6,944 KB |
testcase_11 | AC | 32 ms
6,940 KB |
testcase_12 | AC | 32 ms
6,940 KB |
ソースコード
#include <iostream> #include<vector> #include<algorithm> #include<string> #include<map> #include<set> #include<stack> #include<queue> #include<math.h> using namespace std; typedef long long ll; #define int long long #define double long double typedef vector<int> VI; typedef pair<int, int> pii; typedef vector<pii> VP; typedef vector<string> VS; typedef priority_queue<int> PQ; template<class T>bool chmax(T &a, const T &b) { if (a < b) { a = b; return 1; } return 0; } template<class T>bool chmin(T &a, const T &b) { if (b < a) { a = b; return 1; } return 0; } #define fore(i,a) for(auto &i:a) #define REP(i,n) for(int i=0;i<n;i++) #define eREP(i,n) for(int i=0;i<=n;i++) #define FOR(i,a,b) for(int i=(a);i<(b);++i) #define eFOR(i,a,b) for(int i=(a);i<=(b);++i) #define SORT(c) sort((c).begin(),(c).end()) #define rSORT(c) sort((c).rbegin(),(c).rend()) #define LB(x,a) lower_bound((x).begin(),(x).end(),(a)) #define UB(x,a) upper_bound((x).begin(),(x).end(),(a)) #define INF 1000000000 #define LLINF 9223372036854775807 #define mod 1000000007 #define eps 1e-12 //priority_queue<int,vector<int>, greater<int> > q2; #define PN true //素数 #define NPN false //素数ではない #define MAXRR 5000010 //√MAXR以上の数を設定する //MAXRまでの整数は素数であると仮定する(ここから削る) vector<bool> PN_chk(MAXRR + 1, PN);//0indexでi番目が整数iに対応(0~MAXR) //素数を格納する配列を用意しておく vector<ll> PNs; void se() { //0と1は素数ではない PN_chk[0] = NPN; PN_chk[1] = NPN; FOR(i, 2, MAXRR) { //たどり着いた時に素数と仮定されているなら素数 if (PN_chk[i]) FOR(j, i, ll(MAXRR / i)) { PN_chk[j*i] = NPN; } } } int modpow(int a, int p,int mo) { if (p == 0) return 1; if (p % 2 == 0) { int halfP = p / 2; int half = modpow(a, halfP,mo); return half * half % mo; } else { return a * modpow(a, p - 1,mo) % mo; } } int gcd(int a, int b) {//最大公約数 if (b == 0)return a; return gcd(b, a%b); } int solve(int A, int P) { if (!PN_chk[P])return -1; return modpow(A%P, P - 1, P); } signed main() { cin.tie(0); ios::sync_with_stdio(false); se(); int t; cin >> t; while (t--) { int A, P; cin >> A >> P; cout << solve(A, P) << '\n'; } return 0; }