結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
54,132 KB
testcase_01 AC 34 ms
53,272 KB
testcase_02 AC 34 ms
53,604 KB
testcase_03 AC 34 ms
52,412 KB
testcase_04 AC 34 ms
52,192 KB
testcase_05 AC 38 ms
52,472 KB
testcase_06 AC 33 ms
53,020 KB
testcase_07 AC 34 ms
53,212 KB
testcase_08 AC 36 ms
52,628 KB
testcase_09 AC 35 ms
52,616 KB
testcase_10 AC 65 ms
64,616 KB
testcase_11 AC 64 ms
65,444 KB
testcase_12 AC 62 ms
65,088 KB
testcase_13 AC 86 ms
119,772 KB
testcase_14 AC 1,696 ms
113,084 KB
testcase_15 AC 604 ms
92,592 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:
        dp[a] = 1
    else:
        dp[a] = max(dp[a], dp[1] + 1)
    for i in range(2, int(a ** 0.5 + 1)):
        if a % i == 0:
            dp[a] = max(dp[a], dp[i] + 1)
            dp[a] = max(dp[a], dp[a // i] + 1)
print(max(dp))
0