結果

問題 No.979 Longest Divisor Sequence
ユーザー kumatan400kumatan400
提出日時 2023-02-27 00:51:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,266 ms / 2,000 ms
コード長 310 bytes
コンパイル時間 420 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 235,392 KB
最終ジャッジ日時 2024-09-14 13:04:46
合計ジャッジ時間 18,499 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 968 ms
179,072 KB
testcase_01 AC 976 ms
178,688 KB
testcase_02 AC 992 ms
179,072 KB
testcase_03 AC 991 ms
178,816 KB
testcase_04 AC 991 ms
178,816 KB
testcase_05 AC 962 ms
178,816 KB
testcase_06 AC 961 ms
179,072 KB
testcase_07 AC 980 ms
179,072 KB
testcase_08 AC 998 ms
178,816 KB
testcase_09 AC 981 ms
178,944 KB
testcase_10 AC 962 ms
178,816 KB
testcase_11 AC 959 ms
179,072 KB
testcase_12 AC 942 ms
179,200 KB
testcase_13 AC 1,010 ms
227,196 KB
testcase_14 AC 1,266 ms
235,392 KB
testcase_15 AC 1,074 ms
195,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

inf = float("inf")
dp = [-inf] * (Z+1)
dp[0] = 0
for a in A:
    for d in R[a]:
        dp[a] = max(dp[a], dp[d] + 1)

print(max(dp))
0