結果

問題 No.774 tatyamと素数大富豪
ユーザー pekempeypekempey
提出日時 2018-12-22 01:58:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,675 ms / 2,000 ms
コード長 856 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,696 KB
最終ジャッジ日時 2024-09-25 09:55:48
合計ジャッジ時間 12,284 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 963 ms
77,184 KB
testcase_01 AC 45 ms
54,144 KB
testcase_02 AC 87 ms
76,276 KB
testcase_03 AC 68 ms
70,772 KB
testcase_04 AC 45 ms
54,528 KB
testcase_05 AC 63 ms
67,200 KB
testcase_06 AC 43 ms
54,144 KB
testcase_07 AC 43 ms
54,272 KB
testcase_08 AC 44 ms
54,400 KB
testcase_09 AC 90 ms
76,288 KB
testcase_10 AC 1,675 ms
77,388 KB
testcase_11 AC 1,194 ms
77,316 KB
testcase_12 AC 814 ms
77,696 KB
testcase_13 AC 440 ms
77,440 KB
testcase_14 AC 60 ms
68,096 KB
testcase_15 AC 1,010 ms
77,512 KB
testcase_16 AC 1,043 ms
77,160 KB
testcase_17 AC 1,403 ms
77,568 KB
testcase_18 AC 1,013 ms
77,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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(2):
        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 = 0
    for e in p:
        if e >= 10:
            x = x * 100 + e
        else:
            x = x * 10 + e
    if isprime(x):
        ans = max(ans, x)
print(ans)
0