結果

問題 No.12 限定された素数
ユーザー chocoruskchocorusk
提出日時 2020-09-07 23:02:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 519 ms / 5,000 ms
コード長 700 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 154,368 KB
最終ジャッジ日時 2024-05-07 00:16:32
合計ジャッジ時間 14,203 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 467 ms
153,776 KB
testcase_01 AC 477 ms
154,112 KB
testcase_02 AC 481 ms
153,788 KB
testcase_03 AC 466 ms
154,112 KB
testcase_04 AC 519 ms
153,932 KB
testcase_05 AC 487 ms
154,108 KB
testcase_06 AC 467 ms
153,936 KB
testcase_07 AC 474 ms
153,960 KB
testcase_08 AC 469 ms
153,864 KB
testcase_09 AC 464 ms
153,888 KB
testcase_10 AC 472 ms
153,692 KB
testcase_11 AC 469 ms
154,172 KB
testcase_12 AC 474 ms
153,708 KB
testcase_13 AC 486 ms
153,908 KB
testcase_14 AC 475 ms
154,028 KB
testcase_15 AC 475 ms
153,912 KB
testcase_16 AC 475 ms
153,800 KB
testcase_17 AC 475 ms
153,688 KB
testcase_18 AC 465 ms
153,832 KB
testcase_19 AC 467 ms
154,080 KB
testcase_20 AC 471 ms
153,940 KB
testcase_21 AC 477 ms
153,984 KB
testcase_22 AC 476 ms
153,872 KB
testcase_23 AC 474 ms
153,932 KB
testcase_24 AC 472 ms
153,856 KB
testcase_25 AC 472 ms
154,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def prime_sieve(n):
    isprime=[True]*(n+1)
    isprime[0]=False
    isprime[1]=False
    for i in range(2, n+1):
        if isprime[i]:
            for j in range(2*i, n+1, i):
                isprime[j]=False
    return isprime
n=int(input())
a=list(map(int, input().split()))
b=0
for x in a:
    b^=(1<<x)
isprime=prime_sieve(5000000)
def digit(x):
    if not isprime[x]:
        return 0
    b=0
    while x>0:
        b|=(1<<(x%10))
        x//=10
    return b
d=[digit(i) for i in range(5000001)]
pr=0
s=0
ans=-1
for i, x in enumerate(d):
    if (x|b)==b:
        s|=x
        continue
    if s==b:
        ans=max(ans, i-pr-2)
    pr=i
    s=0
if s==b:
    ans=max(ans, 4999999-pr)
print(ans)
0