結果

問題 No.1140 EXPotentiaLLL!
ユーザー ryoissyryoissy
提出日時 2020-07-31 21:28:49
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 535 bytes
コンパイル時間 1,234 ms
コンパイル使用メモリ 165,460 KB
実行使用メモリ 8,576 KB
最終ジャッジ日時 2024-07-06 16:25:47
合計ジャッジ時間 4,384 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 165 ms
8,448 KB
testcase_01 AC 175 ms
8,320 KB
testcase_02 WA -
testcase_03 AC 129 ms
8,576 KB
testcase_04 AC 106 ms
8,576 KB
testcase_05 AC 149 ms
8,448 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 35 ms
8,448 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 37 ms
8,576 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{
		printf("1\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