結果

問題 No.12 限定された素数
ユーザー zimphazimpha
提出日時 2017-12-07 14:23:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 479 ms / 5,000 ms
コード長 529 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 134,304 KB
最終ジャッジ日時 2024-05-03 10:48:17
合計ジャッジ時間 13,734 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 472 ms
134,048 KB
testcase_01 AC 471 ms
134,172 KB
testcase_02 AC 457 ms
134,044 KB
testcase_03 AC 451 ms
133,784 KB
testcase_04 AC 461 ms
133,920 KB
testcase_05 AC 471 ms
133,920 KB
testcase_06 AC 474 ms
134,296 KB
testcase_07 AC 459 ms
134,300 KB
testcase_08 AC 475 ms
134,164 KB
testcase_09 AC 475 ms
133,788 KB
testcase_10 AC 477 ms
134,164 KB
testcase_11 AC 473 ms
134,172 KB
testcase_12 AC 478 ms
134,040 KB
testcase_13 AC 463 ms
134,180 KB
testcase_14 AC 476 ms
133,784 KB
testcase_15 AC 465 ms
134,048 KB
testcase_16 AC 458 ms
134,044 KB
testcase_17 AC 464 ms
133,788 KB
testcase_18 AC 458 ms
134,304 KB
testcase_19 AC 460 ms
133,792 KB
testcase_20 AC 470 ms
134,044 KB
testcase_21 AC 479 ms
134,048 KB
testcase_22 AC 460 ms
133,916 KB
testcase_23 AC 452 ms
133,920 KB
testcase_24 AC 465 ms
134,204 KB
testcase_25 AC 466 ms
133,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def init_primes(n):
  mark = [0] * (n + 1)
  ps = []
  for i in range(2, n + 1):
    if not mark[i]: ps.append(i)
    for p in ps:
      if p * i > n: break
      mark[p * i] = 1
      if i % p == 0: break
  return ps

input()
ds = set(input().split())
s = set()
ret, last = -1, 1
n = 5000000

for p in init_primes(n):
  t = set(str(p))
  if len(t - ds) > 0:
    if len(ds) == len(s):
      ret = max(ret, p - 1 - last)
    s = set()
    last = p + 1
  else:
    s |= t
if len(ds) == len(s):
  ret = max(ret, n - last)
print(ret)
0