結果
| 問題 | No.1140 EXPotentiaLLL! |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-05-29 18:07:13 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 483 bytes |
| コンパイル時間 | 1,608 ms |
| コンパイル使用メモリ | 165,972 KB |
| 実行使用メモリ | 13,696 KB |
| 最終ジャッジ日時 | 2024-11-08 01:08:22 |
| 合計ジャッジ時間 | 10,154 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | -- * 1 |
| other | TLE * 1 -- * 11 |
ソースコード
#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>
bool isPrime(int x) {
for (int i = 2; i*i <= x; i++) {
if (x%i == 0) return false;
}
return true;
}
int main() {
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;
}
}
}