結果

問題 No.12 限定された素数
ユーザー taisuketaisuke
提出日時 2023-02-22 17:13:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,342 bytes
コンパイル時間 112 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 44,284 KB
最終ジャッジ日時 2024-07-22 18:42:27
合計ジャッジ時間 42,851 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,567 ms
44,068 KB
testcase_01 AC 1,585 ms
43,996 KB
testcase_02 AC 1,538 ms
44,056 KB
testcase_03 AC 1,476 ms
44,144 KB
testcase_04 AC 1,538 ms
44,008 KB
testcase_05 AC 1,524 ms
44,136 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 1,539 ms
44,064 KB
testcase_09 AC 1,567 ms
44,064 KB
testcase_10 AC 1,550 ms
44,228 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 1,629 ms
44,120 KB
testcase_18 AC 1,557 ms
44,228 KB
testcase_19 AC 1,613 ms
44,116 KB
testcase_20 AC 1,622 ms
44,132 KB
testcase_21 AC 1,610 ms
44,008 KB
testcase_22 AC 1,587 ms
44,124 KB
testcase_23 AC 1,544 ms
44,204 KB
testcase_24 AC 1,537 ms
44,068 KB
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def Eratosthenes(n):
    sieve = [True] * ((n + 1) // 2)
    for i in range(1, (int(n ** 0.5) + 1) // 2):
        if sieve[i]:
            for j in range(i * 3 + 1, (n + 1) // 2, i * 2 + 1):
                sieve[j] = False
    res = [i * 2 + 1 for i, s in enumerate(sieve) if s]
    res[0] = 2
    return res


def check(nums, used, n):
    cnt = [0, 0]
    for i in range(10):
        if used[i] > 0:
            cnt[nums[i]] += 1
    if cnt[0] > 0:
        return -1
    if cnt[1] < n:
        return 0
    return 1


def getDigits(x):
    ret = []
    while x > 0:
        ret.append(x % 10)
        x //= 10
    return ret


n = int(input())
a = list(map(int, input().split()))
MAX = 5000000
prime = Eratosthenes(MAX)
nums = [0] * 10
for i in a:
    nums[i] = 1

used = [0] * 10
idx = 0
l = 1
k = 1

ans = -1
prime.append(MAX)
state = 0
pre = 0

while idx < len(prime) - 1:
    d = []
    while state != -1:
        pre = state
        k = prime[idx]
        d.clear()
        d = getDigits(k)
        for i in d:
            used[i] += 1
        state = check(nums, used, n)
        idx += 1
        if idx >= len(prime) - 1:
            pre = state
            break

    if pre == 1:
        ans = max(ans, k - 1 - l)
    else:
        l = k + 1
    used = [0] * 10
    state = 0

if pre == 1:
    ans = max(ans, MAX - l)

print(ans)
0