結果

問題 No.12 限定された素数
ユーザー nsd_fbnsd_fb
提出日時 2015-02-19 07:17:54
言語 Python2
(2.7.18)
結果
AC  
実行時間 3,005 ms / 5,000 ms
コード長 1,079 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 7,068 KB
実行使用メモリ 56,492 KB
最終ジャッジ日時 2024-05-03 09:12:34
合計ジャッジ時間 80,115 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,984 ms
56,396 KB
testcase_01 AC 2,961 ms
56,340 KB
testcase_02 AC 2,914 ms
56,384 KB
testcase_03 AC 2,782 ms
56,316 KB
testcase_04 AC 2,945 ms
56,328 KB
testcase_05 AC 2,952 ms
56,392 KB
testcase_06 AC 2,924 ms
56,272 KB
testcase_07 AC 2,909 ms
56,464 KB
testcase_08 AC 2,924 ms
56,260 KB
testcase_09 AC 2,955 ms
56,388 KB
testcase_10 AC 2,911 ms
56,484 KB
testcase_11 AC 2,867 ms
56,428 KB
testcase_12 AC 2,904 ms
56,332 KB
testcase_13 AC 2,911 ms
56,420 KB
testcase_14 AC 2,980 ms
56,300 KB
testcase_15 AC 2,922 ms
56,384 KB
testcase_16 AC 2,885 ms
56,320 KB
testcase_17 AC 3,005 ms
56,408 KB
testcase_18 AC 2,936 ms
56,492 KB
testcase_19 AC 2,943 ms
56,328 KB
testcase_20 AC 2,898 ms
56,332 KB
testcase_21 AC 2,907 ms
56,436 KB
testcase_22 AC 2,946 ms
56,460 KB
testcase_23 AC 2,991 ms
56,252 KB
testcase_24 AC 3,003 ms
56,408 KB
testcase_25 AC 2,935 ms
56,316 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