結果

問題 No.774 tatyamと素数大富豪
ユーザー yuppe19 😺yuppe19 😺
提出日時 2019-01-02 19:52:57
言語 Python2
(2.7.18)
結果
AC  
実行時間 917 ms / 2,000 ms
コード長 1,223 bytes
コンパイル時間 39 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 8,576 KB
最終ジャッジ日時 2024-05-01 10:11:24
合計ジャッジ時間 10,608 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 801 ms
8,576 KB
testcase_01 AC 13 ms
7,040 KB
testcase_02 AC 826 ms
7,168 KB
testcase_03 AC 26 ms
7,552 KB
testcase_04 AC 13 ms
7,040 KB
testcase_05 AC 14 ms
7,040 KB
testcase_06 AC 12 ms
7,168 KB
testcase_07 AC 13 ms
7,040 KB
testcase_08 AC 13 ms
7,168 KB
testcase_09 AC 848 ms
8,448 KB
testcase_10 AC 755 ms
7,040 KB
testcase_11 AC 773 ms
7,296 KB
testcase_12 AC 917 ms
8,576 KB
testcase_13 AC 763 ms
8,576 KB
testcase_14 AC 101 ms
7,808 KB
testcase_15 AC 813 ms
7,552 KB
testcase_16 AC 863 ms
7,552 KB
testcase_17 AC 734 ms
6,940 KB
testcase_18 AC 771 ms
7,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python2
# -*- coding: utf-8 -*-
# †
from itertools import permutations
from random import randrange

def memoize(func):
    cache = {}
    def _memoizer(*args):
        res = cache.get(args)
        if res == None:
            res = cache[args] = func(*args)
        return res
    _memoizer.cache = cache
    return _memoizer

@memoize
def is_probable_prime(n, k=20):
    if n == 1: return False
    for p in [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31]:
        if n == p:     return True
        if n % p == 0: return False
    s, d = 0, n-1
    while d & 1 == 0:
        s, d = s+1, d>>1
    for _ in xrange(k):
        a = randrange(2, n-1)
        x = pow(a, d, n)
        if x == 1 or x == n-1:
            continue
        for _ in xrange(s-1):
            x = x * x % n
            if x == n-1:
                break  # could be strong liar, try another a
        else:
            return False  # composite if we reached end of this loop
    return True  # probably prime if reached end of outer loop

n = int(raw_input())
v = map(int, raw_input().split())

maxi = -1
for perm in permutations(v):
    x = int(''.join(map(str, perm)))
    if maxi < x and is_probable_prime(x):
        maxi = x
print maxi
0