結果

問題 No.1140 EXPotentiaLLL!
ユーザー mmn15277198mmn15277198
提出日時 2021-06-07 22:08:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,558 ms / 2,000 ms
コード長 455 bytes
コンパイル時間 1,599 ms
コンパイル使用メモリ 168,232 KB
実行使用メモリ 24,812 KB
最終ジャッジ日時 2024-11-25 04:15:18
合計ジャッジ時間 17,797 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,507 ms
24,760 KB
testcase_01 AC 1,479 ms
24,768 KB
testcase_02 AC 1,558 ms
24,792 KB
testcase_03 AC 1,204 ms
24,672 KB
testcase_04 AC 1,019 ms
24,744 KB
testcase_05 AC 1,402 ms
24,788 KB
testcase_06 AC 1,308 ms
24,812 KB
testcase_07 AC 1,506 ms
24,736 KB
testcase_08 AC 367 ms
24,680 KB
testcase_09 AC 369 ms
24,660 KB
testcase_10 AC 460 ms
24,788 KB
testcase_11 AC 364 ms
24,672 KB
testcase_12 AC 358 ms
24,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const int MX = 5500000;
int main() {
  vector<int> prime(MX , 0);
  for (int i = 2; i < MX; i++) {
    for (int j = i; j < MX; j += i) {
      prime[j]++;
    }
  }
  int t;
  cin >> t;
  while (t--) {
    long long a , p;
    cin >> a >> p;
    if (prime[p] > 1 || p == 1) {
      cout << -1 << endl;
    } else {
      if (a % p == 0) cout << 0 << endl;
      else cout << 1 << endl;
    }
  }
  return 0;
}
0