結果
問題 | No.1140 EXPotentiaLLL! |
ユーザー | Mine |
提出日時 | 2021-01-28 18:05:04 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 973 bytes |
コンパイル時間 | 279 ms |
コンパイル使用メモリ | 82,084 KB |
実行使用メモリ | 76,444 KB |
最終ジャッジ日時 | 2024-06-26 02:20:33 |
合計ジャッジ時間 | 3,252 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | AC | 66 ms
69,064 KB |
testcase_09 | AC | 64 ms
69,952 KB |
testcase_10 | AC | 64 ms
69,664 KB |
testcase_11 | AC | 65 ms
69,460 KB |
testcase_12 | AC | 64 ms
68,936 KB |
ソースコード
from collections import defaultdict import math def Sieve_of_Eratosthenes(maxA): lst = [-1]*(maxA+1) lst[0] = 0 lst[1] = 1 for i in range(2, maxA+1): if lst[i] == -1: for g in range(i, maxA+1, i): if lst[g] == -1: lst[g] = i return lst def is_prime(n): d = defaultdict(int) now = n while True: if now == lst[now]: if now != 1: d[now] += 1 break r = lst[now] while now % r == 0: now //= r d[r] += 1 if d[r] > 1 or len(d) > 1: return False if len(d) == 1: return True else: return False maxA = 5*10**5+1 lst = Sieve_of_Eratosthenes(maxA) t = int(input()) for _ in range(t): a, p = map(int, input().split()) if is_prime(p): if math.gcd(a, p) == 1: print(1) else: print(0) else: print(-1)