結果

問題 No.774 tatyamと素数大富豪
ユーザー maspymaspy
提出日時 2020-03-28 14:55:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,356 ms / 2,000 ms
コード長 933 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 78,016 KB
最終ジャッジ日時 2024-06-10 17:22:20
合計ジャッジ時間 7,096 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 210 ms
77,692 KB
testcase_01 AC 41 ms
55,016 KB
testcase_02 AC 1,356 ms
77,436 KB
testcase_03 AC 58 ms
68,896 KB
testcase_04 AC 44 ms
54,756 KB
testcase_05 AC 46 ms
60,728 KB
testcase_06 AC 42 ms
55,104 KB
testcase_07 AC 42 ms
54,712 KB
testcase_08 AC 38 ms
55,780 KB
testcase_09 AC 856 ms
77,384 KB
testcase_10 AC 466 ms
77,324 KB
testcase_11 AC 262 ms
78,016 KB
testcase_12 AC 250 ms
77,856 KB
testcase_13 AC 192 ms
77,588 KB
testcase_14 AC 104 ms
77,400 KB
testcase_15 AC 255 ms
77,644 KB
testcase_16 AC 968 ms
77,456 KB
testcase_17 AC 299 ms
77,716 KB
testcase_18 AC 225 ms
77,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/ python3.8
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
import itertools

_, *A = map(int, read().split())
A_str = [str(x) for x in A]


def gen_nums():
    for p in itertools.permutations(A_str):
        yield int(''.join(p))


def MillerRabinTest(n, maxiter=20):
    import random
    if n == 1:
        return False
    elif n == 2:
        return True
    if not n & 1:
        return False

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

    for _ in range(maxiter):
        a = random.randint(1, n - 1)
        t = d
        x = pow(a, t, n)
        while (t != n - 1) and (x != 1) and (x != n - 1):
            x = x * x % n
            t <<= 1
        if (x != n - 1) and not (t & 1):
            return False
    return True


answer = -1
for p in gen_nums():
    if answer < p and MillerRabinTest(p):
        answer = p
print(answer)
0