結果

問題 No.12 限定された素数
ユーザー HydruHydru
提出日時 2023-01-20 01:34:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,503 ms / 5,000 ms
コード長 889 bytes
コンパイル時間 443 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 320,260 KB
最終ジャッジ日時 2024-06-22 18:36:06
合計ジャッジ時間 39,859 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,379 ms
320,168 KB
testcase_01 AC 1,503 ms
320,048 KB
testcase_02 AC 1,412 ms
320,184 KB
testcase_03 AC 1,375 ms
320,000 KB
testcase_04 AC 1,379 ms
319,868 KB
testcase_05 AC 1,385 ms
320,044 KB
testcase_06 AC 1,396 ms
319,852 KB
testcase_07 AC 1,445 ms
319,808 KB
testcase_08 AC 1,485 ms
319,756 KB
testcase_09 AC 1,433 ms
320,100 KB
testcase_10 AC 1,389 ms
319,872 KB
testcase_11 AC 1,395 ms
320,176 KB
testcase_12 AC 1,406 ms
319,836 KB
testcase_13 AC 1,385 ms
319,976 KB
testcase_14 AC 1,411 ms
319,972 KB
testcase_15 AC 1,404 ms
320,004 KB
testcase_16 AC 1,414 ms
319,712 KB
testcase_17 AC 1,361 ms
319,856 KB
testcase_18 AC 1,369 ms
319,932 KB
testcase_19 AC 1,373 ms
319,868 KB
testcase_20 AC 1,403 ms
319,852 KB
testcase_21 AC 1,383 ms
320,260 KB
testcase_22 AC 1,382 ms
319,756 KB
testcase_23 AC 1,378 ms
319,892 KB
testcase_24 AC 1,385 ms
319,868 KB
testcase_25 AC 1,404 ms
320,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def eratosthenes(n):
    primes=set(range(2,n+1))
    for i in range(2,n):
        if i in primes:
            it = i ** 2
            while it <= n:
                if it in primes:
                    primes.remove(it)
                it += i
    return primes

P=sorted(list(eratosthenes(5*10**6)))

n=int(input())
A=list(map(int,input().split()))

digit = [0 for _ in range(10)]
for a in A:
    digit[a]=1

ans=-1
n_digit = [0 for _ in range(10)]

P.append(5*10**6+1)
k=1
for i in range(len(P)-1):
    p=P[i]
    while(p>0):
        n_digit[p%10]=1
        p//=10
    
    flag=1
    for j in range(10):
        if digit[j]==0 and n_digit[j]==1:
            for l in range(10):
                n_digit[l]=0
            k=P[i]+1
            flag=0
            break
        if digit[j]==1 and n_digit[j]==0:
            flag=0
    if flag==1:
        ans=max(ans,P[i+1]-1-k)

print(ans)
0