結果

問題 No.1140 EXPotentiaLLL!
ユーザー onsen_manjuuuonsen_manjuuu
提出日時 2020-08-01 01:09:28
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 911 ms / 2,000 ms
コード長 554 bytes
コンパイル時間 1,603 ms
コンパイル使用メモリ 169,020 KB
実行使用メモリ 13,056 KB
最終ジャッジ日時 2024-07-06 23:30:11
合計ジャッジ時間 11,074 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 863 ms
12,916 KB
testcase_01 AC 873 ms
12,920 KB
testcase_02 AC 911 ms
12,848 KB
testcase_03 AC 722 ms
12,948 KB
testcase_04 AC 570 ms
12,996 KB
testcase_05 AC 900 ms
12,856 KB
testcase_06 AC 841 ms
13,020 KB
testcase_07 AC 895 ms
12,952 KB
testcase_08 AC 91 ms
12,944 KB
testcase_09 AC 92 ms
13,028 KB
testcase_10 AC 99 ms
12,920 KB
testcase_11 AC 100 ms
12,816 KB
testcase_12 AC 100 ms
13,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;
using ll = long long;

int MAX = 1e7;
vector<char> prime(MAX+1);
void f() {
    prime[0] = prime[1] = 1;
    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 {
        cout << (a % p != 0) << endl;
    }
}

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