結果

問題 No.12 限定された素数
ユーザー konchanksukonchanksu
提出日時 2020-04-30 02:01:18
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 774 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 51,916 KB
最終ジャッジ日時 2024-11-30 21:28:36
合計ジャッジ時間 54,227 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,950 ms
51,456 KB
testcase_01 AC 1,991 ms
51,292 KB
testcase_02 AC 1,946 ms
50,140 KB
testcase_03 WA -
testcase_04 AC 2,004 ms
49,956 KB
testcase_05 AC 2,000 ms
50,136 KB
testcase_06 AC 1,946 ms
50,084 KB
testcase_07 AC 1,948 ms
51,836 KB
testcase_08 AC 2,008 ms
50,264 KB
testcase_09 AC 1,932 ms
50,016 KB
testcase_10 AC 2,040 ms
49,904 KB
testcase_11 AC 1,981 ms
49,904 KB
testcase_12 AC 1,965 ms
49,968 KB
testcase_13 AC 1,983 ms
49,904 KB
testcase_14 AC 2,017 ms
50,076 KB
testcase_15 AC 1,985 ms
51,164 KB
testcase_16 AC 1,985 ms
49,852 KB
testcase_17 AC 1,957 ms
49,908 KB
testcase_18 AC 1,981 ms
50,132 KB
testcase_19 AC 1,924 ms
51,916 KB
testcase_20 AC 1,932 ms
49,852 KB
testcase_21 AC 2,055 ms
51,444 KB
testcase_22 AC 1,940 ms
50,076 KB
testcase_23 AC 1,963 ms
49,784 KB
testcase_24 AC 1,939 ms
49,984 KB
testcase_25 AC 2,036 ms
49,956 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