結果

問題 No.979 Longest Divisor Sequence
ユーザー kumatan400kumatan400
提出日時 2022-12-10 02:05:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,194 ms / 2,000 ms
コード長 294 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 220,644 KB
最終ジャッジ日時 2024-10-14 23:27:21
合計ジャッジ時間 16,639 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 863 ms
174,464 KB
testcase_01 AC 821 ms
174,592 KB
testcase_02 AC 805 ms
174,208 KB
testcase_03 AC 853 ms
174,464 KB
testcase_04 AC 868 ms
174,524 KB
testcase_05 AC 855 ms
174,464 KB
testcase_06 AC 850 ms
174,584 KB
testcase_07 AC 842 ms
174,524 KB
testcase_08 AC 825 ms
174,720 KB
testcase_09 AC 834 ms
174,736 KB
testcase_10 AC 870 ms
174,720 KB
testcase_11 AC 851 ms
174,720 KB
testcase_12 AC 883 ms
174,796 KB
testcase_13 AC 940 ms
209,640 KB
testcase_14 AC 1,194 ms
220,644 KB
testcase_15 AC 918 ms
189,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Z = 3 * 10**5

P = [[1] for _ in range(Z+1)]
P[1] = [0]

for i in range(2, Z+1):
    for j in range(i+i, Z+1, i):
        P[j].append(i)

X = [0] * (Z+1)

N = int(input())
A = list(map(int, input().split()))
for a in A:
    t = max(X[i] for i in P[a])
    X[a] = max(X[a], t + 1)

print(max(X))
0