結果

問題 No.12 限定された素数
ユーザー yaoshimaxyaoshimax
提出日時 2015-02-09 21:19:46
言語 Python2
(2.7.18)
結果
AC  
実行時間 4,824 ms / 5,000 ms
コード長 1,023 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 7,068 KB
実行使用メモリ 284,064 KB
最終ジャッジ日時 2024-05-03 09:02:05
合計ジャッジ時間 109,477 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3,768 ms
283,992 KB
testcase_01 AC 4,009 ms
284,008 KB
testcase_02 AC 3,936 ms
283,860 KB
testcase_03 AC 4,824 ms
283,844 KB
testcase_04 AC 3,837 ms
284,008 KB
testcase_05 AC 3,973 ms
283,952 KB
testcase_06 AC 4,308 ms
283,908 KB
testcase_07 AC 4,356 ms
283,912 KB
testcase_08 AC 3,967 ms
283,988 KB
testcase_09 AC 3,922 ms
283,784 KB
testcase_10 AC 3,843 ms
283,836 KB
testcase_11 AC 4,609 ms
283,848 KB
testcase_12 AC 4,358 ms
283,952 KB
testcase_13 AC 4,202 ms
283,864 KB
testcase_14 AC 3,923 ms
283,996 KB
testcase_15 AC 4,195 ms
284,028 KB
testcase_16 AC 4,347 ms
283,912 KB
testcase_17 AC 3,782 ms
283,868 KB
testcase_18 AC 3,747 ms
284,004 KB
testcase_19 AC 3,749 ms
284,008 KB
testcase_20 AC 3,798 ms
284,056 KB
testcase_21 AC 3,864 ms
283,888 KB
testcase_22 AC 3,777 ms
283,900 KB
testcase_23 AC 3,764 ms
284,064 KB
testcase_24 AC 3,792 ms
283,996 KB
testcase_25 AC 3,982 ms
283,784 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