結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,584 KB
testcase_01 AC 40 ms
51,584 KB
testcase_02 AC 39 ms
51,584 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 42 ms
52,224 KB
testcase_05 AC 1,530 ms
98,560 KB
testcase_06 AC 1,005 ms
97,536 KB
testcase_07 AC 39 ms
51,584 KB
testcase_08 AC 45 ms
65,536 KB
testcase_09 AC 46 ms
65,408 KB
testcase_10 AC 1,068 ms
98,048 KB
testcase_11 AC 1,076 ms
97,792 KB
testcase_12 AC 1,108 ms
98,304 KB
testcase_13 AC 798 ms
94,336 KB
testcase_14 AC 539 ms
90,624 KB
testcase_15 AC 40 ms
57,216 KB
testcase_16 AC 51 ms
66,944 KB
testcase_17 AC 105 ms
77,184 KB
testcase_18 AC 144 ms
82,304 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