結果

問題 No.2218 Multiple LIS
ユーザー titiatitia
提出日時 2023-02-17 22:43:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 228 ms / 3,000 ms
コード長 1,055 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 92,468 KB
最終ジャッジ日時 2024-07-19 13:54:36
合計ジャッジ時間 5,671 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
65,048 KB
testcase_01 AC 54 ms
65,000 KB
testcase_02 AC 55 ms
65,888 KB
testcase_03 AC 56 ms
66,244 KB
testcase_04 AC 53 ms
65,324 KB
testcase_05 AC 54 ms
65,884 KB
testcase_06 AC 54 ms
65,820 KB
testcase_07 AC 53 ms
65,200 KB
testcase_08 AC 54 ms
65,364 KB
testcase_09 AC 54 ms
64,984 KB
testcase_10 AC 54 ms
65,008 KB
testcase_11 AC 53 ms
64,992 KB
testcase_12 AC 61 ms
68,396 KB
testcase_13 AC 72 ms
74,908 KB
testcase_14 AC 69 ms
73,884 KB
testcase_15 AC 71 ms
73,552 KB
testcase_16 AC 56 ms
65,124 KB
testcase_17 AC 76 ms
76,584 KB
testcase_18 AC 54 ms
65,888 KB
testcase_19 AC 55 ms
65,576 KB
testcase_20 AC 73 ms
74,880 KB
testcase_21 AC 87 ms
79,116 KB
testcase_22 AC 113 ms
82,592 KB
testcase_23 AC 142 ms
86,132 KB
testcase_24 AC 88 ms
78,996 KB
testcase_25 AC 157 ms
87,052 KB
testcase_26 AC 180 ms
91,576 KB
testcase_27 AC 188 ms
91,700 KB
testcase_28 AC 181 ms
91,672 KB
testcase_29 AC 191 ms
91,944 KB
testcase_30 AC 185 ms
91,720 KB
testcase_31 AC 148 ms
91,540 KB
testcase_32 AC 152 ms
91,584 KB
testcase_33 AC 153 ms
91,684 KB
testcase_34 AC 153 ms
91,596 KB
testcase_35 AC 148 ms
91,952 KB
testcase_36 AC 73 ms
85,864 KB
testcase_37 AC 228 ms
92,468 KB
testcase_38 AC 55 ms
65,560 KB
testcase_39 AC 55 ms
66,016 KB
testcase_40 AC 186 ms
91,820 KB
testcase_41 AC 185 ms
91,784 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