結果

問題 No.2218 Multiple LIS
ユーザー titiatitia
提出日時 2023-02-17 22:42:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,398 ms / 3,000 ms
コード長 1,055 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 23,016 KB
最終ジャッジ日時 2024-07-19 13:53:42
合計ジャッジ時間 24,129 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 173 ms
18,432 KB
testcase_01 AC 170 ms
18,432 KB
testcase_02 AC 170 ms
18,560 KB
testcase_03 AC 170 ms
18,560 KB
testcase_04 AC 173 ms
18,560 KB
testcase_05 AC 171 ms
18,304 KB
testcase_06 AC 172 ms
18,432 KB
testcase_07 AC 175 ms
18,304 KB
testcase_08 AC 172 ms
18,560 KB
testcase_09 AC 175 ms
18,432 KB
testcase_10 AC 169 ms
18,560 KB
testcase_11 AC 177 ms
18,432 KB
testcase_12 AC 172 ms
18,432 KB
testcase_13 AC 178 ms
18,432 KB
testcase_14 AC 176 ms
18,304 KB
testcase_15 AC 181 ms
18,304 KB
testcase_16 AC 173 ms
18,560 KB
testcase_17 AC 174 ms
18,304 KB
testcase_18 AC 178 ms
18,432 KB
testcase_19 AC 177 ms
18,432 KB
testcase_20 AC 183 ms
18,432 KB
testcase_21 AC 227 ms
18,816 KB
testcase_22 AC 525 ms
20,104 KB
testcase_23 AC 783 ms
21,408 KB
testcase_24 AC 296 ms
19,072 KB
testcase_25 AC 859 ms
21,756 KB
testcase_26 AC 1,139 ms
23,016 KB
testcase_27 AC 1,128 ms
22,876 KB
testcase_28 AC 1,158 ms
23,012 KB
testcase_29 AC 1,158 ms
23,012 KB
testcase_30 AC 1,163 ms
22,956 KB
testcase_31 AC 856 ms
20,568 KB
testcase_32 AC 849 ms
20,708 KB
testcase_33 AC 841 ms
20,568 KB
testcase_34 AC 844 ms
20,556 KB
testcase_35 AC 837 ms
20,648 KB
testcase_36 AC 273 ms
19,928 KB
testcase_37 AC 2,398 ms
22,324 KB
testcase_38 AC 176 ms
18,432 KB
testcase_39 AC 180 ms
18,560 KB
testcase_40 AC 1,347 ms
22,424 KB
testcase_41 AC 1,346 ms
22,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
A = list(map(int,input().split()))

# エラトステネスの篩を用いた素因数分解・約数列挙
MAX=2*10**5+10 # 使いたい最大値を指定

# Sieve[i]で、iの最も小さい約数を返す。
Sieve=[i for i in range(MAX)]

for i in range(2,MAX):
    if Sieve[i]!=i:
        continue
    
    for j in range(i,MAX,i):
        if Sieve[j]==j:
            Sieve[j]=i

# 素因数分解
def fact(x):
    D=dict()
    while x!=1:
        k=Sieve[x]
        if k in D:
            D[k]+=1
        else:
            D[k]=1
        x//=k
    return D

# 約数列挙
def faclist(x):
    LIST=[1]
    while x!=1:
        k=Sieve[x]
        count=0
        while x%k==0:
            count+=1
            x//=k

        LIST2=[]
        for l in LIST:
            for i in range(1,count+1):
                LIST2.append(l*k**i)
        LIST+=LIST2

    return LIST

DP=[0]*(111111)

for a in A:
    MAX=0
    for v in faclist(a):
        MAX=max(MAX,DP[v]+1)
    DP[a]=MAX

print(max(DP))


0