結果

問題 No.2218 Multiple LIS
ユーザー shakayamishakayami
提出日時 2023-02-17 21:58:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 282 ms / 3,000 ms
コード長 475 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 105,280 KB
最終ジャッジ日時 2024-07-19 13:11:30
合計ジャッジ時間 6,093 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 36 ms
51,456 KB
testcase_02 AC 36 ms
51,840 KB
testcase_03 AC 35 ms
51,840 KB
testcase_04 AC 36 ms
51,584 KB
testcase_05 AC 36 ms
51,584 KB
testcase_06 AC 35 ms
51,328 KB
testcase_07 AC 35 ms
51,584 KB
testcase_08 AC 35 ms
51,840 KB
testcase_09 AC 39 ms
51,712 KB
testcase_10 AC 37 ms
51,584 KB
testcase_11 AC 37 ms
51,584 KB
testcase_12 AC 42 ms
58,496 KB
testcase_13 AC 46 ms
60,416 KB
testcase_14 AC 47 ms
61,824 KB
testcase_15 AC 46 ms
60,800 KB
testcase_16 AC 37 ms
52,096 KB
testcase_17 AC 45 ms
61,056 KB
testcase_18 AC 37 ms
51,584 KB
testcase_19 AC 36 ms
51,968 KB
testcase_20 AC 45 ms
61,184 KB
testcase_21 AC 185 ms
102,784 KB
testcase_22 AC 194 ms
99,584 KB
testcase_23 AC 218 ms
99,704 KB
testcase_24 AC 190 ms
100,864 KB
testcase_25 AC 240 ms
99,616 KB
testcase_26 AC 252 ms
99,368 KB
testcase_27 AC 259 ms
99,056 KB
testcase_28 AC 255 ms
99,376 KB
testcase_29 AC 246 ms
99,048 KB
testcase_30 AC 282 ms
99,484 KB
testcase_31 AC 150 ms
95,468 KB
testcase_32 AC 163 ms
95,224 KB
testcase_33 AC 159 ms
94,960 KB
testcase_34 AC 156 ms
94,840 KB
testcase_35 AC 158 ms
95,212 KB
testcase_36 AC 65 ms
83,072 KB
testcase_37 AC 224 ms
105,280 KB
testcase_38 AC 35 ms
52,096 KB
testcase_39 AC 35 ms
51,584 KB
testcase_40 AC 162 ms
100,264 KB
testcase_41 AC 164 ms
100,568 KB
権限があれば一括ダウンロードができます

ソースコード

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]]:
        if len(B[d])>0:
            j=B[d][-1]
            dp[i]=max(dp[i],dp[j]+1)
    B[A[i]].append(i)
print(max(dp))
0