結果

問題 No.12 限定された素数
ユーザー しらっ亭しらっ亭
提出日時 2015-07-10 20:45:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 575 ms / 5,000 ms
コード長 1,131 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 140,656 KB
最終ジャッジ日時 2024-05-03 09:28:53
合計ジャッジ時間 16,127 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 557 ms
140,160 KB
testcase_01 AC 561 ms
140,416 KB
testcase_02 AC 564 ms
140,288 KB
testcase_03 AC 555 ms
140,416 KB
testcase_04 AC 556 ms
140,656 KB
testcase_05 AC 567 ms
140,392 KB
testcase_06 AC 548 ms
140,392 KB
testcase_07 AC 553 ms
140,544 KB
testcase_08 AC 556 ms
140,544 KB
testcase_09 AC 553 ms
140,416 KB
testcase_10 AC 563 ms
140,160 KB
testcase_11 AC 556 ms
140,464 KB
testcase_12 AC 553 ms
140,288 KB
testcase_13 AC 553 ms
140,560 KB
testcase_14 AC 554 ms
140,160 KB
testcase_15 AC 556 ms
140,376 KB
testcase_16 AC 563 ms
140,416 KB
testcase_17 AC 539 ms
140,288 KB
testcase_18 AC 569 ms
140,288 KB
testcase_19 AC 574 ms
140,032 KB
testcase_20 AC 574 ms
140,584 KB
testcase_21 AC 565 ms
140,372 KB
testcase_22 AC 537 ms
140,032 KB
testcase_23 AC 563 ms
140,416 KB
testcase_24 AC 552 ms
140,544 KB
testcase_25 AC 575 ms
140,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def mark(s, x):
    for i in range(x + x, len(s), x):
        s[i] = False

def sieve(n):
    s = [True] * n
    for x in range(2, int(n**0.5) + 1):
        if s[x]:
            mark(s, x)
    return [i for i in range(n) if s[i] and i > 1]


def solve(A):
    MAX = 5000000
    P = sieve(MAX)

    B = sum(1 << a for a in A)

    b2 = {str(c): 1 << c for c in range(10)}
    M = [sum(b2[c] for c in set(str(p))) for p in P]

    l = r = ps = s = 0

    ans = -1

    while r < len(M):
        sb = s & B
        if s - sb:
            if ps == B:
                if r == len(M) - 1:
                    r1 = MAX
                else:
                    r1 = P[r - 1] - 1
                if l == 0:
                    l1 = 1
                else:
                    l1 = P[l - 1] + 1
                ans = max(ans, r1 - l1)
            l = r
            s = 0
        else:
            ps = s
            s = ps | M[r]
            r += 1

    if ps and ans == -1:
        return 4999999

    return ans


def main():
    input()
    A = list(map(int, input().split()))

    print(solve(A))


if __name__ == '__main__':
    main()
0