結果

問題 No.1140 EXPotentiaLLL!
ユーザー deuteridayodeuteridayo
提出日時 2020-12-08 12:29:32
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,866 ms / 2,000 ms
コード長 868 bytes
コンパイル時間 1,383 ms
コンパイル使用メモリ 171,276 KB
実行使用メモリ 8,656 KB
最終ジャッジ日時 2024-09-17 14:34:30
合計ジャッジ時間 22,933 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,289 ms
7,368 KB
testcase_01 AC 1,819 ms
7,368 KB
testcase_02 AC 1,295 ms
7,368 KB
testcase_03 AC 1,700 ms
7,236 KB
testcase_04 AC 1,557 ms
7,500 KB
testcase_05 AC 1,844 ms
8,272 KB
testcase_06 AC 1,866 ms
7,504 KB
testcase_07 AC 1,363 ms
8,656 KB
testcase_08 AC 1,121 ms
8,524 KB
testcase_09 AC 1,124 ms
8,520 KB
testcase_10 AC 1,126 ms
7,884 KB
testcase_11 AC 1,121 ms
7,628 KB
testcase_12 AC 1,123 ms
7,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
// #include<atcoder/all>
using namespace std;
// using namespace atcoder;
using lint = long long;
long const mod = 1e9+7;
//long const mod = 998244353;
vector<lint>pp;
void solve(){
    lint a,p;
    scanf("%lld %lld", &a, &p);
    if(!binary_search(pp.begin(),pp.end(), p)){
        cout << -1 << endl;
        return;
    }
    if(a%p==0){
        printf("%d\n",0);
        return;
    }else{
        printf("%d\n",1);
    }

    



}
int main(){
    pp.push_back(2);
    for(int i=3;i<=5000000;i+= 2){
        bool chk = true;
        for(int j = 0;j < pp.size(); j++){
            if(pp[j] > sqrt(i))break;
            if(i % pp[j] == 0){
                chk = false; 
                break;
            }
        }
        if(chk)pp.push_back(i);
    }
    lint t;
    scanf("%lld", &t);
    for(int i=0;i<t;i++){
        solve();
    }
}
0