結果

問題 No.2218 Multiple LIS
ユーザー 👑 KazunKazun
提出日時 2023-02-17 21:36:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 218 ms / 3,000 ms
コード長 429 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 99,968 KB
最終ジャッジ日時 2024-07-19 12:42:38
合計ジャッジ時間 5,244 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 36 ms
51,456 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 35 ms
51,712 KB
testcase_05 AC 35 ms
51,840 KB
testcase_06 AC 34 ms
51,712 KB
testcase_07 AC 32 ms
51,712 KB
testcase_08 AC 34 ms
51,712 KB
testcase_09 AC 35 ms
51,456 KB
testcase_10 AC 33 ms
51,968 KB
testcase_11 AC 33 ms
51,968 KB
testcase_12 AC 40 ms
57,472 KB
testcase_13 AC 45 ms
59,392 KB
testcase_14 AC 44 ms
59,136 KB
testcase_15 AC 44 ms
59,008 KB
testcase_16 AC 34 ms
51,712 KB
testcase_17 AC 40 ms
59,264 KB
testcase_18 AC 34 ms
51,584 KB
testcase_19 AC 34 ms
52,096 KB
testcase_20 AC 42 ms
59,264 KB
testcase_21 AC 182 ms
99,968 KB
testcase_22 AC 179 ms
98,688 KB
testcase_23 AC 186 ms
98,444 KB
testcase_24 AC 169 ms
98,944 KB
testcase_25 AC 189 ms
98,688 KB
testcase_26 AC 206 ms
98,432 KB
testcase_27 AC 199 ms
98,560 KB
testcase_28 AC 197 ms
98,432 KB
testcase_29 AC 199 ms
98,432 KB
testcase_30 AC 218 ms
99,416 KB
testcase_31 AC 137 ms
96,384 KB
testcase_32 AC 138 ms
96,000 KB
testcase_33 AC 135 ms
96,000 KB
testcase_34 AC 139 ms
96,256 KB
testcase_35 AC 131 ms
96,384 KB
testcase_36 AC 60 ms
77,568 KB
testcase_37 AC 195 ms
98,304 KB
testcase_38 AC 36 ms
51,840 KB
testcase_39 AC 35 ms
51,840 KB
testcase_40 AC 142 ms
96,512 KB
testcase_41 AC 147 ms
97,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    N=int(input())
    A=list(map(int,input().split()))

    A_max=max(A)

    div=[[] for _ in range(A_max+1)]
    for a in range(1,A_max+1):
        for b in range(a,A_max+1,a):
            div[b].append(a)

    DP=[0]*(A_max+1)
    for a in A:
        x=0
        for b in div[a]:
            x=max(x, DP[b])
        DP[a]=x+1
    return max(DP)

#==================================================
print(solve())
0