結果

問題 No.12 限定された素数
ユーザー konchanksukonchanksu
提出日時 2020-04-30 01:40:58
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 888 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 50,304 KB
最終ジャッジ日時 2024-11-30 17:53:30
合計ジャッジ時間 56,710 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,033 ms
49,792 KB
testcase_01 AC 2,081 ms
50,048 KB
testcase_02 AC 2,016 ms
49,920 KB
testcase_03 AC 1,986 ms
49,920 KB
testcase_04 AC 2,018 ms
49,920 KB
testcase_05 AC 2,115 ms
49,920 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 2,059 ms
49,920 KB
testcase_09 AC 2,027 ms
49,920 KB
testcase_10 AC 2,098 ms
50,048 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 2,016 ms
49,920 KB
testcase_18 AC 1,998 ms
50,176 KB
testcase_19 AC 1,990 ms
50,048 KB
testcase_20 AC 2,020 ms
49,920 KB
testcase_21 AC 2,094 ms
49,920 KB
testcase_22 AC 1,997 ms
49,920 KB
testcase_23 AC 1,993 ms
50,048 KB
testcase_24 AC 1,996 ms
50,048 KB
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

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)
left = 1
right = 1
nokori = copy(A)

for i in prime:
    right = i - 1
    tmp = set(str(i))
    if A | tmp != A:
        if nokori:
            left = i + 1
            nokori = copy(A)
            continue
        else:
            ans = max(ans, abs(right - left))
            nokori = copy(A)
            continue
    nokori = nokori - tmp
    
print(ans if len(A) != 10 else 4999999)
0