結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 424 ms
137,600 KB
testcase_01 AC 415 ms
137,600 KB
testcase_02 AC 408 ms
137,728 KB
testcase_03 AC 397 ms
137,344 KB
testcase_04 AC 408 ms
137,216 KB
testcase_05 AC 437 ms
137,472 KB
testcase_06 AC 409 ms
137,728 KB
testcase_07 AC 417 ms
137,216 KB
testcase_08 AC 440 ms
137,344 KB
testcase_09 AC 453 ms
137,600 KB
testcase_10 AC 426 ms
137,216 KB
testcase_11 AC 416 ms
137,600 KB
testcase_12 AC 429 ms
137,600 KB
testcase_13 AC 443 ms
137,216 KB
testcase_14 AC 431 ms
137,216 KB
testcase_15 AC 424 ms
137,344 KB
testcase_16 AC 442 ms
137,472 KB
testcase_17 AC 416 ms
137,472 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 418 ms
137,216 KB
testcase_21 AC 425 ms
137,728 KB
testcase_22 AC 414 ms
137,344 KB
testcase_23 AC 409 ms
137,216 KB
testcase_24 AC 431 ms
137,216 KB
testcase_25 AC 437 ms
137,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

R = 5000000

sieve = [0]*(R+1)
primes = [1]
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