結果

問題 No.2218 Multiple LIS
ユーザー ShirotsumeShirotsume
提出日時 2023-02-14 07:36:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 382 ms / 3,000 ms
コード長 739 bytes
コンパイル時間 388 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 105,756 KB
最終ジャッジ日時 2024-07-16 17:28:21
合計ジャッジ時間 6,308 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,632 KB
testcase_01 AC 39 ms
53,504 KB
testcase_02 AC 40 ms
53,376 KB
testcase_03 AC 39 ms
53,760 KB
testcase_04 AC 40 ms
53,888 KB
testcase_05 AC 41 ms
53,504 KB
testcase_06 AC 40 ms
53,632 KB
testcase_07 AC 42 ms
53,888 KB
testcase_08 AC 40 ms
53,248 KB
testcase_09 AC 41 ms
53,376 KB
testcase_10 AC 38 ms
53,248 KB
testcase_11 AC 39 ms
53,504 KB
testcase_12 AC 44 ms
60,288 KB
testcase_13 AC 47 ms
63,228 KB
testcase_14 AC 47 ms
62,720 KB
testcase_15 AC 47 ms
62,848 KB
testcase_16 AC 41 ms
53,760 KB
testcase_17 AC 48 ms
62,592 KB
testcase_18 AC 39 ms
53,760 KB
testcase_19 AC 40 ms
54,272 KB
testcase_20 AC 46 ms
62,464 KB
testcase_21 AC 79 ms
75,776 KB
testcase_22 AC 198 ms
86,656 KB
testcase_23 AC 282 ms
95,036 KB
testcase_24 AC 116 ms
83,328 KB
testcase_25 AC 300 ms
94,104 KB
testcase_26 AC 382 ms
105,612 KB
testcase_27 AC 376 ms
105,612 KB
testcase_28 AC 380 ms
105,568 KB
testcase_29 AC 382 ms
105,728 KB
testcase_30 AC 382 ms
105,756 KB
testcase_31 AC 91 ms
93,568 KB
testcase_32 AC 90 ms
93,568 KB
testcase_33 AC 92 ms
93,440 KB
testcase_34 AC 90 ms
93,824 KB
testcase_35 AC 89 ms
93,440 KB
testcase_36 AC 64 ms
85,760 KB
testcase_37 AC 113 ms
97,920 KB
testcase_38 AC 38 ms
54,016 KB
testcase_39 AC 39 ms
53,632 KB
testcase_40 AC 114 ms
94,068 KB
testcase_41 AC 109 ms
93,952 KB
権限があれば一括ダウンロードができます

ソースコード

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
#すみませんでした… breakがcontinueになってた
n = ii()
a = li()

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

print(max(dp))
0