結果

問題 No.979 Longest Divisor Sequence
ユーザー rlangevinrlangevin
提出日時 2023-11-10 08:55:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,192 ms / 2,000 ms
コード長 390 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 226,592 KB
最終ジャッジ日時 2024-09-26 00:43:13
合計ジャッジ時間 14,393 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 733 ms
167,808 KB
testcase_01 AC 725 ms
167,968 KB
testcase_02 AC 750 ms
167,908 KB
testcase_03 AC 712 ms
167,808 KB
testcase_04 AC 700 ms
167,680 KB
testcase_05 AC 754 ms
167,936 KB
testcase_06 AC 740 ms
167,808 KB
testcase_07 AC 756 ms
168,056 KB
testcase_08 AC 741 ms
168,320 KB
testcase_09 AC 706 ms
167,808 KB
testcase_10 AC 777 ms
169,344 KB
testcase_11 AC 751 ms
169,472 KB
testcase_12 AC 793 ms
169,452 KB
testcase_13 AC 870 ms
171,312 KB
testcase_14 AC 1,192 ms
226,592 KB
testcase_15 AC 867 ms
189,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

N = int(input())
A = list(map(int, input().split()))
M = 3 * 10 **5 + 5
D = [[] for i in range(M)]
for i in range(1, M):
    for j in range(2 * i ,M, i):
        D[j].append(i)

dic = defaultdict(int)
for a in A:
    val = 0
    for d in D[a]:
        val = max(val, dic[d])
    dic[a] = val + 1

ans = 0
for k, v in dic.items():
    ans = max(ans, v)

print(ans)
0