結果

問題 No.12 限定された素数
ユーザー こるこる
提出日時 2017-01-07 12:28:57
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 957 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 210,364 KB
最終ジャッジ日時 2024-12-17 15:54:03
合計ジャッジ時間 112,615 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3,998 ms
209,736 KB
testcase_01 AC 3,869 ms
209,740 KB
testcase_02 AC 3,808 ms
209,620 KB
testcase_03 AC 4,566 ms
209,552 KB
testcase_04 AC 3,934 ms
209,744 KB
testcase_05 AC 4,123 ms
209,560 KB
testcase_06 AC 4,448 ms
209,552 KB
testcase_07 AC 4,627 ms
209,536 KB
testcase_08 AC 3,888 ms
209,564 KB
testcase_09 AC 3,818 ms
209,536 KB
testcase_10 AC 4,034 ms
209,580 KB
testcase_11 TLE -
testcase_12 AC 4,631 ms
209,692 KB
testcase_13 AC 4,239 ms
209,572 KB
testcase_14 AC 3,988 ms
209,608 KB
testcase_15 AC 4,060 ms
209,764 KB
testcase_16 AC 4,908 ms
210,364 KB
testcase_17 AC 3,861 ms
209,544 KB
testcase_18 AC 3,700 ms
209,604 KB
testcase_19 AC 3,769 ms
209,660 KB
testcase_20 AC 3,794 ms
209,532 KB
testcase_21 AC 3,751 ms
209,700 KB
testcase_22 AC 3,929 ms
209,560 KB
testcase_23 AC 3,717 ms
209,696 KB
testcase_24 AC 3,825 ms
209,752 KB
testcase_25 AC 3,962 ms
209,596 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 range(len(s)):
        if not s[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 range(len(str(list[r]))):
                if str(list[r])[i] in a:
                    end_list[a.index(str(list[r])[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