結果

問題 No.2218 Multiple LIS
ユーザー FromBooskaFromBooska
提出日時 2023-10-15 16:36:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 692 ms / 3,000 ms
コード長 619 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 92,520 KB
最終ジャッジ日時 2024-09-16 22:02:00
合計ジャッジ時間 9,724 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
57,728 KB
testcase_01 AC 42 ms
57,344 KB
testcase_02 AC 43 ms
57,600 KB
testcase_03 AC 41 ms
57,728 KB
testcase_04 AC 42 ms
57,216 KB
testcase_05 AC 43 ms
57,088 KB
testcase_06 AC 41 ms
58,112 KB
testcase_07 AC 41 ms
57,600 KB
testcase_08 AC 45 ms
57,600 KB
testcase_09 AC 48 ms
57,216 KB
testcase_10 AC 44 ms
57,856 KB
testcase_11 AC 42 ms
57,472 KB
testcase_12 AC 49 ms
59,904 KB
testcase_13 AC 54 ms
64,384 KB
testcase_14 AC 54 ms
63,872 KB
testcase_15 AC 59 ms
64,896 KB
testcase_16 AC 44 ms
59,136 KB
testcase_17 AC 53 ms
64,256 KB
testcase_18 AC 45 ms
57,472 KB
testcase_19 AC 44 ms
58,624 KB
testcase_20 AC 55 ms
64,256 KB
testcase_21 AC 81 ms
71,424 KB
testcase_22 AC 210 ms
80,384 KB
testcase_23 AC 315 ms
84,088 KB
testcase_24 AC 110 ms
77,184 KB
testcase_25 AC 344 ms
84,992 KB
testcase_26 AC 458 ms
89,984 KB
testcase_27 AC 458 ms
90,240 KB
testcase_28 AC 459 ms
90,112 KB
testcase_29 AC 455 ms
90,112 KB
testcase_30 AC 464 ms
90,112 KB
testcase_31 AC 202 ms
89,472 KB
testcase_32 AC 226 ms
89,344 KB
testcase_33 AC 205 ms
89,472 KB
testcase_34 AC 204 ms
89,344 KB
testcase_35 AC 229 ms
89,600 KB
testcase_36 AC 82 ms
88,832 KB
testcase_37 AC 692 ms
92,520 KB
testcase_38 AC 40 ms
57,856 KB
testcase_39 AC 42 ms
57,344 KB
testcase_40 AC 675 ms
89,856 KB
testcase_41 AC 676 ms
89,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 約数値の最大に+1するか

def divisors(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()))
num_count = [0]*(10**5+3)

for a in A:
    divs = divisors(a)
    mx = 0
    for d in divs:
        mx = max(mx, num_count[d])
    num_count[a] = max(num_count[a], mx+1)
    #print('a', a, num_count[:10])
    
ans = max(num_count)
print(ans)
0