結果

問題 No.2218 Multiple LIS
ユーザー chineristACchineristAC
提出日時 2023-02-17 23:18:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 621 ms / 3,000 ms
コード長 565 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 92,664 KB
最終ジャッジ日時 2024-07-19 14:30:11
合計ジャッジ時間 8,745 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
55,168 KB
testcase_01 AC 44 ms
55,168 KB
testcase_02 AC 44 ms
55,424 KB
testcase_03 AC 49 ms
55,552 KB
testcase_04 AC 46 ms
55,296 KB
testcase_05 AC 46 ms
55,168 KB
testcase_06 AC 47 ms
55,424 KB
testcase_07 AC 49 ms
55,424 KB
testcase_08 AC 48 ms
55,808 KB
testcase_09 AC 46 ms
55,424 KB
testcase_10 AC 43 ms
55,424 KB
testcase_11 AC 46 ms
55,552 KB
testcase_12 AC 51 ms
62,208 KB
testcase_13 AC 55 ms
64,896 KB
testcase_14 AC 53 ms
64,512 KB
testcase_15 AC 56 ms
64,384 KB
testcase_16 AC 49 ms
61,312 KB
testcase_17 AC 56 ms
65,152 KB
testcase_18 AC 50 ms
55,680 KB
testcase_19 AC 52 ms
61,824 KB
testcase_20 AC 55 ms
64,896 KB
testcase_21 AC 83 ms
68,864 KB
testcase_22 AC 211 ms
81,280 KB
testcase_23 AC 296 ms
85,488 KB
testcase_24 AC 112 ms
73,088 KB
testcase_25 AC 345 ms
86,400 KB
testcase_26 AC 461 ms
91,136 KB
testcase_27 AC 460 ms
91,392 KB
testcase_28 AC 447 ms
91,520 KB
testcase_29 AC 454 ms
91,264 KB
testcase_30 AC 422 ms
91,520 KB
testcase_31 AC 176 ms
90,240 KB
testcase_32 AC 203 ms
90,368 KB
testcase_33 AC 181 ms
90,240 KB
testcase_34 AC 174 ms
90,368 KB
testcase_35 AC 204 ms
90,368 KB
testcase_36 AC 68 ms
82,432 KB
testcase_37 AC 597 ms
92,664 KB
testcase_38 AC 46 ms
55,424 KB
testcase_39 AC 44 ms
55,040 KB
testcase_40 AC 620 ms
91,008 KB
testcase_41 AC 621 ms
90,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random,bisect
from collections import deque,defaultdict
from heapq import heapify,heappop,heappush
from itertools import permutations
from math import gcd,log

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

N = int(input())
A = li()

M = max(A)

dp = [0] * (M+1) 
for a in A:
    tmp = 1
    for d in range(1,a+1):
        if d*d > a:
            break

        if a % d == 0:
            tmp = max(tmp,dp[d]+1)
            tmp = max(tmp,dp[a//d]+1)
    dp[a] = max(dp[a],tmp)

print(max(dp))
0