結果

問題 No.2218 Multiple LIS
ユーザー ShirotsumeShirotsume
提出日時 2023-02-14 07:28:44
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 822 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 81,940 KB
実行使用メモリ 88,576 KB
最終ジャッジ日時 2024-07-16 17:22:36
合計ジャッジ時間 7,285 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,852 KB
testcase_01 AC 43 ms
54,172 KB
testcase_02 AC 43 ms
55,172 KB
testcase_03 AC 41 ms
55,172 KB
testcase_04 AC 41 ms
55,456 KB
testcase_05 AC 43 ms
55,392 KB
testcase_06 AC 44 ms
54,988 KB
testcase_07 AC 44 ms
54,484 KB
testcase_08 AC 44 ms
54,556 KB
testcase_09 AC 45 ms
53,832 KB
testcase_10 AC 44 ms
53,668 KB
testcase_11 AC 48 ms
59,968 KB
testcase_12 AC 54 ms
63,340 KB
testcase_13 AC 64 ms
67,428 KB
testcase_14 AC 59 ms
66,828 KB
testcase_15 AC 62 ms
67,496 KB
testcase_16 AC 50 ms
60,972 KB
testcase_17 AC 62 ms
66,904 KB
testcase_18 AC 49 ms
61,100 KB
testcase_19 AC 52 ms
61,996 KB
testcase_20 AC 61 ms
66,496 KB
testcase_21 AC 801 ms
72,396 KB
testcase_22 TLE -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque, Counter
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353

n = ii()

a = li()

#ふつうのLISと同様にdpすればよい?
#無理そう

#dp[i] = i番目が最後尾であるときの最大値とすると,iを見るときにはa[i]の約数の部分(最大値)だけ見ればよい

dp = [-inf] * (n + 1)
dp[0] = 1
maxi = [0] * (max(a) + 1)
for idx, v in enumerate(a):
    div = set()
    v2 = v
    for i in range(1, v2 + 1):
        if i * i > v2:
            continue
        if v2 % i == 0:
            div.add(i)
            div.add(v2 // i)
    for v2 in div:
        dp[idx] = max(dp[idx], maxi[v2] + 1)
    maxi[v] = dp[idx]

print(max(dp))
0