結果

問題 No.12 限定された素数
ユーザー mkawa2mkawa2
提出日時 2020-01-02 10:11:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,111 ms / 5,000 ms
コード長 1,597 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 83,640 KB
最終ジャッジ日時 2024-05-03 11:02:31
合計ジャッジ時間 59,107 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,084 ms
83,324 KB
testcase_01 AC 2,086 ms
83,560 KB
testcase_02 AC 2,040 ms
83,288 KB
testcase_03 AC 2,068 ms
83,416 KB
testcase_04 AC 2,111 ms
83,464 KB
testcase_05 AC 2,073 ms
83,352 KB
testcase_06 AC 2,089 ms
83,404 KB
testcase_07 AC 2,081 ms
83,512 KB
testcase_08 AC 2,044 ms
83,544 KB
testcase_09 AC 2,081 ms
83,640 KB
testcase_10 AC 2,094 ms
83,640 KB
testcase_11 AC 2,090 ms
83,400 KB
testcase_12 AC 2,085 ms
83,392 KB
testcase_13 AC 2,047 ms
83,200 KB
testcase_14 AC 2,057 ms
83,572 KB
testcase_15 AC 2,080 ms
83,564 KB
testcase_16 AC 2,093 ms
83,404 KB
testcase_17 AC 2,057 ms
83,396 KB
testcase_18 AC 2,071 ms
83,388 KB
testcase_19 AC 2,065 ms
83,532 KB
testcase_20 AC 2,086 ms
83,436 KB
testcase_21 AC 2,058 ms
83,436 KB
testcase_22 AC 2,037 ms
83,212 KB
testcase_23 AC 2,035 ms
83,388 KB
testcase_24 AC 2,032 ms
83,192 KB
testcase_25 AC 2,040 ms
83,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import *
from bisect import *
from math import *
from collections import *
from heapq import *
from random import *
from decimal import *
import numpy as np
import sys

sys.setrecursionlimit(10 ** 6)
int1 = lambda x: int(x) - 1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def MI(): return map(int, sys.stdin.readline().split())
def MI1(): return map(int1, sys.stdin.readline().split())
def MF(): return map(float, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LF(): return list(map(float, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
dij = [(1, 0), (0, 1), (-1, 0), (0, -1)]

def main():
    def xtobit(x):
        res=0
        for c in str(x):
            res|=1<<int(c)
        return res

    n=II()
    aa=LI()
    a=sum(1<<ak for ak in aa)
    #print(format(a,'b'))

    prime=[0,1]*2500005
    prime[1]=0
    prime[2]=1
    #pp=[]
    l=1
    s=0
    ans=-1
    for x in range(1,5000001):
        #if x**2>5000000:break
        if prime[x]:
            bit=xtobit(x)
            if bit|a!=a:
                if s==a:
                    ans=max(ans,x-l-1)
                    #print(l,x,x-l-1,ans)
                l=x+1
                s=0
            else:
                s|=bit
            #pp.append(x)
            if x==2:continue
            for y in range(x**2,5000001,x*2):
                prime[y]=0
    if s==a:
        ans=max(ans,5000000-l)
    print(ans)

main()
0