結果

問題 No.979 Longest Divisor Sequence
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-04-16 14:33:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 700 ms / 2,000 ms
コード長 425 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 130,140 KB
最終ジャッジ日時 2024-06-07 13:46:03
合計ジャッジ時間 2,652 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
73,088 KB
testcase_01 AC 53 ms
72,960 KB
testcase_02 AC 53 ms
73,344 KB
testcase_03 AC 55 ms
73,088 KB
testcase_04 AC 54 ms
72,960 KB
testcase_05 AC 53 ms
73,216 KB
testcase_06 AC 53 ms
72,704 KB
testcase_07 AC 55 ms
72,960 KB
testcase_08 AC 54 ms
72,960 KB
testcase_09 AC 53 ms
73,088 KB
testcase_10 AC 64 ms
78,848 KB
testcase_11 AC 66 ms
78,720 KB
testcase_12 AC 62 ms
78,208 KB
testcase_13 AC 109 ms
128,384 KB
testcase_14 AC 700 ms
130,140 KB
testcase_15 AC 220 ms
103,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect

n = int(input())
A = list(map(int,input().split()))
M = 3*10**5+5
count = [0]*M
for a in A:
    count[a] += 1

lis = [[] for i in range(M)]
for i in range(M)[::-1]:
    if count[i] == 0:
        continue
    for j in range(i*2,M,i):
        if count[j]:
            lis[j].append(i)

ans = [0]*M

for a in A:
    cand = 0
    for j in lis[a]:
        cand = max(cand,ans[j])
    ans[a] = cand+1
print(max(ans))
0