結果

問題 No.979 Longest Divisor Sequence
ユーザー 👑 rin204rin204
提出日時 2022-03-24 17:05:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,751 ms / 2,000 ms
コード長 462 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 119,676 KB
最終ジャッジ日時 2024-10-13 01:07:55
合計ジャッジ時間 3,967 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,092 KB
testcase_01 AC 35 ms
53,760 KB
testcase_02 AC 36 ms
52,788 KB
testcase_03 AC 36 ms
52,932 KB
testcase_04 AC 35 ms
53,384 KB
testcase_05 AC 34 ms
52,412 KB
testcase_06 AC 35 ms
52,460 KB
testcase_07 AC 35 ms
53,076 KB
testcase_08 AC 35 ms
51,828 KB
testcase_09 AC 35 ms
52,620 KB
testcase_10 AC 69 ms
65,580 KB
testcase_11 AC 66 ms
66,272 KB
testcase_12 AC 65 ms
65,672 KB
testcase_13 AC 89 ms
119,676 KB
testcase_14 AC 1,751 ms
113,340 KB
testcase_15 AC 613 ms
92,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
ma = max(A)
dp = [0] * (ma + 1)

for a in A:
    if a == 1:
        ma = 1
    else:
        if dp[1] + 1 > dp[a]:
            ma = dp[1] + 1
        else:
            ma = dp[a]
    for i in range(2, int(a ** 0.5 + 1)):
        if a % i == 0:
            if dp[i] + 1 > ma:
                ma = dp[i] + 1
            elif dp[a // i] + 1 > ma:
                ma = dp[a // i] + 1
    dp[a] = ma
print(max(dp))
0