結果

問題 No.1140 EXPotentiaLLL!
ユーザー finefine
提出日時 2020-07-31 21:38:14
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 231 ms / 2,000 ms
コード長 718 bytes
コンパイル時間 1,566 ms
コンパイル使用メモリ 167,256 KB
実行使用メモリ 22,784 KB
最終ジャッジ日時 2024-07-06 16:58:15
合計ジャッジ時間 5,135 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 213 ms
22,656 KB
testcase_01 AC 221 ms
22,784 KB
testcase_02 AC 231 ms
22,784 KB
testcase_03 AC 175 ms
22,640 KB
testcase_04 AC 148 ms
22,656 KB
testcase_05 AC 208 ms
22,784 KB
testcase_06 AC 202 ms
22,656 KB
testcase_07 AC 228 ms
22,752 KB
testcase_08 AC 61 ms
22,780 KB
testcase_09 AC 59 ms
22,644 KB
testcase_10 AC 60 ms
22,760 KB
testcase_11 AC 62 ms
22,656 KB
testcase_12 AC 60 ms
22,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using ll = long long;

constexpr char newl = '\n';

template<typename T>
vector<int> sieve(T n) {
    vector<int> is_prime(n + 1, true);
    is_prime[0] = false;
    is_prime[1] = false;
    for (T i = 2; i <= n; i++) {
        if (!is_prime[i]) continue;
        // res.emplace_back(i);
        for (T j = 2 * i; j <= n; j += i) is_prime[j] = false;
    }
    return is_prime;
}

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

    auto isp = sieve(5000000);

    int t;
    cin >> t;

    for (int i = 0; i < t; i++) {
        ll a;
        int p;
        cin >> a >> p;
        cout << (isp[p] ? (a % p != 0) : -1) << newl;
    }

    return 0;
}
0