結果

問題 No.979 Longest Divisor Sequence
ユーザー SalmonizeSalmonize
提出日時 2020-06-04 14:49:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 311 bytes
コンパイル時間 105 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 86,136 KB
最終ジャッジ日時 2024-05-06 17:54:33
合計ジャッジ時間 29,365 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,572 ms
74,240 KB
testcase_01 AC 1,637 ms
74,240 KB
testcase_02 AC 1,616 ms
74,112 KB
testcase_03 AC 1,546 ms
74,080 KB
testcase_04 AC 1,599 ms
74,240 KB
testcase_05 AC 1,634 ms
74,112 KB
testcase_06 AC 1,654 ms
74,240 KB
testcase_07 AC 1,640 ms
74,112 KB
testcase_08 AC 1,626 ms
73,984 KB
testcase_09 AC 1,582 ms
74,240 KB
testcase_10 AC 1,609 ms
74,368 KB
testcase_11 AC 1,623 ms
74,496 KB
testcase_12 AC 1,628 ms
74,496 KB
testcase_13 AC 1,666 ms
76,504 KB
testcase_14 TLE -
testcase_15 AC 1,796 ms
78,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int,input().split()))
m = 3 * 10 ** 5 + 5
g = [list() for _ in range(m)]
for i in range(1, m):
    for j in range(i*2, m, i):
        g[j].append(i)
c = [-1]*m
c[1] = 0
for x in a:
    if x == 1:
        c[x] = 1
    else:
        c[x] = max([c[y] for y in g[x]]) + 1
print(max(c))
0