結果

問題 No.1140 EXPotentiaLLL!
ユーザー stngstng
提出日時 2022-09-04 21:19:53
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 612 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 274,548 KB
最終ジャッジ日時 2024-04-29 20:54:40
合計ジャッジ時間 7,422 ms
ジャッジサーバーID
(参考情報)
judge3 / 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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
t = int(input())
ap = [[int(i) for i in input().split()] for j in range(t)]

def sieve_of_eratosthenes(n):
    prime = [True for i in range(n+1)]
    prime[0] = False
    prime[1] = False

    sqrt_n = math.ceil(math.sqrt(n))
    for i in range(2, sqrt_n):
        if prime[i]:
            for j in range(2*i, n+1, i):
                prime[j] = False

    return prime

val = 5*10**6
pri = sieve_of_eratosthenes(val)

for i in range(t):
    a,p = ap[i]
    if pri[p] == True:
        kai = 1
        for j in range(p):
            kai *= (j+1)
        print(pow(a,kai,p))
    else:
        print(-1)
0