結果

問題 No.12 限定された素数
ユーザー pluto77pluto77
提出日時 2017-04-13 16:02:03
言語 Python2
(2.7.18)
結果
AC  
実行時間 1,540 ms / 5,000 ms
コード長 579 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 91,648 KB
最終ジャッジ日時 2024-05-03 09:58:46
合計ジャッジ時間 35,416 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,248 ms
91,264 KB
testcase_01 AC 1,247 ms
91,392 KB
testcase_02 AC 1,228 ms
91,392 KB
testcase_03 AC 1,540 ms
91,584 KB
testcase_04 AC 1,250 ms
91,648 KB
testcase_05 AC 1,249 ms
91,392 KB
testcase_06 AC 1,293 ms
91,392 KB
testcase_07 AC 1,319 ms
91,520 KB
testcase_08 AC 1,241 ms
91,392 KB
testcase_09 AC 1,252 ms
91,520 KB
testcase_10 AC 1,219 ms
91,264 KB
testcase_11 AC 1,447 ms
91,392 KB
testcase_12 AC 1,344 ms
91,648 KB
testcase_13 AC 1,259 ms
91,264 KB
testcase_14 AC 1,237 ms
91,392 KB
testcase_15 AC 1,263 ms
91,512 KB
testcase_16 AC 1,366 ms
91,604 KB
testcase_17 AC 1,231 ms
91,392 KB
testcase_18 AC 1,229 ms
91,500 KB
testcase_19 AC 1,235 ms
91,648 KB
testcase_20 AC 1,255 ms
91,392 KB
testcase_21 AC 1,259 ms
91,648 KB
testcase_22 AC 1,248 ms
91,648 KB
testcase_23 AC 1,286 ms
91,264 KB
testcase_24 AC 1,235 ms
91,648 KB
testcase_25 AC 1,251 ms
91,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki_12

def primes(n): 
 if n==2: return [2]
 elif n<2: return []
 s=range(3,n+1,2)
 mroot = n ** 0.5
 half=(n+1)/2-1
 i=0
 m=3
 while m <= mroot:
  if s[i]:
   j=(m*m-3)/2
   s[j]=0
   while j<half:
    s[j]=0
    j+=m
  i=i+1
  m=2*i+3
 return [2]+[x for x in s if x]

raw_input()
a=set(raw_input().split())
res=-1
l=1
cnt=0
s=set()
for i in primes(5000000):
 ts=set(str(i))
 if len(ts-a)>0:
  if cnt>0 and len(s)==len(a):
   res=max(res,i-1-l)
  l=i+1
  cnt=0
  s=set()
 else:
  s=s.union(set(str(i)))
  cnt+=1
if cnt>0 and len(s)==len(a):
 res=max(res,5000000-l)
print res
0