結果

問題 No.12 限定された素数
ユーザー こるこる
提出日時 2017-01-07 12:53:50
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
AC  
実行時間 4,906 ms / 5,000 ms
コード長 902 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 10,960 KB
実行使用メモリ 206,968 KB
最終ジャッジ日時 2023-08-15 23:42:01
合計ジャッジ時間 114,935 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3,865 ms
206,968 KB
testcase_01 AC 4,242 ms
206,960 KB
testcase_02 AC 3,899 ms
206,884 KB
testcase_03 AC 4,507 ms
206,772 KB
testcase_04 AC 3,953 ms
206,800 KB
testcase_05 AC 4,366 ms
206,776 KB
testcase_06 AC 4,469 ms
206,892 KB
testcase_07 AC 4,361 ms
206,920 KB
testcase_08 AC 4,087 ms
206,880 KB
testcase_09 AC 4,040 ms
206,892 KB
testcase_10 AC 3,974 ms
206,772 KB
testcase_11 AC 4,906 ms
206,936 KB
testcase_12 AC 4,564 ms
206,832 KB
testcase_13 AC 4,170 ms
206,808 KB
testcase_14 AC 4,021 ms
206,908 KB
testcase_15 AC 4,462 ms
206,892 KB
testcase_16 AC 4,554 ms
206,852 KB
testcase_17 AC 3,920 ms
206,908 KB
testcase_18 AC 4,292 ms
206,804 KB
testcase_19 AC 4,034 ms
206,896 KB
testcase_20 AC 3,845 ms
206,848 KB
testcase_21 AC 4,217 ms
206,812 KB
testcase_22 AC 4,195 ms
206,956 KB
testcase_23 AC 4,131 ms
206,892 KB
testcase_24 AC 3,907 ms
206,892 KB
testcase_25 AC 4,292 ms
206,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=[str(i)[0] for i in input().split()]
maxi=5000000
e=list(range(maxi+1))
e[1]=0
i=2
while i**2<=maxi:
    j=i+i
    while j<=maxi:
        e[j]=0
        j+=i
    i+=1
    while e[i]==0:
        i+=1
list=[]
for i in e:
    if i!=0: list.append(i)

sum_max=0
end_flag=False
def check(num):
    s=str(num)
    for i in s:
        if not i in a:
            return False
    return True


l=0
end_list=[0]*n
for r in range(len(list)):
    if check(list[r]):
        if sum(end_list)!=n:
            for i in str(list[r]):
                if i in a:
                    end_list[a.index(i)]=1
        if sum(end_list)==n:
            end_flag=True
            r_index= maxi if r==len(list)-1 else list[r+1]-1
            l_index= 1 if l==0 else list[l-1]+1
            sum_max=max(sum_max,(r_index-l_index))
    else:
        end_list=[0]*n
        l=r+1
print(sum_max if end_flag else -1)
0