結果
問題 | No.774 tatyamと素数大富豪 |
ユーザー | pekempey |
提出日時 | 2018-12-22 01:56:43 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 803 bytes |
コンパイル時間 | 160 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 25,024 KB |
最終ジャッジ日時 | 2024-09-25 09:55:13 |
合計ジャッジ時間 | 6,712 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
ソースコード
import random import itertools def suspect(a, e, k, n): a = pow(a, e, n) if a == 1: return True for _ in range(k): if a == n - 1: return True a = a * a % n return False def isprime(n): if n <= 1: return False if n == 2: return True if n == 3: return True if n == 5: return True if n % 2 == 0 or n % 3 == 0 or n % 5 == 0: return False e = n - 1 k = 0 while e % 2 == 0: e //= 2 k += 1 for _ in range(3): b = random.randint(2, n - 2) if not suspect(b, e, k, n): return False return True n = int(input()) a = map(int, input().split()) ans = -1 for p in itertools.permutations(a): x = '' for e in p: x += str(e) x = int(x) if isprime(x): ans = max(ans, x) print(ans)