結果
問題 | No.1140 EXPotentiaLLL! |
ユーザー | stng |
提出日時 | 2022-09-04 21:19:53 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 612 bytes |
コンパイル時間 | 444 ms |
コンパイル使用メモリ | 82,128 KB |
実行使用メモリ | 273,864 KB |
最終ジャッジ日時 | 2024-11-19 04:15:09 |
合計ジャッジ時間 | 27,947 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | AC | 888 ms
166,272 KB |
testcase_02 | TLE | - |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | AC | 241 ms
99,412 KB |
testcase_09 | AC | 238 ms
97,852 KB |
testcase_10 | AC | 239 ms
98,060 KB |
testcase_11 | AC | 241 ms
98,188 KB |
testcase_12 | AC | 237 ms
257,308 KB |
ソースコード
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)