結果

問題 No.2218 Multiple LIS
ユーザー flygonflygon
提出日時 2023-02-17 21:39:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 707 ms / 3,000 ms
コード長 542 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 91,136 KB
最終ジャッジ日時 2024-07-19 12:47:03
合計ジャッジ時間 9,247 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 39
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd

n = int(input())
a = list(map(int,input().split()))
d = defaultdict(int)

def fact(n):
  l = set()
  for i in range(1,int(pow(n,0.5))+1):
    if n % i == 0:
      l.add(i)
      l.add(n//i)
  return l
for i in range(n):
  mx = 0
  for j in fact(a[i]):
    mx = max(mx, d[j])
  d[a[i]] = mx + 1


print(max(d.values()))
0