結果

問題 No.979 Longest Divisor Sequence
ユーザー titiatitia
提出日時 2020-01-31 22:09:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,707 ms / 2,000 ms
コード長 391 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 121,764 KB
最終ジャッジ日時 2024-09-17 08:25:34
合計ジャッジ時間 3,707 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,572 KB
testcase_01 AC 37 ms
53,004 KB
testcase_02 AC 36 ms
53,968 KB
testcase_03 AC 32 ms
53,204 KB
testcase_04 AC 33 ms
52,796 KB
testcase_05 AC 33 ms
53,064 KB
testcase_06 AC 32 ms
52,136 KB
testcase_07 AC 31 ms
53,412 KB
testcase_08 AC 33 ms
53,496 KB
testcase_09 AC 31 ms
53,468 KB
testcase_10 AC 72 ms
72,008 KB
testcase_11 AC 63 ms
69,608 KB
testcase_12 AC 70 ms
70,560 KB
testcase_13 AC 98 ms
121,764 KB
testcase_14 AC 1,707 ms
113,316 KB
testcase_15 AC 626 ms
92,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
import math 

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

DP=[0]*(max(A)+1)

for x in (A):
    xr=math.ceil(math.sqrt(x))

    LIST=[]
    for i in range(1,xr+1):
        if x%i==0:
            LIST.append(i)
            LIST.append(x//i)

    MAX=0
    for i in LIST:
        if i!=x:
            MAX=max(MAX,DP[i])
    DP[x]=MAX+1

print(max(DP))
0