結果

問題 No.1140 EXPotentiaLLL!
ユーザー Hydrogen332Hydrogen332
提出日時 2024-10-27 10:33:58
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 611 ms / 2,000 ms
コード長 742 bytes
コンパイル時間 2,285 ms
コンパイル使用メモリ 204,248 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-27 10:34:08
合計ジャッジ時間 10,173 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, s, e) for (int i = (int)s; i < (int)e; ++i)
#define all(a) (a).begin(), (a).end()

int main() {
    cin.tie(nullptr);
    
    int T;
    cin >> T;
    
    vector<bool> isPrime(5e6 + 1, true);
    isPrime[0] = false;
    isPrime[1] = false;
    rep(p, 2, 5e6) {
        if (!isPrime[p]) continue;
        for (int q = p * 2; q <= 5e6; q += p) isPrime[q] = false;
    }
    
    rep(test, 0, T) {
        ll A, P;
        cin >> A >> P;
        
        if (!isPrime[P]) {
            cout << -1 << '\n';
            continue;
        }
        
        ll g = gcd(A, P);
        
        if (g != 1) cout << 0 << '\n';
        else cout << 1 << '\n';
    }
}
0