結果

問題 No.12 限定された素数
ユーザー konchanksukonchanksu
提出日時 2020-04-30 02:01:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 774 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 52,036 KB
最終ジャッジ日時 2024-05-08 00:13:12
合計ジャッジ時間 54,154 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,938 ms
50,048 KB
testcase_01 AC 2,029 ms
50,140 KB
testcase_02 AC 1,916 ms
50,176 KB
testcase_03 WA -
testcase_04 AC 1,910 ms
50,048 KB
testcase_05 AC 1,990 ms
50,048 KB
testcase_06 AC 1,944 ms
50,116 KB
testcase_07 AC 1,942 ms
50,100 KB
testcase_08 AC 1,986 ms
50,092 KB
testcase_09 AC 1,963 ms
49,976 KB
testcase_10 AC 2,123 ms
50,304 KB
testcase_11 AC 1,928 ms
50,048 KB
testcase_12 AC 1,959 ms
50,048 KB
testcase_13 AC 1,982 ms
50,048 KB
testcase_14 AC 1,993 ms
50,176 KB
testcase_15 AC 1,996 ms
50,100 KB
testcase_16 AC 1,981 ms
50,048 KB
testcase_17 AC 1,927 ms
50,304 KB
testcase_18 AC 1,941 ms
49,976 KB
testcase_19 AC 1,933 ms
50,176 KB
testcase_20 AC 1,914 ms
50,128 KB
testcase_21 AC 1,986 ms
50,048 KB
testcase_22 AC 1,915 ms
50,032 KB
testcase_23 AC 1,926 ms
50,176 KB
testcase_24 AC 1,899 ms
50,048 KB
testcase_25 AC 1,994 ms
50,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from copy import copy

def prime_num(end):
    prime_list = [True for i in range(end + 1)]
    prime_list[0], prime_list[1] = False, False
    
    for i in range(2, int(end ** 0.5) + 1):
        if not prime_list[i]:
            continue
        for j in range(i * 2, end + 1, i):
            prime_list[j] = False
            
    return (i for i in range(2, end + 1) if prime_list[i])
            
N = int(input())
A = set(input().split())
ans = -1

prime = prime_num(5 * 10 ** 6)
lists = copy(A)
nokori = copy(A)
left = 1

for i in prime:
    tmp = set(str(i))
    if A | tmp != A:
        if not nokori:     
            ans = max(ans, abs(i - left - 1))
        left = i + 1
        nokori = copy(A)
        continue

    nokori -= tmp

print(max(ans, 4999999 - left))
0