結果

問題 No.979 Longest Divisor Sequence
ユーザー NoneNone
提出日時 2021-02-27 20:50:52
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 517 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 120,820 KB
最終ジャッジ日時 2024-10-02 18:04:03
合計ジャッジ時間 4,616 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,292 KB
testcase_01 AC 37 ms
52,252 KB
testcase_02 AC 35 ms
51,984 KB
testcase_03 AC 35 ms
52,228 KB
testcase_04 AC 35 ms
52,532 KB
testcase_05 AC 34 ms
52,068 KB
testcase_06 AC 34 ms
52,016 KB
testcase_07 AC 35 ms
52,272 KB
testcase_08 AC 35 ms
53,204 KB
testcase_09 AC 35 ms
52,212 KB
testcase_10 AC 86 ms
75,848 KB
testcase_11 AC 74 ms
73,548 KB
testcase_12 AC 82 ms
76,208 KB
testcase_13 AC 157 ms
120,820 KB
testcase_14 TLE -
testcase_15 AC 700 ms
91,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def divisors(n):
    i = 1
    table = set()
    while i * i <= n:
        if not n % i:
            table.add(i)
            table.add(n//i)
        i += 1
    table = sorted(list(table)) # 速度が欲しい時は消す
    return table
import sys
input = sys.stdin.readline
N=int(input())
A=list(map(int, input().split()))
dp=[-1]*(max(A) + 1)
dp[1]=0
for a in A:
    tmp=0
    for n in divisors(a):
        if n==a: continue
        if dp[n]==-1: continue
        tmp=max(tmp,dp[n])
    dp[a]=tmp+1
print(max(dp))
0