結果

問題 No.12 限定された素数
ユーザー yaoshimaxyaoshimax
提出日時 2015-02-09 22:15:08
言語 Python2
(2.7.18)
結果
AC  
実行時間 4,314 ms / 5,000 ms
コード長 1,065 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 283,992 KB
最終ジャッジ日時 2024-05-03 08:59:21
合計ジャッジ時間 95,577 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3,173 ms
283,860 KB
testcase_01 AC 3,343 ms
283,732 KB
testcase_02 AC 3,269 ms
283,608 KB
testcase_03 AC 4,314 ms
283,736 KB
testcase_04 AC 3,286 ms
283,864 KB
testcase_05 AC 3,418 ms
283,860 KB
testcase_06 AC 3,835 ms
283,860 KB
testcase_07 AC 3,815 ms
283,860 KB
testcase_08 AC 3,470 ms
283,732 KB
testcase_09 AC 3,730 ms
283,732 KB
testcase_10 AC 3,312 ms
283,736 KB
testcase_11 AC 3,998 ms
283,860 KB
testcase_12 AC 3,793 ms
283,864 KB
testcase_13 AC 3,662 ms
283,864 KB
testcase_14 AC 3,365 ms
283,732 KB
testcase_15 AC 3,694 ms
283,988 KB
testcase_16 AC 3,840 ms
283,992 KB
testcase_17 AC 3,276 ms
283,860 KB
testcase_18 AC 3,196 ms
283,744 KB
testcase_19 AC 3,202 ms
283,992 KB
testcase_20 AC 3,240 ms
283,864 KB
testcase_21 AC 3,346 ms
283,860 KB
testcase_22 AC 3,238 ms
283,864 KB
testcase_23 AC 3,226 ms
283,736 KB
testcase_24 AC 3,227 ms
283,860 KB
testcase_25 AC 3,425 ms
283,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(raw_input())
A=map(int,raw_input().split())
isPrime=[True for i in range(5000001)]
isPrime[0]=False
isPrime[1]=False
primes=[0]
isOK=[False for i in range(10)]
for a in A:
   isOK[a]=True
for i in range(5000001):
   if isPrime[i]:
      primes.append(i)
      if i*i > 5000001:
         continue
      for j in range(i+i,5000001,i):
         isPrime[j]=False
primes.append(5000001)
ans = -1
i = 1
while i < len(primes)-1:
   p=primes[i]
   ok=True
   s= set([])
   #print primes[i]
   while p != 0:
      if isOK[p%10] == False :
         ok=False
         break
      s.add(p%10)
      p/=10
   if ok==False:
      i+=1
      continue
   j = i+1
   while j < len(primes)-1:
      p = primes[j]
      ok2=True
      while p != 0:
         if isOK[p%10] == False:
            ok2=False
            break
         p/=10
      if ok2== False:
         break
      p=primes[j]
      while p != 0:
         s.add(p%10)
         p/=10
      j+=1
   if len(s)==N:
      ans = max(ans, primes[j]-1-(primes[i-1]+1) )
   #print primes[i-1],primes[j]
   i=j+1
print ans
0