結果

問題 No.12 限定された素数
ユーザー sotanishysotanishy
提出日時 2021-03-16 21:56:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 481 ms / 5,000 ms
コード長 776 bytes
コンパイル時間 547 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 135,404 KB
最終ジャッジ日時 2024-11-08 16:50:09
合計ジャッジ時間 13,078 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 366 ms
134,764 KB
testcase_01 AC 412 ms
135,016 KB
testcase_02 AC 380 ms
134,896 KB
testcase_03 AC 481 ms
135,148 KB
testcase_04 AC 375 ms
134,900 KB
testcase_05 AC 418 ms
135,156 KB
testcase_06 AC 403 ms
134,768 KB
testcase_07 AC 437 ms
134,776 KB
testcase_08 AC 403 ms
135,164 KB
testcase_09 AC 394 ms
135,152 KB
testcase_10 AC 425 ms
135,276 KB
testcase_11 AC 451 ms
135,404 KB
testcase_12 AC 443 ms
135,032 KB
testcase_13 AC 414 ms
135,156 KB
testcase_14 AC 409 ms
135,156 KB
testcase_15 AC 411 ms
134,772 KB
testcase_16 AC 447 ms
135,020 KB
testcase_17 AC 365 ms
135,152 KB
testcase_18 AC 377 ms
135,020 KB
testcase_19 AC 373 ms
135,152 KB
testcase_20 AC 369 ms
135,036 KB
testcase_21 AC 385 ms
135,024 KB
testcase_22 AC 374 ms
134,908 KB
testcase_23 AC 378 ms
134,900 KB
testcase_24 AC 366 ms
134,900 KB
testcase_25 AC 413 ms
135,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def sieve(n):
    is_prime = [True] * (n+1)
    is_prime[0] = is_prime[1] = False
    for j in range(4, n+1, 2):
        is_prime[j] = False
    prime = [2]
    for i in range(3, n+1):
        if is_prime[i]:
            prime.append(i)
            for j in range(i*i, n+1, 2*i):
                is_prime[j] = False
    return prime

M = 5*10**6
prime = [0] + sieve(M) + [M+1]
N = int(input())
A = set(map(int, input().split()))
st = set()
ans = -1
left = 0
for i, p in enumerate(prime):
    if i == 0 or i == len(prime) - 1:
        continue
    for d in map(int, str(p)):
        if d not in A:
            st = set()
            left = i
            break
        st.add(d)
    else:
        if st == A:
            ans = max(ans, prime[i + 1] - prime[left] - 2)
print(ans)
0