結果

問題 No.979 Longest Divisor Sequence
ユーザー kumatan400kumatan400
提出日時 2021-09-11 03:22:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,467 ms / 2,000 ms
コード長 493 bytes
コンパイル時間 473 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 138,320 KB
最終ジャッジ日時 2024-06-13 04:08:39
合計ジャッジ時間 4,685 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,296 KB
testcase_01 AC 34 ms
52,088 KB
testcase_02 AC 35 ms
53,796 KB
testcase_03 AC 35 ms
52,296 KB
testcase_04 AC 35 ms
52,312 KB
testcase_05 AC 35 ms
53,624 KB
testcase_06 AC 34 ms
52,820 KB
testcase_07 AC 35 ms
52,492 KB
testcase_08 AC 34 ms
51,888 KB
testcase_09 AC 33 ms
53,348 KB
testcase_10 AC 80 ms
68,952 KB
testcase_11 AC 71 ms
68,708 KB
testcase_12 AC 71 ms
69,736 KB
testcase_13 AC 92 ms
120,512 KB
testcase_14 AC 1,467 ms
138,320 KB
testcase_15 AC 657 ms
101,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

D = {}
for a in A:
    if a in D:
        continue
    i = 1
    D[a] = []
    while i * i <= a:
        if a % i == 0:
            D[a].append(i)
            j = a // i
            if i != j:
                D[a].append(j)
        i += 1


dp = [0] * (max(A)+1)
for a in A:
    if a == 1:
        dp[a] = 1
        continue
    for c in D[a]:
        if a == c:
            continue
        dp[a] = max(dp[a], dp[c] + 1)

print(max(dp))

0