結果

問題 No.1140 EXPotentiaLLL!
ユーザー SSRSSSRS
提出日時 2020-07-31 21:24:55
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 530 bytes
コンパイル時間 1,309 ms
コンパイル使用メモリ 168,348 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-06 16:12:58
合計ジャッジ時間 8,383 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int T;
  cin >> T;
  vector<bool> prime(5000001, true);
  prime[0] = false;
  prime[1] = false;
  for (int i = 2; i <= 5000000; i++){
    if (prime[i]){
      for (int j = i * 2; j <= 5000000; j += i){
        prime[j] = false;
      }
    }
  }
  for (int i = 0; i < T; i++){
    long long A;
    int P;
    cin >> A >> P;
    if (!prime[P]){
      cout << -1 << endl;
    } else {
      cout << 1 << endl;
    }
  }
}
0