結果

問題 No.12 限定された素数
ユーザー nsd_fbnsd_fb
提出日時 2015-02-19 07:19:59
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 704 ms / 5,000 ms
コード長 1,079 bytes
コンパイル時間 894 ms
コンパイル使用メモリ 76,584 KB
実行使用メモリ 136,448 KB
最終ジャッジ日時 2024-05-03 09:09:29
合計ジャッジ時間 19,093 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 662 ms
135,552 KB
testcase_01 AC 671 ms
136,320 KB
testcase_02 AC 601 ms
135,808 KB
testcase_03 AC 569 ms
135,936 KB
testcase_04 AC 647 ms
135,772 KB
testcase_05 AC 695 ms
135,772 KB
testcase_06 AC 641 ms
136,448 KB
testcase_07 AC 645 ms
135,880 KB
testcase_08 AC 643 ms
135,936 KB
testcase_09 AC 651 ms
135,808 KB
testcase_10 AC 691 ms
135,796 KB
testcase_11 AC 616 ms
135,936 KB
testcase_12 AC 622 ms
136,192 KB
testcase_13 AC 634 ms
136,320 KB
testcase_14 AC 649 ms
136,156 KB
testcase_15 AC 630 ms
135,908 KB
testcase_16 AC 643 ms
135,936 KB
testcase_17 AC 622 ms
135,680 KB
testcase_18 AC 626 ms
135,680 KB
testcase_19 AC 623 ms
135,808 KB
testcase_20 AC 596 ms
136,320 KB
testcase_21 AC 647 ms
136,064 KB
testcase_22 AC 622 ms
135,808 KB
testcase_23 AC 621 ms
136,064 KB
testcase_24 AC 625 ms
135,680 KB
testcase_25 AC 704 ms
135,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def sieve(n):
    res = []
    is_prime = [True] * (n + 1)
    
    for i in xrange(2, n + 1):
        if is_prime[i]:
            res.append(i)

            for j in xrange(i * i, n + 1, i):
                is_prime[j] = False

    return res

def ng(need, numbers):
    for d in numbers:
        if not need[d]:
            return True
        
    return False

def ok(need, exist):
    for n, e in zip(need, exist):
        if n and not e:
            return False

    return True

primes = sieve(5000000)
n = input()
need = [False] * 10

for a in map(int, raw_input().split()):
    need[a] = True

ans = -1
prev = 1

l = 0
while l < len(primes):
    r = l
    exist = [False] * 10

    while r < len(primes):
        numbers = map(int, str(primes[r]))

        if ng(need, numbers):
            break

        for d in numbers:
            exist[d] = True

        r += 1

    current = primes[r] - 1 if r < len(primes) else 5000000
    if ok(need, exist):
        diff = current - prev
        ans = max(ans, diff)
        
    prev = current + 2
    l = r + 1

print ans
0