結果

問題 No.2218 Multiple LIS
ユーザー kohakoha11301kohakoha11301
提出日時 2023-02-27 14:35:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 679 ms / 3,000 ms
コード長 640 bytes
コンパイル時間 593 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 91,264 KB
最終ジャッジ日時 2024-09-14 22:07:00
合計ジャッジ時間 9,709 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
57,856 KB
testcase_01 AC 43 ms
57,472 KB
testcase_02 AC 42 ms
57,640 KB
testcase_03 AC 42 ms
57,856 KB
testcase_04 AC 42 ms
58,112 KB
testcase_05 AC 43 ms
57,856 KB
testcase_06 AC 42 ms
57,856 KB
testcase_07 AC 42 ms
57,856 KB
testcase_08 AC 41 ms
57,856 KB
testcase_09 AC 42 ms
57,728 KB
testcase_10 AC 42 ms
57,796 KB
testcase_11 AC 42 ms
57,984 KB
testcase_12 AC 48 ms
60,416 KB
testcase_13 AC 60 ms
66,048 KB
testcase_14 AC 59 ms
65,920 KB
testcase_15 AC 58 ms
66,432 KB
testcase_16 AC 45 ms
59,264 KB
testcase_17 AC 58 ms
66,560 KB
testcase_18 AC 43 ms
58,112 KB
testcase_19 AC 46 ms
59,264 KB
testcase_20 AC 59 ms
66,560 KB
testcase_21 AC 80 ms
74,752 KB
testcase_22 AC 200 ms
81,080 KB
testcase_23 AC 303 ms
84,344 KB
testcase_24 AC 108 ms
77,440 KB
testcase_25 AC 340 ms
85,896 KB
testcase_26 AC 446 ms
90,624 KB
testcase_27 AC 444 ms
90,384 KB
testcase_28 AC 445 ms
90,624 KB
testcase_29 AC 444 ms
90,624 KB
testcase_30 AC 463 ms
90,744 KB
testcase_31 AC 211 ms
90,056 KB
testcase_32 AC 239 ms
90,240 KB
testcase_33 AC 209 ms
90,240 KB
testcase_34 AC 204 ms
89,936 KB
testcase_35 AC 239 ms
90,240 KB
testcase_36 AC 94 ms
89,216 KB
testcase_37 AC 657 ms
91,264 KB
testcase_38 AC 42 ms
57,728 KB
testcase_39 AC 42 ms
57,856 KB
testcase_40 AC 677 ms
90,712 KB
testcase_41 AC 679 ms
91,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def divisor(n):
    sq = n ** 0.5
    border = int(sq)
    table = []
    bigs = []
    for small in range(1, border + 1):
        if n % small == 0:
            table.append(small)
            big = n // small
            bigs.append(big)
    if border == sq:  # nが平方数
        bigs.pop()
    table += reversed(bigs)
    return table


n = int(input())
a = list(map(int, input().split()))
dp = [0] * (10 ** 5 + 1)
dp[1] = 1
for i in range(n):
    tmp = divisor(a[i])
    cnt = -1
    v = -1
    for j in tmp:
        if dp[j] > v:
            cnt = j
            v = dp[j]
    dp[a[i]] = max(dp[a[i]], dp[cnt] + 1)
print(max(dp)-1)
0