結果
| 問題 | No.1140 EXPotentiaLLL! |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-05-29 18:19:35 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 596 bytes |
| コンパイル時間 | 1,585 ms |
| コンパイル使用メモリ | 167,856 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-11-08 01:19:55 |
| 合計ジャッジ時間 | 13,603 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 9 WA * 3 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define rep(i, n) for (int i = 0; i < (n); i++)
#define P pair<int, int>
int main() {
vector<bool> memo(5000005, true);
for (int i = 2; i <= 5000000; i++) {
if (memo[i]) {
for (int j = i*2; j <= 5000000; j += i) memo[j] = false;
}
}
auto isPrime = [&](int x) {
return memo[x];
};
int t;
cin >> t;
rep(ti, t) {
ll a;
int p;
cin >> a >> p;
if (isPrime(p)) {
if (a%p == 0) cout << 0 << endl;
else cout << 1 << endl;
} else {
cout << -1 << endl;
}
}
}