結果

問題 No.390 最長の数列
ユーザー konsin_tokagekonsin_tokage
提出日時 2018-04-07 01:00:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,399 ms / 5,000 ms
コード長 333 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 27,912 KB
最終ジャッジ日時 2024-06-26 10:53:12
合計ジャッジ時間 8,420 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 205 ms
26,396 KB
testcase_01 AC 141 ms
26,364 KB
testcase_02 AC 189 ms
26,368 KB
testcase_03 AC 158 ms
26,368 KB
testcase_04 AC 188 ms
26,368 KB
testcase_05 AC 176 ms
27,760 KB
testcase_06 AC 2,399 ms
27,760 KB
testcase_07 AC 153 ms
26,340 KB
testcase_08 AC 108 ms
26,240 KB
testcase_09 AC 141 ms
26,340 KB
testcase_10 AC 314 ms
27,912 KB
testcase_11 AC 331 ms
27,852 KB
testcase_12 AC 310 ms
27,844 KB
testcase_13 AC 324 ms
27,664 KB
testcase_14 AC 1,388 ms
27,792 KB
testcase_15 AC 101 ms
26,324 KB
testcase_16 AC 101 ms
26,312 KB
testcase_17 AC 109 ms
26,624 KB
testcase_18 AC 112 ms
26,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
m = 10**6+1
s = [False]*m
for i in map(int, input().split()):
    s[i] = True
memo = [0]*m
def dfs(i):
    if not memo[i]:
        memo[i] = 1
        for j in range(i+i, m, i):
            if s[j]:
                memo[i] = max(memo[i], 1 + dfs(j))
    return memo[i]
print(max(dfs(i) for i in range(1, m) if s[i]))
0