結果

問題 No.2218 Multiple LIS
ユーザー ntudantuda
提出日時 2023-02-20 17:03:53
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 694 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 139,140 KB
最終ジャッジ日時 2024-07-21 09:02:21
合計ジャッジ時間 10,406 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
60,416 KB
testcase_01 AC 42 ms
55,168 KB
testcase_02 AC 41 ms
54,400 KB
testcase_03 AC 46 ms
54,912 KB
testcase_04 AC 44 ms
54,400 KB
testcase_05 AC 42 ms
54,784 KB
testcase_06 AC 44 ms
54,784 KB
testcase_07 AC 43 ms
54,528 KB
testcase_08 AC 44 ms
54,784 KB
testcase_09 AC 47 ms
55,040 KB
testcase_10 AC 46 ms
55,040 KB
testcase_11 AC 43 ms
55,040 KB
testcase_12 AC 51 ms
62,848 KB
testcase_13 AC 61 ms
65,664 KB
testcase_14 AC 58 ms
65,152 KB
testcase_15 AC 57 ms
65,408 KB
testcase_16 AC 45 ms
55,552 KB
testcase_17 AC 57 ms
65,920 KB
testcase_18 AC 43 ms
55,168 KB
testcase_19 AC 45 ms
55,168 KB
testcase_20 AC 57 ms
65,408 KB
testcase_21 AC 112 ms
82,048 KB
testcase_22 AC 277 ms
100,992 KB
testcase_23 AC 378 ms
113,108 KB
testcase_24 AC 163 ms
86,912 KB
testcase_25 AC 426 ms
121,300 KB
testcase_26 AC 536 ms
133,112 KB
testcase_27 AC 549 ms
133,540 KB
testcase_28 AC 530 ms
133,624 KB
testcase_29 AC 558 ms
133,552 KB
testcase_30 AC 542 ms
133,764 KB
testcase_31 TLE -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import lru_cache
@lru_cache(maxsize=100000)

def make_divisors(n):
    lower_divisors, upper_divisors = [], []
    i = 1
    while i * i <= n:
        if n % i == 0:
            lower_divisors.append(i)
            if i != n // i:
                upper_divisors.append(n // i)
        i += 1
    return lower_divisors + upper_divisors[::-1]


N = int(input())
A = list(map(int, input().split()))
maxa = max(A)
C = [[] for _ in range(maxa + 1)]
E = [0] * (maxa + 1)
for a in reversed(A):
    tmp = 0
    if C[a]:
        for x in C[a]:
            tmp = max(tmp, E[x])

    E[a] = max(E[a], tmp + 1)

    D = make_divisors(a)
    for d in D:
        C[d].append(a)

print(max(E))
0