結果

問題 No.390 最長の数列
ユーザー nebukuro09nebukuro09
提出日時 2016-10-15 10:00:19
言語 Python2
(2.7.18)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 291 bytes
コンパイル時間 71 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 41,444 KB
最終ジャッジ日時 2024-05-02 01:52:57
合計ジャッジ時間 14,181 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,272 KB
testcase_01 AC 12 ms
6,400 KB
testcase_02 AC 12 ms
6,272 KB
testcase_03 AC 12 ms
6,400 KB
testcase_04 AC 12 ms
6,400 KB
testcase_05 AC 405 ms
41,324 KB
testcase_06 TLE -
testcase_07 AC 12 ms
6,272 KB
testcase_08 AC 279 ms
38,016 KB
testcase_09 AC 619 ms
38,016 KB
testcase_10 AC 1,039 ms
41,324 KB
testcase_11 AC 1,117 ms
41,328 KB
testcase_12 AC 1,027 ms
41,352 KB
testcase_13 AC 1,633 ms
40,764 KB
testcase_14 AC 863 ms
14,924 KB
testcase_15 AC 17 ms
6,912 KB
testcase_16 AC 290 ms
37,888 KB
testcase_17 AC 318 ms
38,272 KB
testcase_18 AC 335 ms
38,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()
x = sorted(map(int, raw_input().split()))

m = max(x)
dp = [float('-inf') for _ in xrange(m+1)]
for a in x:
    dp[a] = 1

for a in x:
    b = a*2
    c = dp[a]
    while b <= m:
        if dp[b] != float('-inf'):
            dp[b] = max(c+1, dp[b])
        b += a

print max(dp)
0