結果

問題 No.979 Longest Divisor Sequence
ユーザー roarisroaris
提出日時 2020-07-25 23:39:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,851 ms / 2,000 ms
コード長 421 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 119,680 KB
最終ジャッジ日時 2024-06-27 18:20:43
合計ジャッジ時間 4,813 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
59,008 KB
testcase_01 AC 43 ms
58,752 KB
testcase_02 AC 43 ms
59,136 KB
testcase_03 AC 43 ms
58,752 KB
testcase_04 AC 43 ms
58,752 KB
testcase_05 AC 43 ms
59,264 KB
testcase_06 AC 47 ms
58,752 KB
testcase_07 AC 43 ms
58,624 KB
testcase_08 AC 42 ms
58,752 KB
testcase_09 AC 43 ms
58,752 KB
testcase_10 AC 70 ms
64,256 KB
testcase_11 AC 76 ms
63,872 KB
testcase_12 AC 73 ms
63,744 KB
testcase_13 AC 101 ms
119,680 KB
testcase_14 AC 1,851 ms
112,344 KB
testcase_15 AC 648 ms
85,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
A = list(map(int, input().split()))
dp = [0]*(3*10**5+10)

for Ai in A:
    dp[Ai] = 1
    
    if Ai==1:
        continue
    
    i = 1
    
    while i*i<=Ai:
        if Ai%i==0:
            if i==1:
                dp[Ai] = max(dp[Ai], dp[i]+1)
            else:
                dp[Ai] = max(dp[Ai], dp[i]+1, dp[Ai//i]+1)
        
        i += 1

print(max(dp))
0