結果

問題 No.2218 Multiple LIS
ユーザー googol_S0googol_S0
提出日時 2023-02-17 21:25:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 260 ms / 3,000 ms
コード長 295 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 100,196 KB
最終ジャッジ日時 2024-07-19 12:26:30
合計ジャッジ時間 9,644 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
90,112 KB
testcase_01 AC 166 ms
90,240 KB
testcase_02 AC 160 ms
90,112 KB
testcase_03 AC 161 ms
90,112 KB
testcase_04 AC 158 ms
89,960 KB
testcase_05 AC 181 ms
89,916 KB
testcase_06 AC 168 ms
90,112 KB
testcase_07 AC 191 ms
90,112 KB
testcase_08 AC 177 ms
90,208 KB
testcase_09 AC 201 ms
90,112 KB
testcase_10 AC 180 ms
90,496 KB
testcase_11 AC 167 ms
90,112 KB
testcase_12 AC 176 ms
89,856 KB
testcase_13 AC 177 ms
90,368 KB
testcase_14 AC 167 ms
90,240 KB
testcase_15 AC 189 ms
90,376 KB
testcase_16 AC 159 ms
90,208 KB
testcase_17 AC 185 ms
90,240 KB
testcase_18 AC 177 ms
90,112 KB
testcase_19 AC 173 ms
90,016 KB
testcase_20 AC 165 ms
90,240 KB
testcase_21 AC 192 ms
100,196 KB
testcase_22 AC 196 ms
98,944 KB
testcase_23 AC 222 ms
98,948 KB
testcase_24 AC 197 ms
99,864 KB
testcase_25 AC 231 ms
99,020 KB
testcase_26 AC 246 ms
99,584 KB
testcase_27 AC 240 ms
99,468 KB
testcase_28 AC 248 ms
99,456 KB
testcase_29 AC 256 ms
99,456 KB
testcase_30 AC 260 ms
99,584 KB
testcase_31 AC 201 ms
99,712 KB
testcase_32 AC 201 ms
99,552 KB
testcase_33 AC 205 ms
99,456 KB
testcase_34 AC 205 ms
99,548 KB
testcase_35 AC 198 ms
99,328 KB
testcase_36 AC 180 ms
99,584 KB
testcase_37 AC 218 ms
99,584 KB
testcase_38 AC 177 ms
90,112 KB
testcase_39 AC 171 ms
89,964 KB
testcase_40 AC 207 ms
99,456 KB
testcase_41 AC 237 ms
99,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
M=100000
D=[[] for i in range(M+1)]
DP=[0]*(M+1)
for i in range(1,M+1):
  for j in range(i,M+1,i):
    D[j].append(i)
for i in range(N):
  v=0
  for j in range(len(D[A[i]])):
    v=max(v,DP[D[A[i]][j]]+1)
  DP[A[i]]=max(DP[A[i]],v)
print(max(DP))
0