結果

問題 No.12 限定された素数
ユーザー yaoshimaxyaoshimax
提出日時 2015-02-09 21:19:46
言語 Python2
(2.7.18)
結果
AC  
実行時間 4,606 ms / 5,000 ms
コード長 1,023 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 283,952 KB
最終ジャッジ日時 2024-11-24 07:44:55
合計ジャッジ時間 104,282 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3,624 ms
283,880 KB
testcase_01 AC 3,731 ms
283,864 KB
testcase_02 AC 3,609 ms
283,732 KB
testcase_03 AC 4,606 ms
283,848 KB
testcase_04 AC 3,652 ms
283,860 KB
testcase_05 AC 3,800 ms
283,864 KB
testcase_06 AC 4,160 ms
283,864 KB
testcase_07 AC 4,100 ms
283,864 KB
testcase_08 AC 3,820 ms
283,864 KB
testcase_09 AC 3,761 ms
283,608 KB
testcase_10 AC 3,666 ms
283,864 KB
testcase_11 AC 4,294 ms
283,860 KB
testcase_12 AC 4,121 ms
283,860 KB
testcase_13 AC 4,043 ms
283,864 KB
testcase_14 AC 3,785 ms
283,864 KB
testcase_15 AC 4,125 ms
283,856 KB
testcase_16 AC 4,184 ms
283,860 KB
testcase_17 AC 3,592 ms
283,912 KB
testcase_18 AC 3,575 ms
283,844 KB
testcase_19 AC 3,568 ms
283,944 KB
testcase_20 AC 3,597 ms
283,732 KB
testcase_21 AC 3,764 ms
283,952 KB
testcase_22 AC 3,616 ms
283,864 KB
testcase_23 AC 3,601 ms
283,864 KB
testcase_24 AC 3,573 ms
283,864 KB
testcase_25 AC 3,763 ms
283,860 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)
      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