結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
57,728 KB
testcase_01 AC 40 ms
58,112 KB
testcase_02 AC 40 ms
57,856 KB
testcase_03 AC 40 ms
57,856 KB
testcase_04 AC 43 ms
57,728 KB
testcase_05 AC 40 ms
58,112 KB
testcase_06 AC 43 ms
57,972 KB
testcase_07 AC 43 ms
57,600 KB
testcase_08 AC 43 ms
57,472 KB
testcase_09 AC 39 ms
57,344 KB
testcase_10 AC 40 ms
57,600 KB
testcase_11 AC 40 ms
57,856 KB
testcase_12 AC 45 ms
60,160 KB
testcase_13 AC 53 ms
64,256 KB
testcase_14 AC 51 ms
63,744 KB
testcase_15 AC 51 ms
64,768 KB
testcase_16 AC 41 ms
59,136 KB
testcase_17 AC 52 ms
64,128 KB
testcase_18 AC 39 ms
57,472 KB
testcase_19 AC 42 ms
58,752 KB
testcase_20 AC 50 ms
64,768 KB
testcase_21 AC 74 ms
71,808 KB
testcase_22 AC 202 ms
80,512 KB
testcase_23 AC 301 ms
84,608 KB
testcase_24 AC 106 ms
76,672 KB
testcase_25 AC 329 ms
85,248 KB
testcase_26 AC 448 ms
90,496 KB
testcase_27 AC 449 ms
90,368 KB
testcase_28 AC 446 ms
90,240 KB
testcase_29 AC 439 ms
90,112 KB
testcase_30 AC 447 ms
90,240 KB
testcase_31 AC 191 ms
89,728 KB
testcase_32 AC 220 ms
89,740 KB
testcase_33 AC 188 ms
89,968 KB
testcase_34 AC 193 ms
90,208 KB
testcase_35 AC 217 ms
90,112 KB
testcase_36 AC 75 ms
89,360 KB
testcase_37 AC 666 ms
91,008 KB
testcase_38 AC 38 ms
57,600 KB
testcase_39 AC 39 ms
57,344 KB
testcase_40 AC 659 ms
90,284 KB
testcase_41 AC 658 ms
90,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def makediv(n):
	lower_divisors , upper_divisors = [], []
	i = 1
	while i*i <= n:
		if n % i == 0:
			lower_divisors.append(i)
			if i != n // i:
				upper_divisors.append(n//i)
		i += 1
	return lower_divisors + upper_divisors[::-1]

n = int(input())
a = list(map(int,input().split()))
v = [0] * 100002
for i in range(n):
	tmp = 0
	for j in makediv(a[i]):
		tmp = max(tmp, v[j])
	v[a[i]] = max(v[a[i]], tmp + 1)

print(max(v))
0