結果

問題 No.390 最長の数列
ユーザー rlangevinrlangevin
提出日時 2023-02-04 01:59:59
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 466 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 82,848 KB
実行使用メモリ 521,580 KB
最終ジャッジ日時 2024-07-02 23:56:55
合計ジャッジ時間 12,977 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4,456 ms
457,312 KB
testcase_01 AC 4,601 ms
457,952 KB
testcase_02 AC 4,496 ms
458,208 KB
testcase_03 AC 4,492 ms
457,312 KB
testcase_04 AC 4,413 ms
457,312 KB
testcase_05 MLE -
testcase_06 AC 4,626 ms
470,784 KB
testcase_07 AC 4,204 ms
457,824 KB
testcase_08 AC 4,457 ms
457,888 KB
testcase_09 AC 4,260 ms
457,824 KB
testcase_10 AC 4,505 ms
491,296 KB
testcase_11 AC 4,451 ms
495,200 KB
testcase_12 AC 4,549 ms
495,128 KB
testcase_13 AC 4,201 ms
467,096 KB
testcase_14 AC 4,415 ms
470,612 KB
testcase_15 AC 4,243 ms
457,960 KB
testcase_16 AC 4,227 ms
458,060 KB
testcase_17 AC 4,133 ms
461,432 KB
testcase_18 AC 4,478 ms
463,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

def enum_div(M):
    L = [[1] for i in range(M + 1)]
    for i in range(2, M + 1):
        for j in range(i, M + 1, i):
            L[j].append(i)
    return L


N = int(input())
X = list(map(int, input().split()))
X.sort()
L = enum_div(10 ** 6 + 5)
D = defaultdict(int)
for i in range(N):
    val = 0
    for v in L[X[i]]:
        val = max(val, D[v])
    D[X[i]] = val + 1

ans = 0
for k, v in D.items():
    ans = max(ans, v)
print(ans)
0