結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
60,160 KB
testcase_01 AC 49 ms
54,784 KB
testcase_02 AC 48 ms
54,912 KB
testcase_03 AC 48 ms
54,400 KB
testcase_04 AC 49 ms
54,656 KB
testcase_05 AC 50 ms
54,912 KB
testcase_06 AC 49 ms
54,400 KB
testcase_07 AC 49 ms
54,272 KB
testcase_08 AC 49 ms
54,784 KB
testcase_09 AC 51 ms
54,656 KB
testcase_10 AC 50 ms
54,400 KB
testcase_11 AC 50 ms
55,424 KB
testcase_12 AC 61 ms
62,336 KB
testcase_13 AC 67 ms
66,304 KB
testcase_14 AC 65 ms
65,408 KB
testcase_15 AC 65 ms
65,408 KB
testcase_16 AC 52 ms
55,424 KB
testcase_17 AC 66 ms
65,920 KB
testcase_18 AC 58 ms
55,040 KB
testcase_19 AC 53 ms
55,424 KB
testcase_20 AC 66 ms
65,408 KB
testcase_21 AC 130 ms
82,304 KB
testcase_22 AC 321 ms
96,640 KB
testcase_23 AC 483 ms
117,028 KB
testcase_24 AC 195 ms
87,680 KB
testcase_25 AC 504 ms
116,932 KB
testcase_26 AC 661 ms
128,672 KB
testcase_27 AC 663 ms
129,432 KB
testcase_28 AC 680 ms
127,784 KB
testcase_29 AC 690 ms
128,784 KB
testcase_30 AC 689 ms
129,312 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):
    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 = [[] 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