結果

問題 No.979 Longest Divisor Sequence
ユーザー SalmonizeSalmonize
提出日時 2020-06-04 14:54:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,255 ms / 2,000 ms
コード長 609 bytes
コンパイル時間 332 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 94,924 KB
最終ジャッジ日時 2024-05-06 18:05:38
合計ジャッジ時間 3,397 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 25 ms
10,624 KB
testcase_04 AC 25 ms
10,496 KB
testcase_05 AC 24 ms
10,624 KB
testcase_06 AC 24 ms
10,624 KB
testcase_07 AC 25 ms
10,624 KB
testcase_08 AC 24 ms
10,496 KB
testcase_09 AC 24 ms
10,624 KB
testcase_10 AC 158 ms
40,576 KB
testcase_11 AC 161 ms
41,600 KB
testcase_12 AC 156 ms
40,320 KB
testcase_13 AC 91 ms
15,940 KB
testcase_14 AC 1,255 ms
94,924 KB
testcase_15 AC 563 ms
67,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

readline = sys.stdin.readline

ns = lambda: readline().rstrip()
ni = lambda: int(readline().rstrip())
nm = lambda: map(int, readline().split())
nl = lambda: list(map(int, readline().split()))

def solve():
    n = ni()
    a = nl()
    s = set(a)
    m = max(a) + 5
    g = [[1] for _ in range(m)]
    for i in range(2, m):
        if i in s:
            for j in range(i*2, m, i):
                g[j].append(i)
    c = [-1]*m
    c[1] = 0
    for x in a:
        if x == 1:
            c[x] = 1
        else:
            c[x] = max([c[y] for y in g[x]]) + 1
    print(max(c))
    return

solve()
0