結果

問題 No.12 限定された素数
ユーザー dangodango
提出日時 2023-07-08 09:11:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 439 ms / 5,000 ms
コード長 900 bytes
コンパイル時間 447 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 133,904 KB
最終ジャッジ日時 2024-07-22 05:02:30
合計ジャッジ時間 12,848 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 415 ms
133,648 KB
testcase_01 AC 424 ms
133,588 KB
testcase_02 AC 420 ms
133,144 KB
testcase_03 AC 407 ms
133,520 KB
testcase_04 AC 424 ms
133,136 KB
testcase_05 AC 439 ms
133,588 KB
testcase_06 AC 419 ms
133,904 KB
testcase_07 AC 425 ms
133,516 KB
testcase_08 AC 429 ms
133,396 KB
testcase_09 AC 433 ms
133,396 KB
testcase_10 AC 433 ms
133,404 KB
testcase_11 AC 420 ms
133,520 KB
testcase_12 AC 425 ms
133,516 KB
testcase_13 AC 411 ms
133,532 KB
testcase_14 AC 433 ms
133,648 KB
testcase_15 AC 416 ms
133,396 KB
testcase_16 AC 415 ms
133,652 KB
testcase_17 AC 418 ms
133,268 KB
testcase_18 AC 416 ms
133,268 KB
testcase_19 AC 419 ms
133,264 KB
testcase_20 AC 427 ms
133,392 KB
testcase_21 AC 432 ms
133,580 KB
testcase_22 AC 425 ms
133,524 KB
testcase_23 AC 431 ms
133,260 KB
testcase_24 AC 418 ms
133,264 KB
testcase_25 AC 426 ms
133,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def generate_primes(limit):
    is_prime = [0] * (limit + 1)
    primes = []
    for i in range(2, limit + 1):
        if not is_prime[i]:
            primes.append(i)
        for prime in primes:
            if prime * i > limit:
                break
            is_prime[prime * i] = 1
            if i % prime == 0:
                break
    return primes
input()
digits = set(input().split())
current_digits = set()
max_length, last_prime = -1, 1
for prime in generate_primes(5000000):
    prime_digits = set(str(prime))
    if len(prime_digits - digits) > 0:
        if len(digits) == len(current_digits):
            max_length = max(max_length, prime - 1 - last_prime)
        current_digits = set()
        last_prime = prime + 1
    else:
        current_digits |= prime_digits
if len(digits) == len(current_digits):
    max_length = max(max_length, 5000000 - last_prime)
print(max_length)
0