結果

問題 No.1140 EXPotentiaLLL!
ユーザー yakkiyakki
提出日時 2020-07-31 21:43:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,303 bytes
コンパイル時間 1,156 ms
コンパイル使用メモリ 117,280 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-06 17:13:06
合計ジャッジ時間 17,029 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<iostream>
#include<string>
#include<vector>
#include<algorithm>
#include<bitset>
#include<set>
#include<map>
#include<stack>
#include<queue>
#include<deque>
#include<list>
#include<iomanip>
#include<cmath>
#include<cstring>
#include<functional>
#include<cstdio>
#include<cstdlib>
using namespace std;

#define repr(i, a, b) for (int i = (int)(a); i < (int)(b); i++)
#define rep(i, n) repr(i, 0, n)
#define INF 2e9
#define MOD 1000000007
//#define MOD 998244353
#define LINF (long long)4e18
#define jck 3.141592

const double EPS = 1e-10;

using ll = long long;
using Pi = pair<int,int>;
using Pl = pair<ll,ll>;

bool is_prime(int num)
{
    if (num < 2) return false;
    else if (num == 2) return true;
    else if (num % 2 == 0) return false; // 偶数はあらかじめ除く

    double sqrtNum = sqrt(num);
    for (int i = 3; i <= sqrtNum; i += 2)
    {
        if (num % i == 0)
        {
            // 素数ではない
            return false;
        }
    }

    // 素数である
    return true;
}

int main(){
    int t; cin >> t;
    while(t--){
        ll a; cin >> a;
        int p; cin >> p;
        if(!is_prime(p)){
            cout << -1 << "\n";
        }
        else{
            if(a == p) cout << 0 << "\n";
            else cout << 1 << "\n";
        }
    }
} 

0