結果

問題 No.979 Longest Divisor Sequence
ユーザー brthyyjpbrthyyjp
提出日時 2021-02-08 02:33:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,869 ms / 2,000 ms
コード長 499 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 119,640 KB
最終ジャッジ日時 2024-07-04 21:43:32
合計ジャッジ時間 4,512 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,852 KB
testcase_01 AC 38 ms
52,856 KB
testcase_02 AC 38 ms
52,940 KB
testcase_03 AC 38 ms
53,820 KB
testcase_04 AC 37 ms
52,368 KB
testcase_05 AC 37 ms
52,916 KB
testcase_06 AC 37 ms
52,340 KB
testcase_07 AC 37 ms
52,444 KB
testcase_08 AC 36 ms
52,264 KB
testcase_09 AC 37 ms
53,204 KB
testcase_10 AC 72 ms
71,404 KB
testcase_11 AC 74 ms
70,904 KB
testcase_12 AC 73 ms
70,672 KB
testcase_13 AC 91 ms
119,640 KB
testcase_14 AC 1,869 ms
113,276 KB
testcase_15 AC 657 ms
92,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))

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(A)+1)
for a in A:
    if a == 1:
        dp[1] = 1
        continue
    d = make_divisors(a)
    for i in d:
        if i == a:
            continue
        dp[a] = max(dp[i]+1, dp[a])
#print(dp)
print(max(dp))
0