結果

問題 No.12 限定された素数
ユーザー OKCH3COOHOKCH3COOH
提出日時 2019-10-23 23:48:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,181 bytes
コンパイル時間 822 ms
コンパイル使用メモリ 82,592 KB
実行使用メモリ 187,864 KB
最終ジャッジ日時 2024-07-07 13:24:44
合計ジャッジ時間 16,631 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 517 ms
187,408 KB
testcase_01 AC 569 ms
187,144 KB
testcase_02 AC 537 ms
187,024 KB
testcase_03 AC 474 ms
186,888 KB
testcase_04 AC 534 ms
187,404 KB
testcase_05 AC 611 ms
187,140 KB
testcase_06 AC 562 ms
187,612 KB
testcase_07 AC 581 ms
187,456 KB
testcase_08 AC 573 ms
187,340 KB
testcase_09 AC 557 ms
187,404 KB
testcase_10 AC 585 ms
187,460 KB
testcase_11 WA -
testcase_12 AC 572 ms
187,272 KB
testcase_13 AC 567 ms
187,672 KB
testcase_14 AC 597 ms
187,464 KB
testcase_15 AC 593 ms
187,604 KB
testcase_16 AC 585 ms
187,148 KB
testcase_17 AC 525 ms
187,156 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 546 ms
187,400 KB
testcase_21 AC 565 ms
187,160 KB
testcase_22 AC 508 ms
187,352 KB
testcase_23 AC 508 ms
187,408 KB
testcase_24 AC 501 ms
187,144 KB
testcase_25 AC 583 ms
187,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = set(map(int, input().split()))

def primeList():
    isPrime = [True] * 5000001
    now = 0
    primeRange = [0] * 5000001
    primes = []
    for i in range(2, 5000001):
        if isPrime[i]:
            primes.append(i)
            now += 1
            k = i
            while k <= 5000000:
                isPrime[k] = False
                k += i
        primeRange[i] = now

    return list(primes), primeRange

primes, iToRange = primeList()
gapIndex = []
for i in range(5000000):
    if iToRange[i] != iToRange[i + 1]:
        gapIndex.append(i)

M = len(primes)
ans = 0
left = 0
while left < M:
    V = set()
    right = 0
    for i in range(left, M):
        nums = set(map(int, str(primes[i])))

        if nums.issubset(V):
            continue

        newV = V.union(nums)
        if len(newV & A) == len(newV):
            V = newV
        else:
            right = i
            break
    else:
        if V == A:
            ans = max(ans, 5000000 - left - 1)
            break

    if V == A:
        ans = max(ans, gapIndex[right] - gapIndex[left - 1] - 2)
    left = max(right + 1, left + 1)

if ans == 0:
    print(-1)
else:
    print(ans)
0