結果
問題 | No.12 限定された素数 |
ユーザー | OKCH3COOH |
提出日時 | 2019-10-23 23:34:03 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,087 bytes |
コンパイル時間 | 163 ms |
コンパイル使用メモリ | 82,096 KB |
実行使用メモリ | 194,044 KB |
最終ジャッジ日時 | 2024-07-07 10:25:50 |
合計ジャッジ時間 | 9,527 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 692 ms
186,916 KB |
testcase_01 | AC | 743 ms
187,476 KB |
testcase_02 | AC | 715 ms
187,028 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
ソースコード
N = int(input()) A = set(map(int, input().split())) def primeList(): isPrime = [True] * 5000001 now = 0 primeRange = [0] * 5000001 primes = [] for i in range(2, 5000001): if isPrime[i]: primes.append(i) now += 1 k = i while k <= 5000000: isPrime[k] = False k += i primeRange[i] = now return list(primes), primeRange primes, iToRange = primeList() gapIndex = [] for i in range(5000000): if iToRange[i] != iToRange[i + 1]: gapIndex.append(i) M = len(primes) ans = 0 left = 0 while left < M: V = set() right = 0 for i in range(left, M): nums = set(map(int, str(primes[i]))) if nums.issubset(V): continue newV = V.union(nums) if len(newV & A) == len(newV): V = newV else: right = i break if V == A: ans = max(ans, gapIndex[right] - gapIndex[left - 1] - 2) left = max(right + 1, left + 1) if ans == 0: print(-1) else: print(ans)