結果

問題 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,400 KB
testcase_01 AC 42 ms
54,656 KB
testcase_02 AC 41 ms
54,784 KB
testcase_03 AC 42 ms
54,144 KB
testcase_04 AC 41 ms
54,400 KB
testcase_05 AC 41 ms
54,400 KB
testcase_06 AC 40 ms
54,400 KB
testcase_07 AC 40 ms
54,400 KB
testcase_08 AC 41 ms
54,912 KB
testcase_09 AC 40 ms
54,272 KB
testcase_10 AC 39 ms
54,784 KB
testcase_11 AC 40 ms
54,400 KB
testcase_12 AC 47 ms
61,952 KB
testcase_13 AC 56 ms
66,560 KB
testcase_14 AC 55 ms
65,792 KB
testcase_15 AC 56 ms
66,304 KB
testcase_16 AC 45 ms
60,672 KB
testcase_17 AC 56 ms
66,560 KB
testcase_18 AC 42 ms
54,528 KB
testcase_19 AC 46 ms
60,800 KB
testcase_20 AC 60 ms
66,816 KB
testcase_21 AC 92 ms
78,336 KB
testcase_22 AC 237 ms
84,224 KB
testcase_23 AC 341 ms
86,016 KB
testcase_24 AC 125 ms
80,768 KB
testcase_25 AC 371 ms
86,016 KB
testcase_26 AC 497 ms
91,008 KB
testcase_27 AC 495 ms
91,136 KB
testcase_28 AC 498 ms
90,624 KB
testcase_29 AC 493 ms
91,136 KB
testcase_30 AC 477 ms
90,624 KB
testcase_31 AC 210 ms
89,600 KB
testcase_32 AC 243 ms
89,600 KB
testcase_33 AC 213 ms
89,728 KB
testcase_34 AC 214 ms
89,600 KB
testcase_35 AC 230 ms
89,856 KB
testcase_36 AC 92 ms
89,292 KB
testcase_37 AC 707 ms
90,496 KB
testcase_38 AC 42 ms
54,528 KB
testcase_39 AC 41 ms
54,144 KB
testcase_40 AC 611 ms
90,112 KB
testcase_41 AC 606 ms
89,856 KB
権限があれば一括ダウンロードができます

ソースコード

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