結果

問題 No.2218 Multiple LIS
ユーザー rlangevinrlangevin
提出日時 2023-02-17 21:49:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 731 ms / 3,000 ms
コード長 420 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 95,104 KB
最終ジャッジ日時 2024-07-19 13:02:53
合計ジャッジ時間 9,003 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
59,008 KB
testcase_01 AC 43 ms
59,648 KB
testcase_02 AC 42 ms
58,752 KB
testcase_03 AC 42 ms
59,520 KB
testcase_04 AC 42 ms
59,008 KB
testcase_05 AC 42 ms
59,008 KB
testcase_06 AC 43 ms
59,136 KB
testcase_07 AC 42 ms
58,880 KB
testcase_08 AC 42 ms
59,136 KB
testcase_09 AC 43 ms
58,752 KB
testcase_10 AC 43 ms
59,008 KB
testcase_11 AC 43 ms
58,880 KB
testcase_12 AC 47 ms
61,824 KB
testcase_13 AC 53 ms
66,304 KB
testcase_14 AC 54 ms
65,408 KB
testcase_15 AC 54 ms
66,432 KB
testcase_16 AC 45 ms
60,544 KB
testcase_17 AC 54 ms
65,920 KB
testcase_18 AC 42 ms
59,008 KB
testcase_19 AC 47 ms
60,416 KB
testcase_20 AC 56 ms
66,176 KB
testcase_21 AC 83 ms
77,252 KB
testcase_22 AC 217 ms
80,792 KB
testcase_23 AC 318 ms
84,224 KB
testcase_24 AC 115 ms
77,184 KB
testcase_25 AC 352 ms
85,760 KB
testcase_26 AC 459 ms
90,368 KB
testcase_27 AC 459 ms
90,496 KB
testcase_28 AC 468 ms
90,496 KB
testcase_29 AC 462 ms
90,880 KB
testcase_30 AC 464 ms
90,568 KB
testcase_31 AC 209 ms
89,856 KB
testcase_32 AC 234 ms
89,856 KB
testcase_33 AC 214 ms
89,728 KB
testcase_34 AC 211 ms
89,856 KB
testcase_35 AC 227 ms
90,240 KB
testcase_36 AC 93 ms
89,344 KB
testcase_37 AC 731 ms
95,104 KB
testcase_38 AC 42 ms
58,880 KB
testcase_39 AC 42 ms
59,008 KB
testcase_40 AC 626 ms
90,368 KB
testcase_41 AC 608 ms
90,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

def div(n):
    if n <= 0:
        return []
    S = set()
    i = 1
    while i * i <= n:
        if n % i == 0:
            S.add(i)
            S.add(n // i)
        i += 1
    return sorted(list(S), reverse=True)

N = int(input())
A = list(map(int, input().split()))
dp = [-10] * 101010
dp[1] = 0
for a in A:
    for d in div(a):
        dp[a] = max(dp[a], dp[d] + 1) 
    
print(max(dp))
0