結果

問題 No.1140 EXPotentiaLLL!
ユーザー ttkkggwwttkkggww
提出日時 2020-07-31 21:56:58
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,208 ms / 2,000 ms
コード長 462 bytes
コンパイル時間 1,392 ms
コンパイル使用メモリ 168,596 KB
実行使用メモリ 42,424 KB
最終ジャッジ日時 2024-07-06 17:56:29
合計ジャッジ時間 13,176 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,195 ms
42,236 KB
testcase_01 AC 1,199 ms
42,236 KB
testcase_02 AC 1,208 ms
42,236 KB
testcase_03 AC 932 ms
42,280 KB
testcase_04 AC 720 ms
42,304 KB
testcase_05 AC 1,091 ms
42,308 KB
testcase_06 AC 1,051 ms
42,284 KB
testcase_07 AC 1,195 ms
42,276 KB
testcase_08 AC 96 ms
42,252 KB
testcase_09 AC 95 ms
42,340 KB
testcase_10 AC 97 ms
42,228 KB
testcase_11 AC 103 ms
42,424 KB
testcase_12 AC 98 ms
42,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;

int main()
{
	ll t;
	cin >> t;
	vector<ll> prime(5*1000000+1,1);
	for(ll i = 2;i<5*1000000+1;i++)
	{
		if(prime[i])
		{
			for(ll j = i*2;j<5*1000000+1;j+=i)
			{
				prime[j] = false;
			}
		}
	}
	prime[0] = prime[1] = false;
	while(t--)
	{
		ll a,p;
		cin >> a >> p;
		if(prime[p])
		{
			if(a%p==0)
			{
				cout<<0<<endl;
			}
			else cout << 1 << endl;
		}
		else cout << -1 << endl;
	}
}
0