結果

問題 No.12 限定された素数
ユーザー yuki2006yuki2006
提出日時 2015-02-05 02:45:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 335 ms / 5,000 ms
コード長 676 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 123,588 KB
最終ジャッジ日時 2024-06-25 16:18:13
合計ジャッジ時間 10,133 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 335 ms
123,248 KB
testcase_01 AC 321 ms
123,552 KB
testcase_02 AC 325 ms
123,388 KB
testcase_03 AC 302 ms
123,284 KB
testcase_04 AC 320 ms
123,500 KB
testcase_05 AC 325 ms
123,400 KB
testcase_06 AC 325 ms
123,044 KB
testcase_07 AC 324 ms
123,360 KB
testcase_08 AC 319 ms
123,244 KB
testcase_09 AC 317 ms
123,428 KB
testcase_10 AC 322 ms
123,204 KB
testcase_11 AC 335 ms
123,588 KB
testcase_12 AC 331 ms
123,356 KB
testcase_13 AC 317 ms
123,144 KB
testcase_14 AC 312 ms
123,060 KB
testcase_15 AC 321 ms
123,344 KB
testcase_16 AC 331 ms
123,512 KB
testcase_17 AC 316 ms
123,356 KB
testcase_18 AC 321 ms
123,144 KB
testcase_19 AC 315 ms
123,268 KB
testcase_20 AC 312 ms
123,124 KB
testcase_21 AC 320 ms
123,280 KB
testcase_22 AC 313 ms
123,432 KB
testcase_23 AC 313 ms
123,336 KB
testcase_24 AC 323 ms
123,112 KB
testcase_25 AC 322 ms
123,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# ref http://yukicoder.me/submissions/3957
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