結果

問題 No.390 最長の数列
ユーザー rpy3cpprpy3cpp
提出日時 2016-07-09 08:24:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 936 ms / 5,000 ms
コード長 464 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 24,264 KB
最終ジャッジ日時 2024-10-02 10:40:22
合計ジャッジ時間 4,089 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 166 ms
24,136 KB
testcase_06 AC 936 ms
24,172 KB
testcase_07 AC 30 ms
10,880 KB
testcase_08 AC 105 ms
18,304 KB
testcase_09 AC 151 ms
18,432 KB
testcase_10 AC 274 ms
24,188 KB
testcase_11 AC 272 ms
24,264 KB
testcase_12 AC 273 ms
24,192 KB
testcase_13 AC 355 ms
23,948 KB
testcase_14 AC 175 ms
20,544 KB
testcase_15 AC 32 ms
10,752 KB
testcase_16 AC 107 ms
18,520 KB
testcase_17 AC 110 ms
19,072 KB
testcase_18 AC 115 ms
19,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def read_data():
    N = int(input())
    Xs = list(map(int, input().split()))
    return N, Xs
    
def solve(N, Xs):
    maxX = max(Xs)
    dp = [0] * (maxX + 1)
    for x in Xs:
        dp[x] = 1
    for i in range(1, maxX + 1):
        di = dp[i]
        if di == 0:
            continue
        for j in range(i * 2, maxX + 1, i):
            if dp[j] and di >= dp[j]:
                dp[j] = di + 1
    return max(dp)

N, Xs = read_data()
print(solve(N, Xs))
0