結果

問題 No.1140 EXPotentiaLLL!
ユーザー boutarouboutarou
提出日時 2020-08-02 13:01:58
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,097 ms / 2,000 ms
コード長 1,027 bytes
コンパイル時間 1,606 ms
コンパイル使用メモリ 172,164 KB
実行使用メモリ 9,728 KB
最終ジャッジ日時 2024-07-18 11:42:22
合計ジャッジ時間 11,616 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,067 ms
9,716 KB
testcase_01 AC 1,047 ms
9,712 KB
testcase_02 AC 1,097 ms
9,728 KB
testcase_03 AC 755 ms
8,448 KB
testcase_04 AC 588 ms
7,424 KB
testcase_05 AC 912 ms
9,536 KB
testcase_06 AC 875 ms
9,472 KB
testcase_07 AC 1,046 ms
9,728 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
*    author:  boutarou
*    created: 02.08.2020 12:43:46
**/

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

long long gcd(long long a, long long b) { return b ? gcd(b, a % b) : a;}

int main() {
    int t;
    cin >> t;
    vector<ll> a(t);
    vector<int> p(t);
    int max_p = 1;
    rep(i, t) cin >> a[i] >> p[i];
    rep(i, t) max_p = max(max_p, p[i]);
    vector<bool> check(max_p + 1, false);
    check[1] = true;
    for (int i = 2; i <= max_p; i++) {
        if (check[i]) continue;
        for(int j = 2 * i; j <= max_p; j += i) {
            check[j] = true;
        }
    }
    rep(i, t) {
        if (!check[p[i]]) {
            if (a[i] == 1 && p[i] == 1) cout << 0 << endl;
            else if (a[i] == 1) cout << 1 << endl;
            else if (a[i] % (ll)p[i] == 0 || (ll)p[i] % a[i] == 0) cout << 0 << endl;
            else cout << 1 << endl;
        }
        else cout << -1 << endl;
    }
    return 0;
}
0