結果

問題 No.1140 EXPotentiaLLL!
ユーザー akaneakane
提出日時 2020-07-31 21:47:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 762 bytes
コンパイル時間 2,095 ms
コンパイル使用メモリ 200,012 KB
実行使用メモリ 13,824 KB
最終ジャッジ日時 2024-07-06 17:33:03
合計ジャッジ時間 9,306 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for (int i=0; i < (n); i++)
using namespace std;
using ll = long long;

int main(){
    int testcase; cin>> testcase;
    while(testcase--){
        ll A,P; cin>>A>>P;
        
        // Aが素数かどうか。
        bool pflg = false;
        if(A==1){
            cout << -1 << endl;
            pflg = true;
        }
        for(int i=2; i*i<A; i++){
            if(A%i==0){
                cout << -1 << endl;
                pflg = true;
            }
        }
        if(pflg) continue;

        // Aが素数の時
        ll rA=A;
        for(ll i=P; i>0; i--){
            for(ll j=0; j<P; j++){
                A *= rA;
                A %= P;
            }
        }
        cout << A << endl;
    }
}
0