結果

問題 No.1140 EXPotentiaLLL!
ユーザー karinohitokarinohito
提出日時 2022-05-14 12:58:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,059 bytes
コンパイル時間 2,131 ms
コンパイル使用メモリ 202,496 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-22 21:49:53
合計ジャッジ時間 7,542 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 WA -
testcase_06 WA -
testcase_07 RE -
testcase_08 AC 37 ms
6,944 KB
testcase_09 AC 37 ms
6,940 KB
testcase_10 AC 37 ms
6,940 KB
testcase_11 AC 38 ms
6,944 KB
testcase_12 AC 36 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
//#include <atcoder/all>
//using namespace atcoder;
using namespace std;
using ll = int;
using vll = vector<ll>;
using vvll = vector<vll>;
using vvvll = vector<vvll>;
#define all(A) A.begin(),A.end()
#define rep(i, n) for (ll i = 0; i < (ll) (n); i++)


bool chmax(ll& p, ll q) {
    if (p < q) {
        p = q;
        return 1;
    }
    else {
        return 0;
    }
}

bool chmin(ll& p, ll q) {
    if (p > q) {
        p = q;
        return 1;
    }
    else {
        return 0;
    }
}


ll gcd(ll(a), ll(b)) {
    ll c = a;
    while (a % b != 0) {
        c = a % b;
        a = b;
        b = c;
    }
    return b;
}


int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    
    ll M=5e6+10;
    vector<bool> P(M,true);
    P[0]=P[1]=0;
    rep(i,M){
        if(P[i]){
            for(ll j=i*2;j<M;j+=i)P[j]=0;
        }
    }

    ll T;
    cin>>T;
    rep(i,T){
        ll A,N;
        cin>>A>>N;
        if(P[N]){
            cout<<(gcd(A,N)==1)<<endl;
        }
        else cout<<-1<<endl;
    }



}
0