結果

問題 No.979 Longest Divisor Sequence
ユーザー imueri2kimueri2k
提出日時 2024-12-24 06:42:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,579 ms / 2,000 ms
コード長 312 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 200,040 KB
最終ジャッジ日時 2024-12-24 06:42:33
合計ジャッジ時間 22,431 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,235 ms
178,816 KB
testcase_01 AC 1,269 ms
178,816 KB
testcase_02 AC 1,178 ms
178,944 KB
testcase_03 AC 1,231 ms
178,944 KB
testcase_04 AC 1,206 ms
179,072 KB
testcase_05 AC 1,220 ms
178,688 KB
testcase_06 AC 1,230 ms
179,072 KB
testcase_07 AC 1,202 ms
178,816 KB
testcase_08 AC 1,226 ms
178,944 KB
testcase_09 AC 1,216 ms
178,944 KB
testcase_10 AC 1,192 ms
178,176 KB
testcase_11 AC 1,207 ms
178,176 KB
testcase_12 AC 1,239 ms
178,048 KB
testcase_13 AC 1,272 ms
186,004 KB
testcase_14 AC 1,579 ms
200,040 KB
testcase_15 AC 1,315 ms
184,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

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

print(max(dp))
0