結果

問題 No.979 Longest Divisor Sequence
ユーザー ayaoniayaoni
提出日時 2021-07-24 13:41:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,136 ms / 2,000 ms
コード長 752 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 189,808 KB
最終ジャッジ日時 2024-07-19 19:15:51
合計ジャッジ時間 6,637 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
54,016 KB
testcase_01 AC 45 ms
53,776 KB
testcase_02 AC 46 ms
53,888 KB
testcase_03 AC 45 ms
53,632 KB
testcase_04 AC 45 ms
53,760 KB
testcase_05 AC 45 ms
53,760 KB
testcase_06 AC 45 ms
54,144 KB
testcase_07 AC 46 ms
53,888 KB
testcase_08 AC 46 ms
53,888 KB
testcase_09 AC 46 ms
54,016 KB
testcase_10 AC 913 ms
170,608 KB
testcase_11 AC 893 ms
170,240 KB
testcase_12 AC 902 ms
170,368 KB
testcase_13 AC 115 ms
122,112 KB
testcase_14 AC 1,136 ms
189,808 KB
testcase_15 AC 1,027 ms
168,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import defaultdict
sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


N = I()
A = LI()
M = max(A)

div = [[] for _ in range(M+1)]
for i in range(1,M+1):
    for j in range(2*i,M+1,i):
        div[j].append(i)

dp = [0]*(M+1)
for a in A:
    x = 1
    for d in div[a]:
        x = max(x,dp[d]+1)
    dp[a] = x

ans = max(dp)
print(ans)
0