結果

問題 No.979 Longest Divisor Sequence
ユーザー lilictakalilictaka
提出日時 2022-05-23 21:31:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 672 bytes
コンパイル時間 445 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 180,600 KB
最終ジャッジ日時 2024-09-20 13:21:44
合計ジャッジ時間 3,265 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,760 KB
testcase_01 AC 39 ms
53,632 KB
testcase_02 AC 40 ms
53,888 KB
testcase_03 AC 39 ms
53,632 KB
testcase_04 AC 41 ms
53,888 KB
testcase_05 AC 41 ms
53,888 KB
testcase_06 AC 40 ms
53,888 KB
testcase_07 WA -
testcase_08 AC 41 ms
54,144 KB
testcase_09 AC 40 ms
53,632 KB
testcase_10 AC 87 ms
88,448 KB
testcase_11 AC 92 ms
88,576 KB
testcase_12 AC 89 ms
88,832 KB
testcase_13 AC 109 ms
121,856 KB
testcase_14 WA -
testcase_15 AC 246 ms
114,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
from bisect import bisect_left
N = int(input())
A = list(map(int,input().split()))
MAX = max(A)
newA = []
Aset = set()
for a in A:
    if a in Aset:
        continue
    newA.append(a)
    Aset.add(a)
N = len(newA)
A = newA
memo = [[] for _ in range(MAX+1)]
for i,a in enumerate(A):
    memo[a].append(i)
dp = [1] * N
for i in range(N-1):
    ai = A[i]
    for m in range(2,(MAX//ai) + 1):
        if memo[ai * m] == []:
            continue
        index = bisect_left(memo[ai * m],i)
        if index == len(memo[ai * m]):
            continue
        nxi = memo[ai * m][index]
        dp[nxi] = max(dp[i] + 1,dp[nxi])
print(max(dp))
0