結果

問題 No.390 最長の数列
ユーザー ronpooronpoo
提出日時 2023-08-29 11:00:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 169 ms / 5,000 ms
コード長 304 bytes
コンパイル時間 401 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 98,416 KB
最終ジャッジ日時 2024-12-30 23:18:23
合計ジャッジ時間 2,969 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,344 KB
testcase_01 AC 33 ms
52,492 KB
testcase_02 AC 32 ms
52,428 KB
testcase_03 AC 33 ms
53,296 KB
testcase_04 AC 37 ms
52,316 KB
testcase_05 AC 80 ms
91,048 KB
testcase_06 AC 169 ms
97,524 KB
testcase_07 AC 33 ms
52,416 KB
testcase_08 AC 41 ms
65,752 KB
testcase_09 AC 44 ms
66,416 KB
testcase_10 AC 98 ms
98,416 KB
testcase_11 AC 100 ms
98,072 KB
testcase_12 AC 105 ms
98,176 KB
testcase_13 AC 80 ms
90,700 KB
testcase_14 AC 99 ms
91,188 KB
testcase_15 AC 38 ms
57,880 KB
testcase_16 AC 40 ms
65,072 KB
testcase_17 AC 53 ms
72,340 KB
testcase_18 AC 52 ms
73,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

xma = max(x)
x.sort()
dp = [-1] * (xma+1)
for i in range(N):
    dp[x[i]] = 1

for i in range(N):
    v = x[i]    
    for j in range(2*v, xma+1, v):
        if dp[j] != -1:
            dp[j] = max(dp[j], dp[v] + 1)

ans = max(dp)        
print(ans)
0