結果
問題 | No.1140 EXPotentiaLLL! |
ユーザー | c-yan |
提出日時 | 2020-07-31 21:46:27 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 720 bytes |
コンパイル時間 | 584 ms |
コンパイル使用メモリ | 82,588 KB |
実行使用メモリ | 116,224 KB |
最終ジャッジ日時 | 2024-07-06 17:31:07 |
合計ジャッジ時間 | 7,432 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 make_prime_table(n): sieve = list(range(n + 1)) sieve[0] = -1 sieve[1] = -1 for i in range(2, int(n ** 0.5) + 1): if sieve[i] != i: continue for j in range(i * i, n + 1, i): if sieve[j] == j: sieve[j] = i return sieve from sys import stdin readline = stdin.readline prime_table = make_prime_table(5 * 10 ** 6) T = int(readline()) result = [] for _ in range(T): A, P = map(int, readline().split()) if prime_table[P] != P: result.append(-1) else: t = 1 n = P while n != 1: t *= n t %= P n -= 1 result.append(pow(A % P, t, P)) print(*result, sep='\n')