結果

問題 No.12 限定された素数
ユーザー roarisroaris
提出日時 2022-09-27 17:52:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 319 ms / 5,000 ms
コード長 829 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,828 KB
実行使用メモリ 141,184 KB
最終ジャッジ日時 2024-06-02 01:08:09
合計ジャッジ時間 8,609 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 261 ms
140,180 KB
testcase_01 AC 296 ms
140,428 KB
testcase_02 AC 267 ms
140,248 KB
testcase_03 AC 317 ms
140,416 KB
testcase_04 AC 278 ms
140,288 KB
testcase_05 AC 289 ms
141,184 KB
testcase_06 AC 279 ms
140,032 KB
testcase_07 AC 296 ms
140,288 KB
testcase_08 AC 286 ms
140,544 KB
testcase_09 AC 281 ms
140,256 KB
testcase_10 AC 298 ms
140,544 KB
testcase_11 AC 319 ms
140,536 KB
testcase_12 AC 292 ms
140,472 KB
testcase_13 AC 284 ms
140,416 KB
testcase_14 AC 294 ms
140,544 KB
testcase_15 AC 284 ms
140,288 KB
testcase_16 AC 314 ms
140,544 KB
testcase_17 AC 270 ms
140,416 KB
testcase_18 AC 269 ms
140,300 KB
testcase_19 AC 264 ms
140,160 KB
testcase_20 AC 258 ms
140,416 KB
testcase_21 AC 275 ms
140,308 KB
testcase_22 AC 272 ms
140,288 KB
testcase_23 AC 260 ms
140,160 KB
testcase_24 AC 260 ms
140,544 KB
testcase_25 AC 295 ms
140,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def era(n):
    is_prime = [True]*(n+1)
    is_prime[0] = False
    is_prime[1] = False
    
    for i in range(2, int(n**0.5)+1):
        if not is_prime[i]:
            continue
        
        for j in range(2*i, n+1, i):
            is_prime[j] = False
    
    return [p for p in range(n+1) if is_prime[p]]

N = int(input())
A = list(map(int, input().split()))
S = 0

for Ai in A:
    S += 1<<Ai

p = era(5*10**6)
L = 1
now = 0
ans = -1

for pi in p:
    ok = True
    s = str(pi)
    
    for i in range(len(s)):
        if not (S>>int(s[i]))&1:
            ok = False
            break
    
    if not ok:
        if now==S:
            ans = max(ans, pi-1-L)

        L = pi+1
        now = 0
    else:
        for i in range(len(s)):
            now |= 1<<int(s[i])

if now==S:
    ans = max(ans, 5*10**6-L)

print(ans)
0