結果

問題 No.979 Longest Divisor Sequence
ユーザー etdvucur8oetdvucur8o
提出日時 2024-07-18 09:25:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,269 ms / 2,000 ms
コード長 281 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 195,216 KB
最終ジャッジ日時 2024-07-18 09:25:25
合計ジャッジ時間 18,735 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,002 ms
176,512 KB
testcase_01 AC 953 ms
176,636 KB
testcase_02 AC 985 ms
176,736 KB
testcase_03 AC 989 ms
176,640 KB
testcase_04 AC 993 ms
176,640 KB
testcase_05 AC 989 ms
176,384 KB
testcase_06 AC 953 ms
176,576 KB
testcase_07 AC 997 ms
176,636 KB
testcase_08 AC 996 ms
176,840 KB
testcase_09 AC 1,004 ms
176,612 KB
testcase_10 AC 988 ms
175,744 KB
testcase_11 AC 981 ms
176,028 KB
testcase_12 AC 1,003 ms
175,428 KB
testcase_13 AC 1,091 ms
183,264 KB
testcase_14 AC 1,269 ms
195,216 KB
testcase_15 AC 1,089 ms
182,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Z = 3 * 10**5

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

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)

dp = [0] * (Z+1)
for a in A:
    for d in P[a]:
        dp[a] = max(dp[a], dp[d] + 1)

print(max(dp))
0