結果

問題 No.2218 Multiple LIS
ユーザー ああいいああいい
提出日時 2023-02-18 18:03:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 388 ms / 3,000 ms
コード長 395 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 106,576 KB
最終ジャッジ日時 2024-07-20 03:03:33
合計ジャッジ時間 10,750 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 178 ms
88,448 KB
testcase_01 AC 178 ms
88,320 KB
testcase_02 AC 164 ms
88,620 KB
testcase_03 AC 179 ms
88,320 KB
testcase_04 AC 176 ms
88,576 KB
testcase_05 AC 182 ms
88,448 KB
testcase_06 AC 177 ms
88,448 KB
testcase_07 AC 186 ms
88,320 KB
testcase_08 AC 176 ms
88,320 KB
testcase_09 AC 189 ms
88,320 KB
testcase_10 AC 178 ms
88,400 KB
testcase_11 AC 186 ms
88,448 KB
testcase_12 AC 179 ms
88,576 KB
testcase_13 AC 200 ms
99,456 KB
testcase_14 AC 199 ms
99,072 KB
testcase_15 AC 197 ms
99,436 KB
testcase_16 AC 181 ms
88,320 KB
testcase_17 AC 190 ms
98,956 KB
testcase_18 AC 175 ms
88,320 KB
testcase_19 AC 175 ms
88,448 KB
testcase_20 AC 195 ms
99,076 KB
testcase_21 AC 204 ms
98,896 KB
testcase_22 AC 239 ms
102,012 KB
testcase_23 AC 259 ms
105,192 KB
testcase_24 AC 194 ms
99,200 KB
testcase_25 AC 289 ms
104,908 KB
testcase_26 AC 345 ms
105,920 KB
testcase_27 AC 337 ms
106,300 KB
testcase_28 AC 388 ms
106,356 KB
testcase_29 AC 341 ms
106,576 KB
testcase_30 AC 356 ms
106,044 KB
testcase_31 AC 225 ms
98,176 KB
testcase_32 AC 235 ms
98,304 KB
testcase_33 AC 234 ms
98,160 KB
testcase_34 AC 237 ms
98,176 KB
testcase_35 AC 239 ms
98,136 KB
testcase_36 AC 193 ms
98,172 KB
testcase_37 AC 233 ms
98,716 KB
testcase_38 AC 167 ms
88,724 KB
testcase_39 AC 172 ms
88,668 KB
testcase_40 AC 254 ms
98,176 KB
testcase_41 AC 257 ms
98,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))

C = 10 ** 5 + 5
div = [[1] for _ in range(C)]
div[1] = []
for i in range(2,C):
    for j in range(i + i,C,i):
        div[j].append(i)
d = dict()
d[1] = 0
for a in A:
    if a not in d:
        d[a] = 0
    else:
        d[a] += 1
    for u in div[a]:
        if u in d:
            d[a] = max(d[a],d[u] + 1)
print(max(d.values()))
#print(d)
0