結果

問題 No.1140 EXPotentiaLLL!
ユーザー 双六双六
提出日時 2020-07-31 21:46:28
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 741 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 87,068 KB
実行使用メモリ 84,228 KB
最終ジャッジ日時 2023-09-20 22:44:53
合計ジャッジ時間 5,106 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys; input = sys.stdin.buffer.readline
sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")
from fractions import gcd

def getlist():
	return list(map(int, input().split()))

num = 3 * 10 ** 3 + 1 #適当に値を入れる
L = [1 for i in range(num)]; L[0] = 0; L[1] = 0
plist = []
for i in range(num):
	if L[i] == 1:
		plist.append(i); c = 2
		while i * c <= num - 1:
			L[i * c] = 0; c += 1

#処理内容
def main():
	T = int(input())
	for x in range(T):
		A, P = getlist()
		jud = 0
		for i in plist:
			if P % i == 0 and P != i:
				jud = 1
				break
		if jud == 1:
			print(-1)
		else:
			if gcd(A, P) == 1:
				print(1)
			else:
				print(0)

if __name__ == '__main__':
	main()
0