結果

問題 No.390 最長の数列
ユーザー konsin_tokagekonsin_tokage
提出日時 2018-04-07 08:54:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 210 ms / 5,000 ms
コード長 310 bytes
コンパイル時間 961 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 96,512 KB
最終ジャッジ日時 2024-06-26 10:57:15
合計ジャッジ時間 2,654 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
73,856 KB
testcase_01 AC 66 ms
73,728 KB
testcase_02 AC 69 ms
73,472 KB
testcase_03 AC 66 ms
73,728 KB
testcase_04 AC 68 ms
73,856 KB
testcase_05 AC 80 ms
90,880 KB
testcase_06 AC 210 ms
96,128 KB
testcase_07 AC 59 ms
73,472 KB
testcase_08 AC 68 ms
73,344 KB
testcase_09 AC 70 ms
73,600 KB
testcase_10 AC 106 ms
95,872 KB
testcase_11 AC 103 ms
96,128 KB
testcase_12 AC 116 ms
96,512 KB
testcase_13 AC 103 ms
90,880 KB
testcase_14 AC 172 ms
94,976 KB
testcase_15 AC 60 ms
73,600 KB
testcase_16 AC 62 ms
74,880 KB
testcase_17 AC 69 ms
78,480 KB
testcase_18 AC 72 ms
79,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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