結果

問題 No.390 最長の数列
ユーザー roarisroaris
提出日時 2019-08-14 23:20:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 582 ms / 5,000 ms
コード長 375 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 244,992 KB
最終ジャッジ日時 2024-09-19 14:39:56
合計ジャッジ時間 3,819 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,120 KB
testcase_01 AC 46 ms
53,888 KB
testcase_02 AC 36 ms
53,760 KB
testcase_03 AC 35 ms
53,248 KB
testcase_04 AC 36 ms
53,120 KB
testcase_05 AC 93 ms
107,136 KB
testcase_06 AC 582 ms
244,992 KB
testcase_07 AC 37 ms
53,248 KB
testcase_08 AC 42 ms
65,792 KB
testcase_09 AC 201 ms
236,160 KB
testcase_10 AC 240 ms
179,968 KB
testcase_11 AC 257 ms
189,440 KB
testcase_12 AC 246 ms
189,952 KB
testcase_13 AC 299 ms
240,128 KB
testcase_14 AC 120 ms
102,656 KB
testcase_15 AC 38 ms
58,328 KB
testcase_16 AC 42 ms
66,560 KB
testcase_17 AC 60 ms
77,056 KB
testcase_18 AC 71 ms
83,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#配るDP
from collections import defaultdict

N = int(input())
x = list(map(int, input().split()))
x.sort()
flag = defaultdict(int)

for xi in x:
    flag[xi] = 1
    
A = max(x)
dp = [1] * (A+1)

for xi in x:
    mult = 2
    
    while mult * xi <= A:
        if flag[mult*xi]:
            dp[mult*xi] = max(dp[mult*xi], dp[xi]+1)
        mult += 1
        
print(max(dp))
0