結果

問題 No.979 Longest Divisor Sequence
ユーザー kumatan400kumatan400
提出日時 2022-07-15 19:20:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,082 ms / 2,000 ms
コード長 363 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 186,868 KB
最終ジャッジ日時 2024-06-27 14:20:21
合計ジャッジ時間 16,235 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 821 ms
170,772 KB
testcase_01 AC 874 ms
170,576 KB
testcase_02 AC 753 ms
170,648 KB
testcase_03 AC 912 ms
170,640 KB
testcase_04 AC 860 ms
170,444 KB
testcase_05 AC 885 ms
170,472 KB
testcase_06 AC 919 ms
170,320 KB
testcase_07 AC 909 ms
170,496 KB
testcase_08 AC 895 ms
170,996 KB
testcase_09 AC 881 ms
170,416 KB
testcase_10 AC 878 ms
171,132 KB
testcase_11 AC 883 ms
171,296 KB
testcase_12 AC 887 ms
170,592 KB
testcase_13 AC 908 ms
165,936 KB
testcase_14 AC 1,082 ms
186,868 KB
testcase_15 AC 952 ms
168,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

Z = 3*10**5
D = [[] for _ in range(Z+1)]
for i in range(1, Z+1):
    for j in range(i, Z+1, i):
        D[j].append(i)

ans = 0
X = [0] * (Z + 1)
for a in A:
    M = 0
    for d in D[a]:
        if d == a:
            continue
        M = max(M, X[d])
    M += 1
    ans = max(ans, M)
    X[a] = M

print(ans)
0