結果

問題 No.2218 Multiple LIS
ユーザー ikomaikoma
提出日時 2023-02-17 22:24:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 291 ms / 3,000 ms
コード長 1,181 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,664 KB
実行使用メモリ 91,300 KB
最終ジャッジ日時 2024-07-19 13:32:56
合計ジャッジ時間 6,259 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
60,416 KB
testcase_01 AC 46 ms
60,416 KB
testcase_02 AC 45 ms
60,416 KB
testcase_03 AC 45 ms
60,544 KB
testcase_04 AC 45 ms
60,416 KB
testcase_05 AC 46 ms
60,288 KB
testcase_06 AC 45 ms
60,544 KB
testcase_07 AC 44 ms
60,288 KB
testcase_08 AC 44 ms
60,544 KB
testcase_09 AC 45 ms
61,056 KB
testcase_10 AC 45 ms
60,800 KB
testcase_11 AC 46 ms
60,672 KB
testcase_12 AC 55 ms
65,152 KB
testcase_13 AC 77 ms
70,912 KB
testcase_14 AC 66 ms
71,424 KB
testcase_15 AC 67 ms
71,424 KB
testcase_16 AC 50 ms
62,720 KB
testcase_17 AC 67 ms
71,680 KB
testcase_18 AC 46 ms
60,800 KB
testcase_19 AC 50 ms
62,464 KB
testcase_20 AC 65 ms
70,656 KB
testcase_21 AC 91 ms
78,464 KB
testcase_22 AC 155 ms
82,332 KB
testcase_23 AC 201 ms
85,120 KB
testcase_24 AC 108 ms
78,464 KB
testcase_25 AC 197 ms
86,528 KB
testcase_26 AC 251 ms
91,180 KB
testcase_27 AC 250 ms
90,880 KB
testcase_28 AC 254 ms
91,008 KB
testcase_29 AC 249 ms
91,168 KB
testcase_30 AC 241 ms
91,300 KB
testcase_31 AC 163 ms
90,496 KB
testcase_32 AC 166 ms
90,752 KB
testcase_33 AC 169 ms
90,496 KB
testcase_34 AC 171 ms
90,752 KB
testcase_35 AC 162 ms
90,752 KB
testcase_36 AC 76 ms
89,856 KB
testcase_37 AC 291 ms
91,264 KB
testcase_38 AC 52 ms
60,672 KB
testcase_39 AC 50 ms
60,800 KB
testcase_40 AC 206 ms
91,008 KB
testcase_41 AC 202 ms
91,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
class tmp:
    def __init__(self, n_max:int=10**6):
        self.sieve = self.pre_factorization(n_max)
    def pre_factorization(self, n_max:int):
        sieve = [i for i in range(n_max+1)]
        p = 2
        while p*p <= n_max:
            if sieve[p] == p:
                for q in range(2*p,n_max+1,p):
                    if sieve[q] == q:
                        sieve[q] = p
            p += 1
        return sieve
    def factorization(self, n:int):
        tmp = {}
        while n > 1:
            i=self.sieve[n]
            tmp[i]=tmp.get(i,0)+1
            n //= self.sieve[n]
        return tmp
    def divisors(self, n:int):
        res = [1]
        prime = self.factorization(n)
        for p in prime:
            newres = []
            for d in res:
                for j in range(prime[p]+1):
                    newres.append(d*p**j)
            res = newres
        res.sort()
        return res
N=int(input())
A=list(map(int,input().split()))

ans = [0]*(10**5+1)
div = tmp(10**5)

for a in A:
    x=0
    for d in div.divisors(a):
        xx = ans[d]
        if xx>x:
            x=xx
    ans[a]=x+1
print(max(ans))
0