結果

問題 No.774 tatyamと素数大富豪
ユーザー H3PO4H3PO4
提出日時 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 617 ms
145,492 KB
testcase_01 AC 47 ms
54,400 KB
testcase_02 AC 166 ms
75,648 KB
testcase_03 AC 91 ms
78,080 KB
testcase_04 AC 54 ms
60,416 KB
testcase_05 AC 49 ms
59,776 KB
testcase_06 AC 46 ms
53,888 KB
testcase_07 AC 45 ms
54,144 KB
testcase_08 AC 45 ms
53,888 KB
testcase_09 AC 229 ms
78,592 KB
testcase_10 AC 170 ms
76,032 KB
testcase_11 AC 246 ms
77,952 KB
testcase_12 AC 582 ms
108,564 KB
testcase_13 AC 419 ms
111,344 KB
testcase_14 AC 98 ms
77,924 KB
testcase_15 AC 287 ms
77,952 KB
testcase_16 AC 194 ms
77,824 KB
testcase_17 AC 173 ms
76,544 KB
testcase_18 AC 231 ms
77,696 KB
権限があれば一括ダウンロードができます

ソースコード

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