結果

問題 No.979 Longest Divisor Sequence
ユーザー chineristACchineristAC
提出日時 2020-06-18 02:57:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,091 ms / 2,000 ms
コード長 422 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 218,524 KB
最終ジャッジ日時 2024-07-03 12:38:26
合計ジャッジ時間 15,167 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 762 ms
168,284 KB
testcase_01 AC 756 ms
168,288 KB
testcase_02 AC 764 ms
168,596 KB
testcase_03 AC 762 ms
168,440 KB
testcase_04 AC 782 ms
168,212 KB
testcase_05 AC 701 ms
168,064 KB
testcase_06 AC 772 ms
168,324 KB
testcase_07 AC 789 ms
168,600 KB
testcase_08 AC 779 ms
168,192 KB
testcase_09 AC 759 ms
168,412 KB
testcase_10 AC 782 ms
171,264 KB
testcase_11 AC 784 ms
171,044 KB
testcase_12 AC 826 ms
171,572 KB
testcase_13 AC 834 ms
213,968 KB
testcase_14 AC 1,091 ms
218,524 KB
testcase_15 AC 949 ms
184,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

divisors=[[] for i in range(3*10**5+1)]
for i in range(1,3*10**5+1):
    for j in range(1,3*10**5//i+1):
        divisors[i*j].append(i)

import sys

input=sys.stdin.buffer.readline

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

data=[0]*(max(A)+1)
for i in range(N):
    test=1
    for D in divisors[A[i]]:
        if D!=A[i]:
            test=max(test,data[D]+1)
    data[A[i]]=max(data[A[i]],test)

print(max(data))
0