結果

問題 No.2218 Multiple LIS
ユーザー chankei271828chankei271828
提出日時 2023-02-17 21:44:20
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 401 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 101,632 KB
最終ジャッジ日時 2024-07-19 12:55:05
合計ジャッジ時間 10,356 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 187 ms
89,728 KB
testcase_01 AC 176 ms
89,728 KB
testcase_02 AC 176 ms
89,472 KB
testcase_03 AC 183 ms
89,472 KB
testcase_04 AC 181 ms
89,344 KB
testcase_05 AC 182 ms
89,472 KB
testcase_06 AC 189 ms
89,728 KB
testcase_07 AC 186 ms
89,600 KB
testcase_08 AC 183 ms
89,600 KB
testcase_09 AC 190 ms
89,344 KB
testcase_10 AC 197 ms
89,344 KB
testcase_11 AC 178 ms
89,344 KB
testcase_12 AC 186 ms
89,472 KB
testcase_13 AC 185 ms
89,600 KB
testcase_14 AC 184 ms
89,472 KB
testcase_15 AC 205 ms
89,472 KB
testcase_16 AC 189 ms
89,600 KB
testcase_17 AC 187 ms
89,600 KB
testcase_18 AC 184 ms
89,728 KB
testcase_19 AC 183 ms
89,600 KB
testcase_20 AC 183 ms
89,600 KB
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 224 ms
98,572 KB
testcase_24 AC 189 ms
89,088 KB
testcase_25 RE -
testcase_26 RE -
testcase_27 AC 248 ms
98,432 KB
testcase_28 AC 245 ms
98,688 KB
testcase_29 AC 248 ms
98,432 KB
testcase_30 RE -
testcase_31 AC 206 ms
98,944 KB
testcase_32 AC 205 ms
98,688 KB
testcase_33 AC 229 ms
98,560 KB
testcase_34 AC 220 ms
99,072 KB
testcase_35 AC 202 ms
98,304 KB
testcase_36 AC 179 ms
98,688 KB
testcase_37 RE -
testcase_38 AC 174 ms
89,472 KB
testcase_39 AC 182 ms
89,856 KB
testcase_40 AC 217 ms
98,816 KB
testcase_41 AC 230 ms
98,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
d=[[] for _ in range(10**5+1)]
for i in range(1,10**5+1):
    ima=i
    while ima<=10**5:
        d[ima].append(i)
        ima+=i
dp=[0]*(10**5)
#dp[n]:今見てるまでで、ラストの数字がnになってる部分列の長さのmax
for i in range(N):
    temp=0
    for q in d[A[i]]:
        temp=max(temp,dp[q])
    dp[A[i]]=temp+1
print(max(dp))
0