結果

問題 No.12 限定された素数
ユーザー ntudantuda
提出日時 2024-11-07 17:19:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 4,329 ms / 5,000 ms
コード長 888 bytes
コンパイル時間 1,457 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 291,260 KB
最終ジャッジ日時 2024-11-07 17:21:25
合計ジャッジ時間 117,421 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4,212 ms
286,780 KB
testcase_01 AC 4,210 ms
287,064 KB
testcase_02 AC 4,231 ms
286,660 KB
testcase_03 AC 4,223 ms
286,916 KB
testcase_04 AC 4,222 ms
291,132 KB
testcase_05 AC 4,288 ms
291,136 KB
testcase_06 AC 4,235 ms
291,000 KB
testcase_07 AC 4,267 ms
286,776 KB
testcase_08 AC 4,234 ms
287,164 KB
testcase_09 AC 4,256 ms
286,908 KB
testcase_10 AC 4,245 ms
286,908 KB
testcase_11 AC 4,298 ms
291,260 KB
testcase_12 AC 4,258 ms
287,048 KB
testcase_13 AC 4,329 ms
286,792 KB
testcase_14 AC 4,329 ms
287,168 KB
testcase_15 AC 4,264 ms
291,008 KB
testcase_16 AC 4,307 ms
291,140 KB
testcase_17 AC 4,280 ms
286,916 KB
testcase_18 AC 4,245 ms
291,132 KB
testcase_19 AC 4,309 ms
290,872 KB
testcase_20 AC 4,268 ms
287,044 KB
testcase_21 AC 4,267 ms
290,880 KB
testcase_22 AC 4,295 ms
291,004 KB
testcase_23 AC 4,238 ms
287,044 KB
testcase_24 AC 4,272 ms
291,140 KB
testcase_25 AC 4,281 ms
291,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def seachPrimeNum(N):
    if N < 2:
        return []
    max = int(N ** 0.5)
    seachList = [i for i in range(3, N + 1, 2)]
    primeNum = [2]
    while seachList[0] <= max:
        primeNum.append(seachList[0])
        tmp = seachList[0]
        seachList = [i for i in seachList if i % tmp != 0]
    primeNum.extend(seachList)
    return primeNum

def conv(x):
    ret = 0
    while x:
        ret |= (1 << x % 10)
        x //= 10
    return ret

PL = seachPrimeNum(5 * 10 ** 6)
NP = len(PL)
PL.append(5 * 10 ** 6 + 1)
l = 1
N = int(input())
A = list(map(int,input().split()))
B = 0
for a in A:
    B |= (1<<a)
NB = ((1<<10)-1) ^ B
ans = 0
tmp = 0
for i in range(NP):
    p = PL[i]
    if conv(p) & NB:
        l = p + 1
        tmp = 0
    else:
        tmp |= conv(p)
        if tmp == B:
            ans = max(ans,PL[i + 1] - 1 - l)
if ans == 0:
    print(-1)
else:
    print(ans)
0