結果

問題 No.2218 Multiple LIS
ユーザー ニックネームニックネーム
提出日時 2023-02-17 21:45:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 221 ms / 3,000 ms
コード長 1,362 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 89,088 KB
最終ジャッジ日時 2024-07-19 12:55:17
合計ジャッジ時間 5,509 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
57,856 KB
testcase_01 AC 42 ms
57,856 KB
testcase_02 AC 38 ms
57,984 KB
testcase_03 AC 40 ms
57,856 KB
testcase_04 AC 40 ms
57,984 KB
testcase_05 AC 45 ms
57,856 KB
testcase_06 AC 38 ms
57,728 KB
testcase_07 AC 39 ms
57,600 KB
testcase_08 AC 43 ms
57,600 KB
testcase_09 AC 37 ms
57,728 KB
testcase_10 AC 38 ms
57,856 KB
testcase_11 AC 37 ms
57,984 KB
testcase_12 AC 44 ms
62,080 KB
testcase_13 AC 66 ms
71,296 KB
testcase_14 AC 61 ms
67,072 KB
testcase_15 AC 62 ms
68,480 KB
testcase_16 AC 42 ms
58,624 KB
testcase_17 AC 71 ms
70,784 KB
testcase_18 AC 43 ms
57,728 KB
testcase_19 AC 44 ms
58,752 KB
testcase_20 AC 67 ms
70,656 KB
testcase_21 AC 98 ms
77,440 KB
testcase_22 AC 141 ms
80,256 KB
testcase_23 AC 161 ms
83,072 KB
testcase_24 AC 115 ms
77,884 KB
testcase_25 AC 170 ms
84,224 KB
testcase_26 AC 194 ms
87,808 KB
testcase_27 AC 202 ms
87,808 KB
testcase_28 AC 205 ms
87,552 KB
testcase_29 AC 212 ms
87,168 KB
testcase_30 AC 188 ms
87,552 KB
testcase_31 AC 150 ms
87,168 KB
testcase_32 AC 150 ms
87,040 KB
testcase_33 AC 162 ms
86,784 KB
testcase_34 AC 158 ms
86,400 KB
testcase_35 AC 157 ms
86,912 KB
testcase_36 AC 62 ms
72,704 KB
testcase_37 AC 221 ms
89,088 KB
testcase_38 AC 44 ms
57,984 KB
testcase_39 AC 44 ms
57,856 KB
testcase_40 AC 175 ms
87,040 KB
testcase_41 AC 181 ms
87,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class PrimeNumbers:
    def __init__(self,nmax):
        rootnmax = isqrt(nmax)
        self.prime_judgement = [True]*(rootnmax+1)
        self.prime_judgement[0] = self.prime_judgement[1] = False
        for i in range(2,rootnmax+1):
            if self.prime_judgement[i]:
                for j in range(2,rootnmax//i+1):
                    self.prime_judgement[i*j] = False
        self.prime_list = []
        for i,flag in enumerate(self.prime_judgement):
            if flag: self.prime_list.append(i)
    def prime_factorization(self,n):
        return_list = []
        for i in self.prime_list:
            if n==1 or i*i>n: break
            if n%i==0:
                return_list.append([i,0])
                while n%i==0: return_list[-1][1] += 1; n //= i
        if n!=1: return_list.append([n,1])
        return return_list
    def divisors_enumeration(self,n):
        divisors = [1]
        for p,v in self.prime_factorization(n):
            for i in range(len(divisors)):
                for j in range(v): divisors.append(divisors[i]*p**(j+1))
        return divisors
def isqrt(n):
    m = int(n**0.5)
    if m**2>n: m -= 1
    return m
n = int(input())
dp = [0]*(10**5+1)
pn = PrimeNumbers(10**5)
for v in map(int,input().split()):
    m = 0
    for d in pn.divisors_enumeration(v): m = max(m,dp[d])
    dp[v] = max(dp[v],m+1)
print(max(dp))
0