結果

問題 No.979 Longest Divisor Sequence
ユーザー なえしらなえしら
提出日時 2023-09-22 01:32:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,965 ms / 2,000 ms
コード長 333 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 148,096 KB
最終ジャッジ日時 2024-07-07 18:23:48
合計ジャッジ時間 4,675 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,760 KB
testcase_01 AC 39 ms
53,760 KB
testcase_02 AC 40 ms
53,632 KB
testcase_03 AC 39 ms
53,504 KB
testcase_04 AC 38 ms
53,760 KB
testcase_05 AC 40 ms
54,144 KB
testcase_06 AC 38 ms
53,760 KB
testcase_07 AC 39 ms
53,888 KB
testcase_08 AC 38 ms
53,504 KB
testcase_09 AC 38 ms
53,888 KB
testcase_10 AC 79 ms
68,736 KB
testcase_11 AC 78 ms
68,992 KB
testcase_12 AC 79 ms
68,736 KB
testcase_13 AC 107 ms
121,196 KB
testcase_14 AC 1,965 ms
148,096 KB
testcase_15 AC 704 ms
100,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

N = int(input())
A = list(map(int, input().split()))
dp = defaultdict(int)
for a in A:
	dp[a] = max(dp[a], 1)
	for d in range(1, int(a**0.5)+1):
		if a % d != 0: continue
		if d < a:
			dp[a] = max(dp[a], dp[d] + 1)
		if a//d < a:
			dp[a] = max(dp[a], dp[a//d] + 1)
K = max(dp.values())
print(K)
0