結果

問題 No.1140 EXPotentiaLLL!
ユーザー zezerozezero
提出日時 2021-11-22 21:06:11
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 727 bytes
コンパイル時間 3,126 ms
コンパイル使用メモリ 168,188 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-24 10:12:37
合計ジャッジ時間 16,572 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,268 ms
6,812 KB
testcase_01 AC 1,265 ms
6,820 KB
testcase_02 AC 1,263 ms
6,940 KB
testcase_03 AC 939 ms
6,940 KB
testcase_04 AC 730 ms
6,940 KB
testcase_05 AC 1,115 ms
6,944 KB
testcase_06 WA -
testcase_07 AC 1,220 ms
6,940 KB
testcase_08 AC 108 ms
6,940 KB
testcase_09 AC 109 ms
6,940 KB
testcase_10 AC 107 ms
6,940 KB
testcase_11 WA -
testcase_12 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <utility>
#include <map>
#include <set>
#include <queue>
#include <iomanip>
#include <cstring>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
typedef long long ll;
#define rep(i,n) for (int i = 0; i < int(n);i++)

int main(){
  vector<bool> prime(5000002,true);
  prime[2] = true;
  for (int i = 2; i <= 5000000;i++){
    for (int j = i+i; j <= 5000000;j+=i){
      prime[j] = false;
    }
  }
  int t;
  cin >> t;
  while(t--){
    ll a,p;
    cin >> a >> p;
    if (prime[p]){
      if (a%p == 0){
        cout << 0 << endl;
      }
      else cout << 1 << endl;
    }
    else cout << -1 << endl;
  } 
  return 0;
}
0