結果

問題 No.2218 Multiple LIS
ユーザー shakayamishakayami
提出日時 2023-02-17 21:57:58
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 451 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 107,220 KB
最終ジャッジ日時 2024-07-19 13:10:22
合計ジャッジ時間 8,408 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
56,960 KB
testcase_01 AC 35 ms
51,712 KB
testcase_02 AC 33 ms
51,712 KB
testcase_03 AC 35 ms
51,840 KB
testcase_04 AC 37 ms
51,840 KB
testcase_05 AC 36 ms
51,840 KB
testcase_06 AC 37 ms
51,840 KB
testcase_07 AC 36 ms
51,584 KB
testcase_08 AC 36 ms
51,456 KB
testcase_09 AC 39 ms
51,712 KB
testcase_10 AC 42 ms
51,584 KB
testcase_11 AC 40 ms
51,712 KB
testcase_12 AC 51 ms
59,904 KB
testcase_13 AC 51 ms
61,952 KB
testcase_14 AC 52 ms
62,336 KB
testcase_15 AC 56 ms
63,104 KB
testcase_16 AC 41 ms
52,096 KB
testcase_17 AC 55 ms
63,616 KB
testcase_18 AC 36 ms
52,096 KB
testcase_19 AC 37 ms
52,224 KB
testcase_20 AC 49 ms
61,952 KB
testcase_21 AC 185 ms
102,272 KB
testcase_22 AC 204 ms
99,712 KB
testcase_23 AC 213 ms
99,740 KB
testcase_24 AC 187 ms
100,736 KB
testcase_25 AC 222 ms
99,484 KB
testcase_26 AC 258 ms
99,872 KB
testcase_27 AC 283 ms
107,220 KB
testcase_28 AC 266 ms
99,360 KB
testcase_29 AC 260 ms
99,620 KB
testcase_30 AC 272 ms
99,876 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 #

N=int(input())
A=[int(i) for i in input().split()]
maxA=max(A)
div=[[] for i in range(maxA+1)]
for i in range(1,maxA+1):
    for j in range(i,maxA+1,i):
        div[j].append(i)
B=[[] for i in range(maxA+1)]
dp=[0 for i in range(N)]
for i in range(N):
    #dp[i] i番目が最後であるような列のmax
    dp[i]=max(dp[i],1)
    for d in div[A[i]]:
        for j in B[d]:
            dp[i]=max(dp[i],dp[j]+1)
    B[A[i]].append(i)
print(max(dp))
0