結果

問題 No.1140 EXPotentiaLLL!
ユーザー Gosu_HirooGosu_Hiroo
提出日時 2020-07-31 22:05:46
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 631 bytes
コンパイル時間 1,359 ms
コンパイル使用メモリ 166,948 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-06 18:16:02
合計ジャッジ時間 15,819 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 1,082 ms
5,376 KB
testcase_02 TLE -
testcase_03 AC 825 ms
6,940 KB
testcase_04 AC 645 ms
6,944 KB
testcase_05 AC 1,017 ms
6,940 KB
testcase_06 AC 985 ms
6,940 KB
testcase_07 AC 1,761 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;
bool isPrime(int n) {
    // Corner case
    if (n <= 1)
        return false;
    if (n == 2 || n == 3)return true;
    if (n % 2 == 0 || n % 3 == 0)return false;
    // Check from 2 to n-1
    for (int i = 5; i * i <= n; i += 6)
        if (n % i == 0)
            return false;
    for (int i = 7; i * i <= n; i += 6)
        if (n % i == 0)
            return false;

    return true;
}
int main() {
    int T;cin >> T;
    while(T--){
        ll A, P;cin >> A >> P;
        if(isPrime(P))cout << (!!(A%P)) << '\n';
        else cout << -1 << '\n';

    }

}
0