結果

問題 No.979 Longest Divisor Sequence
ユーザー chineristACchineristAC
提出日時 2020-06-18 02:50:30
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 535 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 125,184 KB
最終ジャッジ日時 2024-07-03 12:38:31
合計ジャッジ時間 4,610 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,204 KB
testcase_01 AC 39 ms
52,316 KB
testcase_02 AC 38 ms
52,260 KB
testcase_03 AC 38 ms
53,256 KB
testcase_04 AC 38 ms
53,348 KB
testcase_05 AC 38 ms
52,776 KB
testcase_06 AC 37 ms
52,556 KB
testcase_07 AC 37 ms
52,664 KB
testcase_08 AC 38 ms
52,772 KB
testcase_09 AC 37 ms
53,288 KB
testcase_10 AC 88 ms
74,420 KB
testcase_11 AC 79 ms
71,572 KB
testcase_12 AC 84 ms
74,548 KB
testcase_13 AC 138 ms
121,600 KB
testcase_14 TLE -
testcase_15 AC 750 ms
91,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def divisors(M):#Mの約数列 O(n^(0.5+e))
    import math
    d=[]
    i=1
    while math.sqrt(M)>=i:
        if M%i==0:
            d.append(i)
            if i**2!=M:
                d.append(M//i)
        i=i+1
    d.sort()
    return d

import sys

input=sys.stdin.buffer.readline

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

data=[0]*(max(A)+1)
for i in range(N):
    test=1
    d=divisors(A[i])
    for D in d:
        if D!=A[i]:
            test=max(test,data[D]+1)
    data[A[i]]=max(data[A[i]],test)

print(max(data))
0