結果

問題 No.12 限定された素数
ユーザー gigurururugigurururu
提出日時 2014-11-27 21:33:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,021 ms / 5,000 ms
コード長 664 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 46,792 KB
最終ジャッジ日時 2024-05-03 08:56:32
合計ジャッジ時間 26,638 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,021 ms
46,776 KB
testcase_01 AC 944 ms
46,628 KB
testcase_02 AC 976 ms
46,676 KB
testcase_03 AC 913 ms
46,700 KB
testcase_04 AC 947 ms
46,632 KB
testcase_05 AC 940 ms
46,720 KB
testcase_06 AC 949 ms
46,700 KB
testcase_07 AC 935 ms
46,592 KB
testcase_08 AC 946 ms
46,592 KB
testcase_09 AC 959 ms
46,720 KB
testcase_10 AC 924 ms
46,720 KB
testcase_11 AC 927 ms
46,636 KB
testcase_12 AC 921 ms
46,772 KB
testcase_13 AC 946 ms
46,632 KB
testcase_14 AC 930 ms
46,696 KB
testcase_15 AC 938 ms
46,492 KB
testcase_16 AC 973 ms
46,660 KB
testcase_17 AC 948 ms
46,632 KB
testcase_18 AC 937 ms
46,492 KB
testcase_19 AC 951 ms
46,592 KB
testcase_20 AC 948 ms
46,668 KB
testcase_21 AC 971 ms
46,720 KB
testcase_22 AC 979 ms
46,612 KB
testcase_23 AC 944 ms
46,792 KB
testcase_24 AC 952 ms
46,592 KB
testcase_25 AC 964 ms
46,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

def prime(max):
    max2 = (max-3)//2
    sieve = [True]*(max2+1)
    for i in range(int((math.sqrt(max)-3)/2)+1):
        if not sieve[i]: continue
        k = i+i+3
        j = k*(i+1)+i
        while j <= max2:
            sieve[j] = False
            j += k
    sieve = [2]+[i+i+3 for i in range(max2+1) if sieve[i]]
    return sieve


input()
a=set(input().split())

max=5000000
start=1
rest=a
ans=-1
for i in prime(max):
  l=set(str(i))
  if len(l-a):
    if len(rest)==0 and ans<i-1-start: ans=i-1-start
    start=i+1
    rest=a
  else:
    rest=rest-l
if len(rest)==0 and ans<max-start: ans=max-start
print(ans)
0