結果

問題 No.979 Longest Divisor Sequence
ユーザー SalmonizeSalmonize
提出日時 2020-06-04 14:52:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,591 ms / 2,000 ms
コード長 575 bytes
コンパイル時間 367 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 85,960 KB
最終ジャッジ日時 2024-11-29 02:35:25
合計ジャッジ時間 18,891 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 969 ms
74,112 KB
testcase_01 AC 983 ms
74,104 KB
testcase_02 AC 1,038 ms
73,904 KB
testcase_03 AC 1,056 ms
73,944 KB
testcase_04 AC 1,016 ms
73,940 KB
testcase_05 AC 991 ms
74,112 KB
testcase_06 AC 1,004 ms
74,112 KB
testcase_07 AC 977 ms
74,048 KB
testcase_08 AC 984 ms
73,984 KB
testcase_09 AC 994 ms
74,112 KB
testcase_10 AC 1,015 ms
74,240 KB
testcase_11 AC 1,024 ms
74,240 KB
testcase_12 AC 986 ms
74,112 KB
testcase_13 AC 1,120 ms
76,252 KB
testcase_14 AC 1,591 ms
85,960 KB
testcase_15 AC 1,196 ms
78,024 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()
    m = 3 * 10 ** 5 + 5
    g = [list() for _ in range(m)]
    for i in range(1, m):
        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