結果

問題 No.12 限定された素数
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-12-30 23:56:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 762 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 137,776 KB
最終ジャッジ日時 2024-10-07 02:43:27
合計ジャッジ時間 12,202 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 420 ms
137,584 KB
testcase_01 AC 407 ms
137,416 KB
testcase_02 AC 413 ms
137,472 KB
testcase_03 WA -
testcase_04 AC 410 ms
137,716 KB
testcase_05 AC 411 ms
137,372 KB
testcase_06 AC 421 ms
137,396 KB
testcase_07 AC 419 ms
137,472 KB
testcase_08 AC 419 ms
137,516 KB
testcase_09 AC 420 ms
137,532 KB
testcase_10 AC 431 ms
137,448 KB
testcase_11 AC 420 ms
137,472 KB
testcase_12 AC 434 ms
137,600 KB
testcase_13 AC 419 ms
137,728 KB
testcase_14 AC 434 ms
137,472 KB
testcase_15 AC 412 ms
137,644 KB
testcase_16 AC 447 ms
137,516 KB
testcase_17 AC 402 ms
137,332 KB
testcase_18 AC 413 ms
137,344 KB
testcase_19 AC 404 ms
137,776 KB
testcase_20 AC 433 ms
137,492 KB
testcase_21 AC 415 ms
137,636 KB
testcase_22 AC 416 ms
137,596 KB
testcase_23 AC 416 ms
137,472 KB
testcase_24 AC 405 ms
137,432 KB
testcase_25 AC 431 ms
137,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int,input().split()))

R = 5000000

sieve = [0]*(R+1)
primes = [0]
for i in range(2,R+1):
    if sieve[i]:
        continue
    primes.append(i)
    for j in range(i,R+1,i):
        sieve[j] = 1
flag = 0
for a in A:
    flag |= 1<<a
ans = -1
now = 1
has = 0
count = [0]*10
l = len(primes)
primes.append(R+2)
for i in range(1,l):
    now = max(now,i)
    while now < l and (has | flag) == flag:
        for j in str(primes[now]):
            j = int(j)
            has |= 1<<j
            count[j] += 1
        now += 1
        if has == flag:
            ans = max(ans,primes[now]-primes[i-1]-2)

    for j in str(primes[i]):
        j = int(j)
        count[j] -= 1
        if count[j] == 0:
            has ^= 1<<j
print(ans)
    
0