結果

問題 No.390 最長の数列
ユーザー roarisroaris
提出日時 2019-08-14 23:25:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,513 ms / 5,000 ms
コード長 604 bytes
コンパイル時間 797 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 123,548 KB
最終ジャッジ日時 2024-09-19 14:40:08
合計ジャッジ時間 9,378 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,760 KB
testcase_01 AC 40 ms
53,376 KB
testcase_02 AC 54 ms
53,888 KB
testcase_03 AC 51 ms
54,016 KB
testcase_04 AC 50 ms
53,760 KB
testcase_05 AC 1,513 ms
123,548 KB
testcase_06 AC 997 ms
112,768 KB
testcase_07 AC 41 ms
53,248 KB
testcase_08 AC 52 ms
66,432 KB
testcase_09 AC 50 ms
66,560 KB
testcase_10 AC 1,131 ms
113,408 KB
testcase_11 AC 1,179 ms
113,408 KB
testcase_12 AC 1,148 ms
113,664 KB
testcase_13 AC 764 ms
106,496 KB
testcase_14 AC 540 ms
106,368 KB
testcase_15 AC 44 ms
58,752 KB
testcase_16 AC 56 ms
68,352 KB
testcase_17 AC 126 ms
83,328 KB
testcase_18 AC 163 ms
87,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#貰うDP
from collections import defaultdict

def make_divisors(n):
    divisors = []
    for i in range(1, int(n**0.5)+1):
        if n % i == 0:
            divisors.append(i)
            if i != n // i:
                divisors.append(n//i)
 
    return divisors
    
N = int(input())
x = list(map(int, input().split()))
x.sort()
flag = defaultdict(int)

for xi in x:
    flag[xi] = 1
    
A = max(x)
dp = [1] * (A+1)

for xi in x:
    divisors = make_divisors(xi)
    
    for div in divisors:
        if xi != div and flag[div]:
            dp[xi] = max(dp[xi], dp[div]+1)

ans = max(dp)
print(ans)
0