結果

問題 No.979 Longest Divisor Sequence
ユーザー kumatan400kumatan400
提出日時 2021-12-24 06:48:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,113 ms / 2,000 ms
コード長 296 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 185,704 KB
最終ジャッジ日時 2024-09-19 03:38:10
合計ジャッジ時間 13,502 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 689 ms
169,984 KB
testcase_01 AC 721 ms
170,112 KB
testcase_02 AC 721 ms
169,856 KB
testcase_03 AC 780 ms
169,600 KB
testcase_04 AC 672 ms
170,112 KB
testcase_05 AC 709 ms
169,856 KB
testcase_06 AC 663 ms
169,728 KB
testcase_07 AC 736 ms
170,112 KB
testcase_08 AC 755 ms
169,984 KB
testcase_09 AC 736 ms
169,984 KB
testcase_10 AC 696 ms
170,496 KB
testcase_11 AC 709 ms
170,368 KB
testcase_12 AC 758 ms
170,240 KB
testcase_13 AC 794 ms
172,928 KB
testcase_14 AC 1,113 ms
185,704 KB
testcase_15 AC 835 ms
171,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

Z = 3 * 10**5
R = [[] for _ in range(Z+1)]
for i in range(1, Z+1):
    for j in range(i+i, Z+1, i):
        R[j].append(i)
R[1].append(0)


L = [0] * (Z+1)
for a in A:
    M = max(L[r] for r in R[a])
    L[a] = M + 1


ans = max(L)
print(ans)
0