結果

問題 No.774 tatyamと素数大富豪
ユーザー H3PO4
提出日時 2022-07-19 20:39:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 617 ms / 2,000 ms
コード長 779 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 145,492 KB
最終ジャッジ日時 2024-07-02 00:23:50
合計ジャッジ時間 5,535 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 5
other AC * 14
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
import random


def is_prime(n):
    """https://qiita.com/srtk86/items/609737d50c9ef5f5dc59 から拝借しています。"""
    if n == 2: return True
    if n == 1 or n & 1 == 0: return False

    d = (n - 1) >> 1
    while d & 1 == 0:
        d >>= 1

    for k in range(100):
        a = random.randint(1, n - 1)
        t = d
        y = pow(a, t, n)

        while t != n - 1 and y != 1 and y != n - 1:
            y = (y * y) % n
            t <<= 1

        if y != n - 1 and t & 1 == 0:
            return False

    return True


N = int(input())
A = tuple(map(int, input().split()))
max_prime = -1
for t in set(itertools.permutations(A)):
    x = int("".join(map(str, t)))
    if max_prime < x and is_prime(x):
        max_prime = x
print(max_prime)
0