結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 367 ms
148,308 KB
testcase_01 AC 369 ms
148,488 KB
testcase_02 AC 364 ms
148,372 KB
testcase_03 AC 305 ms
148,452 KB
testcase_04 AC 357 ms
148,764 KB
testcase_05 AC 395 ms
148,400 KB
testcase_06 AC 360 ms
148,740 KB
testcase_07 AC 382 ms
148,540 KB
testcase_08 AC 391 ms
149,088 KB
testcase_09 AC 366 ms
149,220 KB
testcase_10 AC 382 ms
148,584 KB
testcase_11 AC 362 ms
148,332 KB
testcase_12 AC 371 ms
148,624 KB
testcase_13 AC 372 ms
148,840 KB
testcase_14 AC 400 ms
148,860 KB
testcase_15 AC 378 ms
148,924 KB
testcase_16 AC 379 ms
149,320 KB
testcase_17 AC 365 ms
148,176 KB
testcase_18 AC 359 ms
148,124 KB
testcase_19 AC 352 ms
148,680 KB
testcase_20 AC 368 ms
148,784 KB
testcase_21 AC 364 ms
148,484 KB
testcase_22 AC 362 ms
148,372 KB
testcase_23 AC 357 ms
148,408 KB
testcase_24 AC 373 ms
148,928 KB
testcase_25 AC 384 ms
148,480 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