結果

問題 No.390 最長の数列
ユーザー irumo8202irumo8202
提出日時 2022-01-22 18:37:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,450 ms / 5,000 ms
コード長 590 bytes
コンパイル時間 401 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 98,188 KB
最終ジャッジ日時 2024-11-27 18:16:09
合計ジャッジ時間 8,628 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,472 KB
testcase_01 AC 35 ms
52,984 KB
testcase_02 AC 36 ms
52,488 KB
testcase_03 AC 36 ms
52,800 KB
testcase_04 AC 37 ms
53,836 KB
testcase_05 AC 1,450 ms
97,804 KB
testcase_06 AC 978 ms
97,488 KB
testcase_07 AC 35 ms
52,400 KB
testcase_08 AC 41 ms
65,180 KB
testcase_09 AC 42 ms
65,716 KB
testcase_10 AC 1,045 ms
97,884 KB
testcase_11 AC 1,042 ms
98,028 KB
testcase_12 AC 1,074 ms
98,188 KB
testcase_13 AC 773 ms
93,920 KB
testcase_14 AC 538 ms
90,652 KB
testcase_15 AC 38 ms
58,852 KB
testcase_16 AC 47 ms
67,052 KB
testcase_17 AC 100 ms
78,004 KB
testcase_18 AC 127 ms
82,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
X = list(map(int, input().split()))
X.sort()


def make_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] * (X[-1] + 1)

for i in range(N):
    x = X[i]
    x_div = make_divisors(x)
    tmp = 0
    for xd in x_div:
        tmp = max(tmp, dp[xd])
    dp[x] = tmp + 1

ans = 0
for val in dp:
    ans = max(ans, val)

print(ans)
0