結果

問題 No.979 Longest Divisor Sequence
ユーザー kumatan400kumatan400
提出日時 2022-09-15 06:52:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,799 ms / 2,000 ms
コード長 520 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,792 KB
実行使用メモリ 121,472 KB
最終ジャッジ日時 2024-05-09 09:46:20
合計ジャッジ時間 3,956 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
59,136 KB
testcase_01 AC 36 ms
59,008 KB
testcase_02 AC 37 ms
58,880 KB
testcase_03 AC 38 ms
59,136 KB
testcase_04 AC 38 ms
59,776 KB
testcase_05 AC 38 ms
59,776 KB
testcase_06 AC 38 ms
59,392 KB
testcase_07 AC 39 ms
59,008 KB
testcase_08 AC 38 ms
59,264 KB
testcase_09 AC 39 ms
59,008 KB
testcase_10 AC 72 ms
69,120 KB
testcase_11 AC 68 ms
69,504 KB
testcase_12 AC 68 ms
68,992 KB
testcase_13 AC 88 ms
121,472 KB
testcase_14 AC 1,799 ms
112,396 KB
testcase_15 AC 633 ms
92,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def make_divisors(n):
    divisors = []
    i = 1
    while i * i <= n:
        if n % i == 0:
            divisors.append(i)
            j = n // i
            if i != j:
                divisors.append(j)
        i += 1
    return divisors


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


Z = 3 * 10**5
X = [0] * (Z+1)

for a in A:
    if a == 1:
        X[1] = 1
    else:
        for d in make_divisors(a):
            if d == a:
                continue
            X[a] = max(X[a], X[d] + 1)

print(max(X))
0