結果

問題 No.979 Longest Divisor Sequence
ユーザー vwxyzvwxyz
提出日時 2024-04-21 15:49:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,901 ms / 2,000 ms
コード長 521 bytes
コンパイル時間 573 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 121,472 KB
最終ジャッジ日時 2024-10-13 14:44:35
合計ジャッジ時間 4,644 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 38 ms
51,456 KB
testcase_02 AC 39 ms
51,584 KB
testcase_03 AC 43 ms
51,840 KB
testcase_04 AC 38 ms
51,456 KB
testcase_05 AC 38 ms
51,968 KB
testcase_06 AC 38 ms
51,712 KB
testcase_07 AC 38 ms
51,968 KB
testcase_08 AC 41 ms
51,840 KB
testcase_09 AC 39 ms
51,968 KB
testcase_10 AC 93 ms
76,544 KB
testcase_11 AC 87 ms
76,160 KB
testcase_12 AC 89 ms
75,904 KB
testcase_13 AC 118 ms
121,472 KB
testcase_14 AC 1,901 ms
113,228 KB
testcase_15 AC 675 ms
91,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Divisors(N):
    divisors=[]
    for i in range(1,N+1):
        if i**2>=N:
            break
        elif N%i==0:
            divisors.append(i)
    if i**2==N:
        divisors+=[i]+[N//i for i in divisors[::-1]]
    else:
        divisors+=[N//i for i in divisors[::-1]]
    return divisors

N=int(input())
A=list(map(int,input().split()))
max_A=max(A)
dp=[-1]*(max_A+1)
dp[0]=0
for a in A:
    for d in Divisors(a)+[0]:
        if a==d:
            continue
        dp[a]=max(dp[a],dp[d]+1)
ans=max(dp)
print(ans)
0