結果

問題 No.1140 EXPotentiaLLL!
ユーザー ShibuyapShibuyap
提出日時 2020-07-31 21:32:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,468 ms / 2,000 ms
コード長 1,272 bytes
コンパイル時間 2,143 ms
コンパイル使用メモリ 201,240 KB
実行使用メモリ 48,100 KB
最終ジャッジ日時 2023-09-20 21:54:17
合計ジャッジ時間 16,870 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,399 ms
46,324 KB
testcase_01 AC 1,408 ms
47,812 KB
testcase_02 AC 1,419 ms
48,076 KB
testcase_03 AC 1,130 ms
46,324 KB
testcase_04 AC 929 ms
46,440 KB
testcase_05 AC 1,343 ms
46,252 KB
testcase_06 AC 1,319 ms
48,100 KB
testcase_07 AC 1,468 ms
46,256 KB
testcase_08 AC 229 ms
46,324 KB
testcase_09 AC 231 ms
47,344 KB
testcase_10 AC 233 ms
47,220 KB
testcase_11 AC 231 ms
46,812 KB
testcase_12 AC 220 ms
46,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (n); ++i)
#define rrep(i,n) for(int i = 1; i <= (n); ++i)
#define drep(i,n) for(int i = (n)-1; i >= 0; --i)
#define srep(i,s,t) for (int i = s; i < t; ++i)
using namespace std;
typedef long long int ll;
typedef pair<int,int> P;
#define yn {puts("Yes");}else{puts("No");}


/*
    Max_Prime以下の素数をprimes[]に格納
*/

const int Max_Prime = 10000000;
int tmp_primes[Max_Prime];
vector<int> primes;

void PrimeInit() {
    rep(i,Max_Prime)tmp_primes[i] = 1;
    tmp_primes[0] = 0;
    tmp_primes[1] = 0;

    rep(i,Max_Prime){
        if(tmp_primes[i] == 0)continue;
        int j = 2;
        while(i * j < Max_Prime){
            tmp_primes[i*j] = 0;
            j++;
        }
    }
    
    rep(i,Max_Prime){
        if(tmp_primes[i])primes.push_back(i);
    }
}


int main() {
    PrimeInit();
    int T;
    cin >> T;
    rep(_,T){
        ll a, p;
        cin >> a >> p;
        auto ite = lower_bound(primes.begin(), primes.end(), p);
        if(*ite != p){
            cout << -1 << endl;
            continue;
        }else{
            if(a%p==0){
                cout << 0 << endl;
                continue;
            }
            cout << 1 << endl;
        }

    }
    return 0;
}
 
 
0