結果

問題 No.12 限定された素数
ユーザー convexineqconvexineq
提出日時 2021-01-05 09:42:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,311 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 142,332 KB
最終ジャッジ日時 2024-10-15 16:30:53
合計ジャッジ時間 36,977 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,240 ms
142,080 KB
testcase_01 AC 1,357 ms
141,952 KB
testcase_02 AC 1,179 ms
141,952 KB
testcase_03 WA -
testcase_04 AC 1,260 ms
142,208 KB
testcase_05 AC 1,295 ms
141,824 KB
testcase_06 AC 1,254 ms
141,824 KB
testcase_07 AC 1,532 ms
141,952 KB
testcase_08 AC 1,308 ms
141,568 KB
testcase_09 AC 1,276 ms
142,080 KB
testcase_10 AC 1,399 ms
141,952 KB
testcase_11 AC 1,623 ms
141,952 KB
testcase_12 AC 1,380 ms
141,824 KB
testcase_13 AC 1,299 ms
141,824 KB
testcase_14 AC 1,331 ms
141,824 KB
testcase_15 AC 1,280 ms
141,696 KB
testcase_16 AC 1,289 ms
142,080 KB
testcase_17 AC 1,358 ms
142,080 KB
testcase_18 AC 1,254 ms
141,824 KB
testcase_19 AC 1,242 ms
142,036 KB
testcase_20 AC 1,192 ms
141,952 KB
testcase_21 AC 1,364 ms
141,824 KB
testcase_22 AC 1,234 ms
142,080 KB
testcase_23 AC 1,474 ms
142,200 KB
testcase_24 AC 1,286 ms
142,332 KB
testcase_25 AC 1,351 ms
141,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Eratosthenes(N): #N以下の素数のリストを返す
    N+=1
    is_prime_list = [True]*N
    is_prime_list[0], is_prime_list[1] = False, False #リストが必要なときはこの2行を有効化
    for j in range(4,N,2): is_prime_list[j] = False
    m = int(N**0.5)+1
    for i in range(3,m,2):
        if is_prime_list[i]:
            is_prime_list[i*i::2*i]=[False]*((N-i*i-1)//(2*i)+1)
    #return [2] + [i for i in range(3,N,2) if is_prime_list[i]]
    return is_prime_list


res = [0]*10
n = int(input())
*a, = map(int,input().split())
for ai in a:
    res[ai] += 1

N = 5*10**6+1
ans = -1
lst = Eratosthenes(N)
used = [0]*10
r = 1
for l in range(1,N):
    if r < l:
        for i in str(r+1):
            used[int(i)] += 1
        r += 1
    while r < N:
        if lst[r+1]==1:
            flag = 1
            for i in str(r+1):
                if res[int(i)]==0: flag = 0
            if flag:
                for i in str(r+1):
                    used[int(i)] += 1
            else:
                break
        r += 1
    for i in range(10):
        if (res[i] and used[i]==0) or (res[i]==0 and used[i]): break
    else:
        ans = max(ans,r-l)
        #print(l,r,used)
    #if l <= 20: print(l,r,used)
    if lst[l]:
        for i in str(l):
            used[int(i)] -= 1

print(ans)
0