結果
問題 | No.1140 EXPotentiaLLL! |
ユーザー | paruf4 |
提出日時 | 2020-07-31 23:09:32 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 524 bytes |
コンパイル時間 | 323 ms |
コンパイル使用メモリ | 82,632 KB |
実行使用メモリ | 128,752 KB |
最終ジャッジ日時 | 2024-07-06 21:02:07 |
合計ジャッジ時間 | 7,448 ms |
ジャッジサーバーID (参考情報) |
judge4 / 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 | -- | - |
ソースコード
def isPrime(x): if x < 2: return False for i in range(2, int(x**0.5)+1): if x % i == 0: return False return True def sieve(x): f = [True]*(x+1) f[0], f[1] = False, False for i in range(2, len(f)): if isPrime(i): for j in range(i*2, len(f), i): f[j] = False return f t = int(input()) s = sieve(5*10**6) for i in range(t): a,p = map(int,input().split()) if s[p]: print(pow(a,(p-1)//2,p)) else: print(-1)