結果
問題 | No.1140 EXPotentiaLLL! |
ユーザー | pm |
提出日時 | 2020-07-31 23:19:20 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,482 bytes |
コンパイル時間 | 1,683 ms |
コンパイル使用メモリ | 178,760 KB |
実行使用メモリ | 125,880 KB |
最終ジャッジ日時 | 2024-07-06 21:29:08 |
合計ジャッジ時間 | 7,780 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | AC | 1,043 ms
6,940 KB |
testcase_02 | RE | - |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
ソースコード
#pragma GCC optimize("Ofast") #include <bits/stdc++.h> using namespace std; using ll = long long; using pii = pair<int, int>; using pll = pair<long long, long long>; constexpr char ln = '\n'; constexpr long long MOD = 1000000007LL; constexpr long long INF = 1001001001LL; constexpr long long LINF = 1001001001001001001; #define all(x) (x).begin(),(x).end() #define rep(i,n) for(int i=0;i<(n);i++) #define rept(i, j, n) for(int i=(j); i<(n); i++) template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } bool is_prime(long long N) { if (N == 1) return false; for (long long i = 2; i * i <= N; ++i) { if (N % i == 0) return false; } return true; } int main(){ int T; cin >> T; rep(test, T){ ll A, P; cin >> A >> P; if(is_prime(P)){ vector<ll> v, memo(P); //memo:格納フラグ ll index = 1, num = A % P; while(1){ if(memo[num])break; v.push_back(num); memo[num] = true; index++; num = (num * A) % P; } ll cnt = 0, siz = v.size(); for(int i=P; i>=1; i--){ cnt = (cnt + i) % siz; } cnt = (cnt + siz -1) % siz; cout << v[cnt] << ln; }else{ cout << -1 << ln; } } }