結果

問題 No.774 tatyamと素数大富豪
ユーザー Shuz*Shuz*
提出日時 2018-06-23 15:43:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 995 bytes
コンパイル時間 74 ms
コンパイル使用メモリ 10,772 KB
実行使用メモリ 51,684 KB
最終ジャッジ日時 2023-09-13 08:29:37
合計ジャッジ時間 13,816 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 1,075 ms
51,548 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 17 ms
8,812 KB
testcase_07 WA -
testcase_08 AC 18 ms
8,804 KB
testcase_09 AC 1,066 ms
51,548 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 122 ms
13,640 KB
testcase_15 WA -
testcase_16 AC 1,064 ms
51,640 KB
testcase_17 WA -
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#coding:utf8
import random
import itertools

def is_prime(q,k=50):
    q = abs(q)
    #計算するまでもなく判定できるものははじく
    if q == 2: return True
    if q < 2 or q&1 == 0: return False

    #n-1=2^s*dとし(但しaは整数、dは奇数)、dを求める
    d = (q-1)>>1
    while d&1 == 0:
        d >>= 1
    
    #判定をk回繰り返す
    for i in range(k):
        a = random.randint(1,q-1)
        t = d
        y = pow(a,t,q)
        #[0,s-1]の範囲すべてをチェック
        while t != q-1 and y != 1 and y != q-1: 
            y = pow(y,2,q)
            t <<= 1
        if y != q-1 and t&1 == 0:
            return False
    return True

n=int(input())
a=list(map(int,input().split()))
v=list(itertools.permutations(a))
m=-1
s=[]
for i in v:
    p=int(float(''.join(map(str,i))))
    x=0
    for j in s:
        if j==p:
            x=1
            break
    if x:
        s.append(p)
        if is_prime(p) and p>m:
            m=p;
print(m)
0