結果

問題 No.12 限定された素数
ユーザー しらっ亭しらっ亭
提出日時 2015-07-10 20:43:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,583 ms / 5,000 ms
コード長 1,131 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 63,744 KB
最終ジャッジ日時 2024-05-03 09:33:00
合計ジャッジ時間 42,466 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,531 ms
63,488 KB
testcase_01 AC 1,543 ms
63,488 KB
testcase_02 AC 1,529 ms
63,488 KB
testcase_03 AC 1,478 ms
63,512 KB
testcase_04 AC 1,504 ms
63,744 KB
testcase_05 AC 1,507 ms
63,488 KB
testcase_06 AC 1,482 ms
63,744 KB
testcase_07 AC 1,476 ms
63,360 KB
testcase_08 AC 1,512 ms
63,560 KB
testcase_09 AC 1,546 ms
63,504 KB
testcase_10 AC 1,524 ms
63,616 KB
testcase_11 AC 1,515 ms
63,488 KB
testcase_12 AC 1,521 ms
63,488 KB
testcase_13 AC 1,542 ms
63,616 KB
testcase_14 AC 1,525 ms
63,488 KB
testcase_15 AC 1,512 ms
63,488 KB
testcase_16 AC 1,532 ms
63,616 KB
testcase_17 AC 1,577 ms
63,488 KB
testcase_18 AC 1,544 ms
63,488 KB
testcase_19 AC 1,563 ms
63,744 KB
testcase_20 AC 1,521 ms
63,616 KB
testcase_21 AC 1,549 ms
63,488 KB
testcase_22 AC 1,571 ms
63,488 KB
testcase_23 AC 1,583 ms
63,676 KB
testcase_24 AC 1,526 ms
63,488 KB
testcase_25 AC 1,555 ms
63,488 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