結果

問題 No.1140 EXPotentiaLLL!
ユーザー tsugutsugutsugutsugu
提出日時 2020-08-01 20:35:10
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 203 ms / 2,000 ms
コード長 835 bytes
コンパイル時間 1,471 ms
コンパイル使用メモリ 167,752 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-08 06:16:17
合計ジャッジ時間 5,089 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 194 ms
5,248 KB
testcase_01 AC 185 ms
5,376 KB
testcase_02 AC 203 ms
5,376 KB
testcase_03 AC 142 ms
5,376 KB
testcase_04 AC 118 ms
5,376 KB
testcase_05 AC 166 ms
5,376 KB
testcase_06 AC 164 ms
5,376 KB
testcase_07 AC 198 ms
5,376 KB
testcase_08 AC 28 ms
5,376 KB
testcase_09 AC 28 ms
5,376 KB
testcase_10 AC 28 ms
5,376 KB
testcase_11 AC 27 ms
5,376 KB
testcase_12 AC 27 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

struct Sieve {
    vector<bool> isprime;
    int n;
    Sieve(int n_) : isprime(n_ + 1, true), n(n_) {};
    void build() {
        isprime[0] = isprime[1] = false;
        for(int i = 2; i <= n; i++) {
            if(isprime[i]) {
                for(int j = i + i; j <= n; j += i) {
                    isprime[j] = false;
                }
            }
        }
    }
    bool isp(int i) {
        return isprime[i];
    }
};

const int mxN = 5e6;

int main() {
    Sieve P(mxN);
    P.build();
    int t;
    cin >> t;
    while(t--) {
        ll a; int p;
        scanf("%lld%d", &a, &p);
        if(!P.isp(p)) {
            printf("%d\n", -1);
        }else{
            if(a % p == 0) printf("%d\n", 0);
            else printf("%d\n", 1);
        }
    }
}
0