結果

問題 No.1140 EXPotentiaLLL!
ユーザー ryoissyryoissy
提出日時 2020-07-31 21:35:24
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 182 ms / 2,000 ms
コード長 573 bytes
コンパイル時間 1,559 ms
コンパイル使用メモリ 165,208 KB
実行使用メモリ 8,576 KB
最終ジャッジ日時 2024-07-06 16:52:13
合計ジャッジ時間 4,776 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 176 ms
8,192 KB
testcase_01 AC 172 ms
8,448 KB
testcase_02 AC 182 ms
8,320 KB
testcase_03 AC 137 ms
8,448 KB
testcase_04 AC 119 ms
8,448 KB
testcase_05 AC 166 ms
8,576 KB
testcase_06 AC 148 ms
8,448 KB
testcase_07 AC 180 ms
8,576 KB
testcase_08 AC 32 ms
8,448 KB
testcase_09 AC 33 ms
8,576 KB
testcase_10 AC 34 ms
8,576 KB
testcase_11 AC 33 ms
8,320 KB
testcase_12 AC 34 ms
8,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define MOD 1000000007LL
using namespace std;
typedef long long ll;
typedef pair<int,int> P;

int t;
bool prime[5000005];
ll fact[500005];

void solve(){
	ll a,p;
	scanf("%lld%lld",&a,&p);
	if(!prime[p]){
		printf("-1\n");
	}else if(a%p!=0LL){
		printf("1\n");
	}else{
		printf("0\n");
	}
}

int main(void){
	memset(prime,true,sizeof(prime));
	prime[0]=prime[1]=false;
	for(ll i=2;i<=5000000;i++){
		if(prime[i]){
			for(int j=i*2;j<=5000000;j+=i){
				prime[j]=false;
			}
		}
	}
	scanf("%d",&t);
	for(int i=0;i<t;i++){
		solve();
	}
	return 0;
}
0