結果

問題 No.12 限定された素数
ユーザー chocoruskchocorusk
提出日時 2020-09-07 23:02:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 4,351 ms / 5,000 ms
コード長 700 bytes
コンパイル時間 110 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 97,280 KB
最終ジャッジ日時 2024-05-07 00:19:00
合計ジャッジ時間 114,627 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4,104 ms
97,096 KB
testcase_01 AC 4,018 ms
97,152 KB
testcase_02 AC 4,170 ms
97,024 KB
testcase_03 AC 4,292 ms
97,024 KB
testcase_04 AC 4,098 ms
97,152 KB
testcase_05 AC 4,099 ms
97,280 KB
testcase_06 AC 4,217 ms
97,280 KB
testcase_07 AC 4,348 ms
97,152 KB
testcase_08 AC 4,220 ms
97,024 KB
testcase_09 AC 4,296 ms
97,152 KB
testcase_10 AC 4,250 ms
97,024 KB
testcase_11 AC 4,248 ms
97,280 KB
testcase_12 AC 4,158 ms
97,280 KB
testcase_13 AC 4,254 ms
97,152 KB
testcase_14 AC 4,151 ms
97,024 KB
testcase_15 AC 4,341 ms
97,152 KB
testcase_16 AC 4,201 ms
97,024 KB
testcase_17 AC 4,243 ms
97,024 KB
testcase_18 AC 4,077 ms
96,948 KB
testcase_19 AC 4,102 ms
97,276 KB
testcase_20 AC 4,140 ms
97,280 KB
testcase_21 AC 4,351 ms
97,152 KB
testcase_22 AC 4,109 ms
97,152 KB
testcase_23 AC 4,077 ms
97,152 KB
testcase_24 AC 4,030 ms
97,024 KB
testcase_25 AC 4,146 ms
96,948 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