結果

問題 No.1140 EXPotentiaLLL!
ユーザー chielochielo
提出日時 2020-07-31 21:32:56
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 217 ms / 2,000 ms
コード長 641 bytes
コンパイル時間 1,320 ms
コンパイル使用メモリ 165,560 KB
実行使用メモリ 17,576 KB
最終ジャッジ日時 2024-07-06 16:43:06
合計ジャッジ時間 5,244 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 201 ms
17,576 KB
testcase_01 AC 193 ms
17,132 KB
testcase_02 AC 205 ms
17,124 KB
testcase_03 AC 161 ms
16,100 KB
testcase_04 AC 134 ms
16,264 KB
testcase_05 AC 183 ms
16,556 KB
testcase_06 AC 175 ms
16,736 KB
testcase_07 AC 217 ms
16,388 KB
testcase_08 AC 61 ms
16,452 KB
testcase_09 AC 60 ms
16,220 KB
testcase_10 AC 60 ms
16,752 KB
testcase_11 AC 59 ms
16,700 KB
testcase_12 AC 60 ms
15,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

const int maxp = 1e7 + 3;

int p[maxp], pl;
bool isc[maxp];

int main() {
    for(int i = 2; i < maxp; ++i) {
        if(!isc[i])
            p[pl++] = i;
        for(int j = 0; j < pl && i * (long long)p[j] < maxp; ++j) {
            isc[i * p[j]] = true;
            if(i % p[j] == 0)
                break;
        }
    }
    isc[0] = isc[1] = true;
    int t;
    scanf("%d", &t);
    while(t--) {
        long long a; int p;
        scanf("%lld%d", &a, &p);
        if(isc[p])
            puts("-1");
        else if(a % p != 0)
            puts("1");
        else
            puts("0");
    }
    return 0;
}
0