結果

問題 No.12 限定された素数
ユーザー rlangevinrlangevin
提出日時 2023-10-24 12:28:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,127 ms / 5,000 ms
コード長 837 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 169,972 KB
最終ジャッジ日時 2024-09-23 04:48:52
合計ジャッジ時間 14,504 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 415 ms
169,088 KB
testcase_01 AC 451 ms
169,216 KB
testcase_02 AC 416 ms
169,216 KB
testcase_03 AC 1,127 ms
169,088 KB
testcase_04 AC 438 ms
169,216 KB
testcase_05 AC 487 ms
169,472 KB
testcase_06 AC 530 ms
169,600 KB
testcase_07 AC 551 ms
169,472 KB
testcase_08 AC 453 ms
169,600 KB
testcase_09 AC 425 ms
169,972 KB
testcase_10 AC 461 ms
169,472 KB
testcase_11 AC 664 ms
169,472 KB
testcase_12 AC 558 ms
169,648 KB
testcase_13 AC 526 ms
169,448 KB
testcase_14 AC 466 ms
169,344 KB
testcase_15 AC 506 ms
169,472 KB
testcase_16 AC 587 ms
169,344 KB
testcase_17 AC 441 ms
169,472 KB
testcase_18 AC 431 ms
169,216 KB
testcase_19 AC 427 ms
169,472 KB
testcase_20 AC 427 ms
169,068 KB
testcase_21 AC 429 ms
169,472 KB
testcase_22 AC 421 ms
169,308 KB
testcase_23 AC 405 ms
168,980 KB
testcase_24 AC 409 ms
169,472 KB
testcase_25 AC 484 ms
169,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt, ceil


def Sieve(n):
    lst = [True] * (n + 1)
    S = set()
    for i in range(2, ceil(sqrt(n)) + 1):
        if lst[i]:
            for j in range(2 * i, n + 1, i):
                lst[j] = False
    for i in range(2, n + 1):
        if lst[i]:
            S.add(i)
    return lst

N = int(input())
A = set(map(int, input().split()))
M = 5 * 10**6
cnt = 0
Prime = Sieve(M)
S = set()
ans = -1
flag = 0 
Prime[1] = 0
for i in range(1, M + 1):
    if Prime[i]:
        for p in str(i):
            if int(p) not in A:
                S = set()
                cnt, flag = 0, 0
                break
        else:
            cnt += 1
            for p in str(i):
                S.add(int(p))
    else:
        cnt += 1
    
    if S == A:
        flag = 1
    if flag:
        ans = max(ans, cnt - 1) 

print(ans)
0