結果

問題 No.1140 EXPotentiaLLL!
ユーザー Hydrogen332Hydrogen332
提出日時 2024-10-27 10:33:58
言語 C++17
(gcc 12.3.0 + boost 1.83.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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 611 ms
6,820 KB
testcase_01 AC 563 ms
6,820 KB
testcase_02 AC 604 ms
6,820 KB
testcase_03 AC 354 ms
6,816 KB
testcase_04 AC 272 ms
6,820 KB
testcase_05 AC 445 ms
6,816 KB
testcase_06 AC 406 ms
6,816 KB
testcase_07 AC 582 ms
6,816 KB
testcase_08 AC 32 ms
6,816 KB
testcase_09 AC 32 ms
6,820 KB
testcase_10 AC 32 ms
6,816 KB
testcase_11 AC 32 ms
6,816 KB
testcase_12 AC 32 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

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