結果

問題 No.12 限定された素数
ユーザー nagitaosunagitaosu
提出日時 2020-03-13 11:35:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 506 ms / 5,000 ms
コード長 1,550 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 149,248 KB
最終ジャッジ日時 2024-05-03 11:07:59
合計ジャッジ時間 13,506 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 460 ms
148,224 KB
testcase_01 AC 454 ms
148,608 KB
testcase_02 AC 447 ms
148,736 KB
testcase_03 AC 381 ms
148,352 KB
testcase_04 AC 455 ms
148,992 KB
testcase_05 AC 506 ms
148,608 KB
testcase_06 AC 448 ms
148,516 KB
testcase_07 AC 457 ms
148,480 KB
testcase_08 AC 473 ms
149,100 KB
testcase_09 AC 466 ms
148,992 KB
testcase_10 AC 473 ms
148,608 KB
testcase_11 AC 448 ms
148,572 KB
testcase_12 AC 461 ms
148,352 KB
testcase_13 AC 465 ms
149,248 KB
testcase_14 AC 475 ms
148,952 KB
testcase_15 AC 465 ms
148,992 KB
testcase_16 AC 473 ms
148,608 KB
testcase_17 AC 464 ms
148,352 KB
testcase_18 AC 459 ms
148,800 KB
testcase_19 AC 462 ms
148,352 KB
testcase_20 AC 451 ms
149,120 KB
testcase_21 AC 448 ms
148,608 KB
testcase_22 AC 455 ms
148,352 KB
testcase_23 AC 461 ms
148,608 KB
testcase_24 AC 462 ms
148,352 KB
testcase_25 AC 487 ms
148,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys
input = sys.stdin.readline

def primes(n):
    is_prime = [True] * (n + 1)
    is_prime[0] = False
    is_prime[1] = False
    for i in range(2, int(n**0.5) + 1):
        if not is_prime[i]:
            continue
        for j in range(i * 2, n + 1, i):
            is_prime[j] = False
    return [i for i in range(n + 1) if is_prime[i]]

n = int(input())
ref = [False] * 10 
a = [int(item) for item in input().split()]
for item in a:
    ref[item] = True
max_n = 5 * 10**6
p = [0] + primes(max_n) + [5*10**6 + 1]
cnt = [0] * 10
max_len = 0
ans = None
l = 1
for r in range(1, len(p) - 1):
    # Append
    s = str(p[r])
    for ch in s:
        cnt[int(ch)] += 1
    # Detect over / short / same
    state = "same"
    for j, item in enumerate(cnt):
        if not ref[j] and item > 0:
            state = "over"
            break
        elif ref[j] and not item > 0:
            state = "short"
            break
    while state == "over":
        s = str(p[l])
        l += 1
        for ch in s:
            cnt[int(ch)] -= 1
        state = "same"
        for j, item in enumerate(cnt):
            if not ref[j] and item > 0:
                state = "over"
                break
            elif ref[j] and not item > 0:
                state = "short"
                break
    if state == "same":
        if p[r+1] - p[l-1] > max_len:
            max_len = p[r+1] - p[l-1]
            ans = p[r + 1] - p[l - 1] - 2
    elif state == "short":
        continue
if ans == None:
    print(-1)
else:
    print(ans)
0