結果

問題 No.979 Longest Divisor Sequence
ユーザー kumatan400kumatan400
提出日時 2021-12-24 06:37:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,534 ms / 2,000 ms
コード長 518 bytes
コンパイル時間 375 ms
コンパイル使用メモリ 81,816 KB
実行使用メモリ 146,136 KB
最終ジャッジ日時 2024-09-19 03:20:55
合計ジャッジ時間 4,385 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
59,008 KB
testcase_01 AC 45 ms
59,008 KB
testcase_02 AC 48 ms
59,520 KB
testcase_03 AC 43 ms
59,008 KB
testcase_04 AC 43 ms
59,392 KB
testcase_05 AC 49 ms
58,752 KB
testcase_06 AC 44 ms
59,264 KB
testcase_07 AC 44 ms
58,880 KB
testcase_08 AC 45 ms
58,752 KB
testcase_09 AC 43 ms
59,776 KB
testcase_10 AC 86 ms
76,160 KB
testcase_11 AC 87 ms
74,112 KB
testcase_12 AC 84 ms
75,648 KB
testcase_13 AC 148 ms
123,904 KB
testcase_14 AC 1,534 ms
146,136 KB
testcase_15 AC 673 ms
99,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def d(K):
    if K == 1:
        return [0]

    res = []
    i = 1
    while i * i <= K:
        if K % i == 0:
            if i != K:
                res.append(i)
            j = K // i
            if i != j and j != K:
                res.append(j)
        i += 1
    return res


Z = 3 * 10**5
L = [0] * (Z+1)


N = int(input())
A = list(map(int, input().split()))

R = {}
for a in A:
    if not a in R:
        R[a] = d(a)



for a in A:
    M = max(L[r] for r in R[a])
    L[a] = M + 1


ans = max(L)
print(ans)
0