結果
問題 | No.1140 EXPotentiaLLL! |
ユーザー | kept1994 |
提出日時 | 2021-11-21 16:28:57 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,408 bytes |
コンパイル時間 | 211 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 169,600 KB |
最終ジャッジ日時 | 2024-06-22 22:58:33 |
合計ジャッジ時間 | 10,610 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | - |
ソースコード
#!/usr/bin/env python3 import sys class Eratosthenes(): """ 素数列挙 計算量 : O(NloglogN) """ def __init__(self, N: int) -> None: self.isPrime = [True] * (N + 1) # 数iが素数かどうかのフラグ self.isPrime[0] = False self.isPrime[1] = False self.minfactor = [0] * (N + 1) # 数iの最小の素因数 self.minfactor[1] = 1 self.primes = [] # 数Nまでの素数のリスト for p in range(2, N + 1): # p : 判定対象の数 if not self.isPrime[p]: continue self.minfactor[p] = p self.primes.append(p) # pが素数のためそれ以降に出現するpの倍数を除外する。 # なお、ループはp始まりでも良いが、p * _ のかける側はすでに同じ処理で弾かれているはずのため無駄。 for i in range(p * p, N + 1, p): if self.minfactor[i] == 0: self.minfactor[i] = p self.isPrime[i] = False return def main(): T = int(input()) er = Eratosthenes(5 * 10 ** 6 + 1) for _ in range(T): A, P = map(int, input().split()) if P in er: if A == P: print(0) else: print(1) else: print(-1) return if __name__ == '__main__': main()