結果

問題 No.390 最長の数列
ユーザー konsin_tokagekonsin_tokage
提出日時 2018-04-07 00:58:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 308 ms / 5,000 ms
コード長 333 bytes
コンパイル時間 464 ms
コンパイル使用メモリ 82,700 KB
実行使用メモリ 99,288 KB
最終ジャッジ日時 2024-06-26 10:52:56
合計ジャッジ時間 3,627 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
74,416 KB
testcase_01 AC 63 ms
74,500 KB
testcase_02 AC 65 ms
74,304 KB
testcase_03 AC 62 ms
73,792 KB
testcase_04 AC 63 ms
74,004 KB
testcase_05 AC 79 ms
94,220 KB
testcase_06 AC 308 ms
99,224 KB
testcase_07 AC 59 ms
74,352 KB
testcase_08 AC 56 ms
73,052 KB
testcase_09 AC 60 ms
73,976 KB
testcase_10 AC 190 ms
99,260 KB
testcase_11 AC 190 ms
99,288 KB
testcase_12 AC 183 ms
99,288 KB
testcase_13 AC 121 ms
97,652 KB
testcase_14 AC 205 ms
98,860 KB
testcase_15 AC 57 ms
72,896 KB
testcase_16 AC 56 ms
73,280 KB
testcase_17 AC 68 ms
81,888 KB
testcase_18 AC 72 ms
86,340 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