結果

問題 No.390 最長の数列
ユーザー titiatitia
提出日時 2023-02-02 02:16:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 3,697 ms / 5,000 ms
コード長 271 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,608 KB
最終ジャッジ日時 2024-07-01 19:07:16
合計ジャッジ時間 14,170 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 438 ms
26,288 KB
testcase_01 AC 293 ms
26,352 KB
testcase_02 AC 416 ms
26,368 KB
testcase_03 AC 325 ms
26,368 KB
testcase_04 AC 416 ms
26,368 KB
testcase_05 AC 275 ms
32,052 KB
testcase_06 AC 3,697 ms
32,040 KB
testcase_07 AC 292 ms
26,368 KB
testcase_08 AC 182 ms
26,368 KB
testcase_09 AC 294 ms
26,368 KB
testcase_10 AC 505 ms
32,048 KB
testcase_11 AC 539 ms
32,048 KB
testcase_12 AC 506 ms
32,052 KB
testcase_13 AC 672 ms
31,632 KB
testcase_14 AC 2,624 ms
32,608 KB
testcase_15 AC 190 ms
26,368 KB
testcase_16 AC 194 ms
26,368 KB
testcase_17 AC 196 ms
26,880 KB
testcase_18 AC 202 ms
27,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

X=[0]*(10**6+1)

for a in A:
    X[a]=1

DP=[1]*(10**6+1)

for i in range(1,10**6+1):
    if X[i]==1:
        for j in range(i+i,10**6+1,i):
            if X[j]==1:
                DP[j]=max(DP[i]+1,DP[j])

print(max(DP))
0