結果

問題 No.12 限定された素数
ユーザー yaoshimaxyaoshimax
提出日時 2015-02-10 12:17:37
言語 Python2
(2.7.18)
結果
AC  
実行時間 2,014 ms / 5,000 ms
コード長 1,007 bytes
コンパイル時間 44 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 116,680 KB
最終ジャッジ日時 2024-11-24 07:51:08
合計ジャッジ時間 47,931 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,704 ms
116,392 KB
testcase_01 AC 1,691 ms
116,524 KB
testcase_02 AC 1,720 ms
116,396 KB
testcase_03 AC 2,014 ms
116,524 KB
testcase_04 AC 1,698 ms
116,392 KB
testcase_05 AC 1,699 ms
116,380 KB
testcase_06 AC 1,761 ms
116,396 KB
testcase_07 AC 1,823 ms
116,392 KB
testcase_08 AC 1,688 ms
116,524 KB
testcase_09 AC 1,689 ms
116,520 KB
testcase_10 AC 1,697 ms
116,528 KB
testcase_11 AC 1,886 ms
116,680 KB
testcase_12 AC 1,797 ms
116,520 KB
testcase_13 AC 1,740 ms
116,524 KB
testcase_14 AC 1,696 ms
116,520 KB
testcase_15 AC 1,745 ms
116,392 KB
testcase_16 AC 1,847 ms
116,440 KB
testcase_17 AC 1,699 ms
116,396 KB
testcase_18 AC 1,803 ms
116,396 KB
testcase_19 AC 1,698 ms
116,604 KB
testcase_20 AC 1,707 ms
116,524 KB
testcase_21 AC 1,703 ms
116,520 KB
testcase_22 AC 1,699 ms
116,524 KB
testcase_23 AC 1,707 ms
116,520 KB
testcase_24 AC 1,715 ms
116,524 KB
testcase_25 AC 1,702 ms
116,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
N=int(raw_input())
A=set(raw_input().split())

upperBound = 5000001
isPrime=[True for i in range((upperBound-3)/2+1)]
for i in range((int(math.sqrt(upperBound-3))-3)/2+1): # k*k = (2i+3)^2 <= upperBound-3 
   if isPrime[i]:
      k = i+i+3 # this is prime number
      # false out non_prime number from k*k
      # k*k = 4i^2+12i+9 = 2*(2i^2+6i+3)+3
      # k*(k+1) = 2*(2i^2+6i+3)+3 + 2i+3 ... even number. skip
      # k*(k+2) = 2*(2i^2+6i+3+k)+3 
      non_prime = k*(i+1)+i
      for j in range(non_prime,(upperBound-3)/2+1,k):
         isPrime[j]=False
primes = [2] + [i+i+3 for i in range((upperBound-3)/2+1) if isPrime[i]==True]
#print len(primes)
ans = -1
start = 1
cnt = 0
S=set()
for i in primes:
   tmpS = set(str(i))
   if len(tmpS-A) >0:
      if cnt > 0 and len(S)==len(A):
         ans = max(ans, i-1-start)
      start = i+1
      cnt = 0
      S=set()
   else:
      S=S.union(set(str(i)))
      cnt+=1
if cnt > 0 and len(S)== len(A) :
   ans = max(ans,5000000-start)
print ans
0