結果
問題 | No.1140 EXPotentiaLLL! |
ユーザー | FromBooska |
提出日時 | 2023-10-02 15:06:40 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 997 bytes |
コンパイル時間 | 408 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 89,088 KB |
最終ジャッジ日時 | 2024-07-26 13:47:08 |
合計ジャッジ時間 | 7,470 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
ソースコード
# ポラード・ローとフェルマーの小定理でTLEした # 素数判定 Miller Rabin ミラー・ラビンを使うか import random def is_prime3(q,k=50): q = abs(q) #計算するまでもなく判定できるものははじく if q == 2: return True if q < 2 or q&1 == 0: return False #n-1=2^s*dとし(但しaは整数、dは奇数)、dを求める d = (q-1)>>1 while d&1 == 0: d >>= 1 #判定をk回繰り返す for i in range(k): a = random.randint(1,q-1) t = d y = pow(a,t,q) #[0,s-1]の範囲すべてをチェック while t != q-1 and y != 1 and y != q-1: y = pow(y,2,q) t <<= 1 if y != q-1 and t&1 == 0: return False return True T = int(input()) for t in range(T): A, P = map(int, input().split()) if is_prime3(P) == False: print(-1) else: if A%P == 0: print(0) else: print(1)