結果

問題 No.12 限定された素数
ユーザー takakintakakin
提出日時 2020-06-08 22:36:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 3,078 ms / 5,000 ms
コード長 733 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 63,616 KB
最終ジャッジ日時 2024-06-08 01:39:58
合計ジャッジ時間 53,873 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,616 ms
63,360 KB
testcase_01 AC 1,956 ms
63,232 KB
testcase_02 AC 1,633 ms
63,232 KB
testcase_03 AC 3,078 ms
63,488 KB
testcase_04 AC 1,638 ms
63,488 KB
testcase_05 AC 2,048 ms
63,360 KB
testcase_06 AC 2,028 ms
63,488 KB
testcase_07 AC 2,366 ms
63,360 KB
testcase_08 AC 1,954 ms
63,488 KB
testcase_09 AC 1,728 ms
63,616 KB
testcase_10 AC 2,004 ms
63,440 KB
testcase_11 AC 2,654 ms
63,488 KB
testcase_12 AC 2,422 ms
63,440 KB
testcase_13 AC 2,057 ms
63,488 KB
testcase_14 AC 1,943 ms
63,488 KB
testcase_15 AC 2,104 ms
63,360 KB
testcase_16 AC 2,587 ms
63,616 KB
testcase_17 AC 1,570 ms
63,360 KB
testcase_18 AC 1,611 ms
63,488 KB
testcase_19 AC 1,637 ms
63,488 KB
testcase_20 AC 1,588 ms
63,616 KB
testcase_21 AC 1,682 ms
63,616 KB
testcase_22 AC 1,593 ms
63,488 KB
testcase_23 AC 1,628 ms
63,488 KB
testcase_24 AC 1,565 ms
63,488 KB
testcase_25 AC 2,076 ms
63,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n=int(input())
A=set(int(i) for i in input().split())
def primes(n):
  is_prime=[True]*(n+1)
  is_prime[0]=False
  is_prime[1]=False
  for i in range(2,int(n**0.5)+1):
    if not is_prime[i]:
      continue
    for j in range(i*2,n+1,i):
      is_prime[j]=False
  return [i for i in range(n+1) if is_prime[i]]
P=primes(5*10**6)
cur=set()
prev=1
ans=-1
for i,p in enumerate(P):
  cur2=set()
  chk=True
  for pp in str(p):
    if int(pp) in A:
      cur2.add(int(pp))
    else:
      chk=False
      break
  if chk:
    for c in cur2:
      cur.add(c)
  else:
    if A==cur:
      ans=max(ans,p-prev-1)
    cur=set()
    prev=p+1
if A==cur:
  ans=max(ans,5*10**6-prev)
print(ans)
0