結果

問題 No.1140 EXPotentiaLLL!
ユーザー onsen_manjuuuonsen_manjuuu
提出日時 2020-08-01 00:56:28
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 573 bytes
コンパイル時間 1,527 ms
コンパイル使用メモリ 165,752 KB
実行使用メモリ 12,852 KB
最終ジャッジ日時 2023-09-21 04:40:42
合計ジャッジ時間 11,405 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 907 ms
12,560 KB
testcase_01 AC 903 ms
12,620 KB
testcase_02 AC 928 ms
12,608 KB
testcase_03 AC 758 ms
12,632 KB
testcase_04 AC 586 ms
12,824 KB
testcase_05 AC 897 ms
12,728 KB
testcase_06 WA -
testcase_07 AC 915 ms
12,632 KB
testcase_08 AC 96 ms
12,564 KB
testcase_09 AC 102 ms
12,796 KB
testcase_10 AC 101 ms
12,628 KB
testcase_11 WA -
testcase_12 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;
using ll = long long;

int MAX = 1e7;
vector<char> prime(MAX+1);
void f() {
    for(int i = 2; i <= MAX; i++) {
        if(prime[i])continue;
        for(int j = i + i; j <= MAX; j += i)prime[j] = true;
    }
}


void solve() {

    ll a, p;
    cin >> a >> p;
    if(prime[p]) {
        cout << -1 << endl;
    }
    else if(a % p == 0) {
        cout << 0 << endl;
    } else {
        cout << 1 << endl;
    }
}

int main()
{
    cin.tie(0);ios::sync_with_stdio(0);
    f();
    int T;
    cin >> T;
    while(T--)solve();
}
0