結果
| 問題 | No.1141 田グリッド |
| コンテスト | |
| ユーザー |
Shibuyap
|
| 提出日時 | 2020-07-31 21:30:45 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,272 bytes |
| コンパイル時間 | 2,410 ms |
| コンパイル使用メモリ | 194,508 KB |
| 最終ジャッジ日時 | 2025-01-12 09:12:27 |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 31 |
ソースコード
#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (n); ++i)
#define rrep(i,n) for(int i = 1; i <= (n); ++i)
#define drep(i,n) for(int i = (n)-1; i >= 0; --i)
#define srep(i,s,t) for (int i = s; i < t; ++i)
using namespace std;
typedef long long int ll;
typedef pair<int,int> P;
#define yn {puts("Yes");}else{puts("No");}
/*
Max_Prime以下の素数をprimes[]に格納
*/
const int Max_Prime = 10000000;
int tmp_primes[Max_Prime];
vector<int> primes;
void PrimeInit() {
rep(i,Max_Prime)tmp_primes[i] = 1;
tmp_primes[0] = 0;
tmp_primes[1] = 0;
rep(i,Max_Prime){
if(tmp_primes[i] == 0)continue;
int j = 2;
while(i * j < Max_Prime){
tmp_primes[i*j] = 0;
j++;
}
}
rep(i,Max_Prime){
if(tmp_primes[i])primes.push_back(i);
}
}
int main() {
PrimeInit();
int T;
cin >> T;
rep(_,T){
ll a, p;
cin >> a >> p;
auto ite = lower_bound(primes.begin(), primes.end(), p);
if(*ite != p){
cout << -1 << endl;
continue;
}else{
if(a%p==0){
cout << 0 << endl;
continue;
}
cout << 1 << endl;
}
}
return 0;
}
Shibuyap