結果

問題 No.2218 Multiple LIS
ユーザー chankei271828chankei271828
提出日時 2023-02-17 21:46:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 217 ms / 3,000 ms
コード長 403 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 99,132 KB
最終ジャッジ日時 2024-07-19 12:57:14
合計ジャッジ時間 8,606 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
89,856 KB
testcase_01 AC 145 ms
89,728 KB
testcase_02 AC 160 ms
89,984 KB
testcase_03 AC 157 ms
89,728 KB
testcase_04 AC 144 ms
89,472 KB
testcase_05 AC 150 ms
89,472 KB
testcase_06 AC 149 ms
89,856 KB
testcase_07 AC 150 ms
89,600 KB
testcase_08 AC 153 ms
89,856 KB
testcase_09 AC 163 ms
90,112 KB
testcase_10 AC 155 ms
89,728 KB
testcase_11 AC 149 ms
89,856 KB
testcase_12 AC 152 ms
89,472 KB
testcase_13 AC 149 ms
89,728 KB
testcase_14 AC 162 ms
89,856 KB
testcase_15 AC 154 ms
89,600 KB
testcase_16 AC 144 ms
89,600 KB
testcase_17 AC 154 ms
89,856 KB
testcase_18 AC 143 ms
89,600 KB
testcase_19 AC 146 ms
89,728 KB
testcase_20 AC 157 ms
89,984 KB
testcase_21 AC 156 ms
89,344 KB
testcase_22 AC 176 ms
98,944 KB
testcase_23 AC 189 ms
98,968 KB
testcase_24 AC 157 ms
89,216 KB
testcase_25 AC 196 ms
99,132 KB
testcase_26 AC 206 ms
98,944 KB
testcase_27 AC 199 ms
98,688 KB
testcase_28 AC 199 ms
98,816 KB
testcase_29 AC 198 ms
98,816 KB
testcase_30 AC 217 ms
98,688 KB
testcase_31 AC 177 ms
98,688 KB
testcase_32 AC 183 ms
98,688 KB
testcase_33 AC 179 ms
98,688 KB
testcase_34 AC 185 ms
98,560 KB
testcase_35 AC 188 ms
98,816 KB
testcase_36 AC 160 ms
99,072 KB
testcase_37 AC 185 ms
98,688 KB
testcase_38 AC 153 ms
89,600 KB
testcase_39 AC 150 ms
89,600 KB
testcase_40 AC 186 ms
98,432 KB
testcase_41 AC 184 ms
98,816 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+1)
#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