結果

問題 No.979 Longest Divisor Sequence
ユーザー kumatan400kumatan400
提出日時 2022-09-15 06:57:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 291 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,084 KB
実行使用メモリ 185,308 KB
最終ジャッジ日時 2024-12-15 21:46:06
合計ジャッジ時間 11,223 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 600 ms
169,748 KB
testcase_01 AC 570 ms
169,620 KB
testcase_02 AC 575 ms
169,972 KB
testcase_03 AC 605 ms
170,060 KB
testcase_04 WA -
testcase_05 AC 593 ms
169,892 KB
testcase_06 AC 601 ms
169,812 KB
testcase_07 AC 610 ms
169,936 KB
testcase_08 AC 592 ms
169,828 KB
testcase_09 AC 607 ms
169,800 KB
testcase_10 AC 589 ms
170,084 KB
testcase_11 AC 585 ms
169,976 KB
testcase_12 AC 619 ms
170,392 KB
testcase_13 WA -
testcase_14 AC 786 ms
185,308 KB
testcase_15 AC 647 ms
168,960 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(1)


X = [0] * (Z+1)

for a in A:
    for r in R[a]:
        X[a] = max(X[a], X[r] + 1)

print(max(X))
0