結果

問題 No.979 Longest Divisor Sequence
ユーザー convexineqconvexineq
提出日時 2021-05-05 04:35:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 229 ms / 2,000 ms
コード長 189 bytes
コンパイル時間 691 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 139,184 KB
最終ジャッジ日時 2024-07-26 18:48:27
合計ジャッジ時間 2,741 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
65,960 KB
testcase_01 AC 52 ms
67,144 KB
testcase_02 AC 52 ms
67,608 KB
testcase_03 AC 50 ms
66,384 KB
testcase_04 AC 53 ms
70,900 KB
testcase_05 AC 54 ms
68,116 KB
testcase_06 AC 52 ms
69,744 KB
testcase_07 AC 51 ms
68,556 KB
testcase_08 AC 53 ms
72,796 KB
testcase_09 AC 50 ms
69,076 KB
testcase_10 AC 58 ms
72,208 KB
testcase_11 AC 58 ms
73,488 KB
testcase_12 AC 57 ms
71,984 KB
testcase_13 AC 124 ms
133,672 KB
testcase_14 AC 229 ms
139,184 KB
testcase_15 AC 120 ms
97,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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