結果

問題 No.2218 Multiple LIS
ユーザー ntudantuda
提出日時 2023-02-20 20:30:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,106 ms / 3,000 ms
コード長 694 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 155,076 KB
最終ジャッジ日時 2024-07-21 11:08:49
合計ジャッジ時間 11,661 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
54,656 KB
testcase_01 AC 54 ms
54,784 KB
testcase_02 AC 55 ms
54,784 KB
testcase_03 AC 61 ms
54,400 KB
testcase_04 AC 57 ms
54,528 KB
testcase_05 AC 57 ms
54,656 KB
testcase_06 AC 56 ms
54,400 KB
testcase_07 AC 57 ms
54,656 KB
testcase_08 AC 56 ms
54,656 KB
testcase_09 AC 57 ms
54,784 KB
testcase_10 AC 56 ms
54,656 KB
testcase_11 AC 57 ms
54,784 KB
testcase_12 AC 66 ms
62,592 KB
testcase_13 AC 76 ms
66,304 KB
testcase_14 AC 73 ms
64,512 KB
testcase_15 AC 73 ms
64,512 KB
testcase_16 AC 58 ms
55,424 KB
testcase_17 AC 80 ms
67,456 KB
testcase_18 AC 56 ms
54,784 KB
testcase_19 AC 59 ms
55,808 KB
testcase_20 AC 79 ms
66,560 KB
testcase_21 AC 153 ms
83,584 KB
testcase_22 AC 421 ms
111,872 KB
testcase_23 AC 632 ms
139,332 KB
testcase_24 AC 219 ms
91,776 KB
testcase_25 AC 672 ms
140,388 KB
testcase_26 AC 883 ms
154,440 KB
testcase_27 AC 922 ms
155,076 KB
testcase_28 AC 1,106 ms
153,552 KB
testcase_29 AC 1,104 ms
154,864 KB
testcase_30 AC 1,069 ms
154,700 KB
testcase_31 AC 147 ms
93,312 KB
testcase_32 AC 144 ms
93,056 KB
testcase_33 AC 149 ms
93,440 KB
testcase_34 AC 142 ms
93,440 KB
testcase_35 AC 143 ms
93,312 KB
testcase_36 AC 99 ms
89,088 KB
testcase_37 AC 161 ms
96,128 KB
testcase_38 AC 48 ms
54,784 KB
testcase_39 AC 49 ms
54,784 KB
testcase_40 AC 150 ms
94,976 KB
testcase_41 AC 148 ms
95,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import lru_cache
@lru_cache(maxsize=100000)
def make_divisors(n):
    divisors = []  #必要に応じてsetにしても良いかも
    i = 1
    while i ** 2 <= n:
        if n % i == 0:
            divisors.append(i)
            if i ** 2 != n:
                divisors.append(n//i)
        i += 1
    #divisors.sort()
    return divisors


N = int(input())
A = list(map(int, input().split()))
maxa = max(A)
C = [set() 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].add(a)

print(max(E))
0