結果

問題 No.390 最長の数列
ユーザー raven7959raven7959
提出日時 2021-09-01 07:10:56
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 516 bytes
コンパイル時間 386 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 95,360 KB
最終ジャッジ日時 2024-05-05 08:42:21
合計ジャッジ時間 7,268 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,376 KB
testcase_01 AC 37 ms
53,760 KB
testcase_02 AC 39 ms
53,632 KB
testcase_03 AC 37 ms
53,888 KB
testcase_04 AC 37 ms
53,632 KB
testcase_05 TLE -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N=int(input())
A=list(map(int,input().split()))
G=[[] for _ in range(N)]
num=[0]*N
for i in range(N):
  for j in range(i+1,N):
    if A[j]>A[i] and A[j]%A[i]==0:
      G[i].append(j)
      num[j]+=1
    elif A[i]>A[j] and A[i]%A[j]==0:
      G[j].append(i)
      num[i]+=1
D=deque()
for i in range(N):
  if not num[i]:
    D.append(i)
DP=[1]*N
while D:
  v=D.popleft()
  for nv in G[v]:
    DP[nv]=max(DP[nv],DP[v]+1)
    num[nv]-=1
    if not num[nv]:
      D.append(nv)
print(max(DP))
0