結果

問題 No.979 Longest Divisor Sequence
ユーザー convexineqconvexineq
提出日時 2021-05-05 04:02:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 220 ms / 2,000 ms
コード長 206 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 139,016 KB
最終ジャッジ日時 2024-07-26 12:56:26
合計ジャッジ時間 2,321 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
64,512 KB
testcase_01 AC 51 ms
63,872 KB
testcase_02 AC 50 ms
63,488 KB
testcase_03 AC 50 ms
64,000 KB
testcase_04 AC 49 ms
64,000 KB
testcase_05 AC 55 ms
63,744 KB
testcase_06 AC 51 ms
63,992 KB
testcase_07 AC 50 ms
64,000 KB
testcase_08 AC 50 ms
64,000 KB
testcase_09 AC 49 ms
63,872 KB
testcase_10 AC 58 ms
68,480 KB
testcase_11 AC 57 ms
67,968 KB
testcase_12 AC 58 ms
68,224 KB
testcase_13 AC 128 ms
133,376 KB
testcase_14 AC 220 ms
139,016 KB
testcase_15 AC 118 ms
97,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,*a = map(int,open(0).read().split())
M = 300005
r,c = [0]*M, [0]*M
for v in a:
    if c[v] <= r[v]:
        for w in range(v*2,M,v):
            r[w] = max(r[w],r[v]+1)
        c[v] = r[v]+1
print(max(c))
0