結果

問題 No.2218 Multiple LIS
ユーザー FromBooskaFromBooska
提出日時 2023-04-16 21:03:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 678 ms / 3,000 ms
コード長 690 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 94,368 KB
最終ジャッジ日時 2024-10-12 03:23:06
合計ジャッジ時間 9,280 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,416 KB
testcase_01 AC 39 ms
51,824 KB
testcase_02 AC 37 ms
52,888 KB
testcase_03 AC 36 ms
51,944 KB
testcase_04 AC 37 ms
52,284 KB
testcase_05 AC 36 ms
53,648 KB
testcase_06 AC 39 ms
52,736 KB
testcase_07 AC 37 ms
52,968 KB
testcase_08 AC 37 ms
52,952 KB
testcase_09 AC 38 ms
52,868 KB
testcase_10 AC 37 ms
53,076 KB
testcase_11 AC 36 ms
52,472 KB
testcase_12 AC 43 ms
59,604 KB
testcase_13 AC 51 ms
63,520 KB
testcase_14 AC 51 ms
63,120 KB
testcase_15 AC 51 ms
63,660 KB
testcase_16 AC 42 ms
58,120 KB
testcase_17 AC 51 ms
63,304 KB
testcase_18 AC 38 ms
53,292 KB
testcase_19 AC 42 ms
58,964 KB
testcase_20 AC 51 ms
64,120 KB
testcase_21 AC 74 ms
72,984 KB
testcase_22 AC 195 ms
80,480 KB
testcase_23 AC 295 ms
83,900 KB
testcase_24 AC 106 ms
76,936 KB
testcase_25 AC 329 ms
85,452 KB
testcase_26 AC 440 ms
90,536 KB
testcase_27 AC 440 ms
90,468 KB
testcase_28 AC 436 ms
90,192 KB
testcase_29 AC 440 ms
90,124 KB
testcase_30 AC 440 ms
90,000 KB
testcase_31 AC 194 ms
89,352 KB
testcase_32 AC 224 ms
89,856 KB
testcase_33 AC 193 ms
89,416 KB
testcase_34 AC 191 ms
89,480 KB
testcase_35 AC 221 ms
89,724 KB
testcase_36 AC 79 ms
88,228 KB
testcase_37 AC 678 ms
94,368 KB
testcase_38 AC 38 ms
52,400 KB
testcase_39 AC 38 ms
52,476 KB
testcase_40 AC 664 ms
89,984 KB
testcase_41 AC 660 ms
89,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 2次元dpで間に合うのか? 10**5の2乗になるのでは?

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

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]

dp = [0]*(maxA+1)
for a in A:
    divs = divisors(a)[::-1]
    # 自身を参照するときにオーバーカウントしないように自身を最初に参照
    for d in divs:
        dp[a] = max(dp[a], dp[d]+1)
    #print('a', a, dp)
ans = max(dp)
print(ans)

0