結果

問題 No.390 最長の数列
ユーザー brthyyjpbrthyyjp
提出日時 2021-12-16 17:15:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,564 ms / 5,000 ms
コード長 497 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 81,728 KB
実行使用メモリ 98,896 KB
最終ジャッジ日時 2024-09-13 14:26:14
合計ジャッジ時間 9,408 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,736 KB
testcase_01 AC 40 ms
52,196 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 39 ms
52,352 KB
testcase_04 AC 40 ms
52,736 KB
testcase_05 AC 1,564 ms
98,896 KB
testcase_06 AC 1,029 ms
98,228 KB
testcase_07 AC 39 ms
52,096 KB
testcase_08 AC 45 ms
65,280 KB
testcase_09 AC 48 ms
64,896 KB
testcase_10 AC 1,134 ms
98,680 KB
testcase_11 AC 1,136 ms
98,688 KB
testcase_12 AC 1,143 ms
98,816 KB
testcase_13 AC 812 ms
94,832 KB
testcase_14 AC 449 ms
91,520 KB
testcase_15 AC 43 ms
57,088 KB
testcase_16 AC 50 ms
66,816 KB
testcase_17 AC 111 ms
78,208 KB
testcase_18 AC 143 ms
81,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
X = list(map(int, input().split()))
X.sort()

def make_divisors(n):
    divisors = []
    for i in range(1, int(n**0.5)+1):
        if n % i == 0:
            divisors.append(i)
            if i != n // i:
                divisors.append(n//i)

    return divisors

dp = [0]*(max(X)+1)
for x in X:
    if x == 1:
        dp[1] = 1
        continue
    d = make_divisors(x)
    for i in d:
        if i == x:
            continue
        dp[x] = max(dp[i]+1, dp[x])
print(max(dp))
0