結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 706 ms
170,076 KB
testcase_01 AC 632 ms
169,900 KB
testcase_02 AC 719 ms
170,004 KB
testcase_03 AC 701 ms
170,220 KB
testcase_04 WA -
testcase_05 AC 708 ms
169,856 KB
testcase_06 AC 635 ms
170,068 KB
testcase_07 AC 790 ms
169,984 KB
testcase_08 AC 820 ms
169,984 KB
testcase_09 AC 679 ms
170,072 KB
testcase_10 AC 737 ms
170,112 KB
testcase_11 AC 727 ms
170,368 KB
testcase_12 AC 661 ms
170,272 KB
testcase_13 WA -
testcase_14 AC 871 ms
185,312 KB
testcase_15 AC 797 ms
169,032 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