結果

問題 No.2218 Multiple LIS
ユーザー ntudantuda
提出日時 2023-02-20 17:00:28
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 634 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 154,568 KB
最終ジャッジ日時 2024-07-21 09:00:44
合計ジャッジ時間 11,961 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
154,568 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 41 ms
52,352 KB
testcase_03 AC 41 ms
51,712 KB
testcase_04 AC 40 ms
51,840 KB
testcase_05 AC 41 ms
52,224 KB
testcase_06 AC 41 ms
52,096 KB
testcase_07 AC 40 ms
51,712 KB
testcase_08 AC 41 ms
51,968 KB
testcase_09 AC 41 ms
51,968 KB
testcase_10 AC 41 ms
51,584 KB
testcase_11 AC 41 ms
51,840 KB
testcase_12 AC 54 ms
60,672 KB
testcase_13 AC 66 ms
65,408 KB
testcase_14 AC 72 ms
64,128 KB
testcase_15 AC 62 ms
64,000 KB
testcase_16 AC 47 ms
57,344 KB
testcase_17 AC 68 ms
65,152 KB
testcase_18 AC 42 ms
52,352 KB
testcase_19 AC 47 ms
57,600 KB
testcase_20 AC 62 ms
63,744 KB
testcase_21 AC 116 ms
81,664 KB
testcase_22 AC 287 ms
88,576 KB
testcase_23 AC 444 ms
101,284 KB
testcase_24 AC 163 ms
83,968 KB
testcase_25 AC 484 ms
102,632 KB
testcase_26 AC 668 ms
121,004 KB
testcase_27 AC 676 ms
121,052 KB
testcase_28 AC 671 ms
121,264 KB
testcase_29 AC 693 ms
121,224 KB
testcase_30 AC 669 ms
121,632 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 #

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