結果

問題 No.390 最長の数列
ユーザー raven7959raven7959
提出日時 2021-09-01 09:18:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 213 ms / 5,000 ms
コード長 227 bytes
コンパイル時間 687 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 111,988 KB
最終ジャッジ日時 2024-05-05 11:21:54
合計ジャッジ時間 2,722 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
66,048 KB
testcase_01 AC 55 ms
65,792 KB
testcase_02 AC 58 ms
65,920 KB
testcase_03 AC 55 ms
66,176 KB
testcase_04 AC 59 ms
65,664 KB
testcase_05 AC 89 ms
105,728 KB
testcase_06 AC 213 ms
111,968 KB
testcase_07 AC 55 ms
66,048 KB
testcase_08 AC 51 ms
65,664 KB
testcase_09 AC 53 ms
65,920 KB
testcase_10 AC 115 ms
111,872 KB
testcase_11 AC 118 ms
111,872 KB
testcase_12 AC 124 ms
111,988 KB
testcase_13 AC 107 ms
102,316 KB
testcase_14 AC 208 ms
111,616 KB
testcase_15 AC 52 ms
65,920 KB
testcase_16 AC 51 ms
66,176 KB
testcase_17 AC 59 ms
71,040 KB
testcase_18 AC 61 ms
72,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
X=set(list(map(int,input().split())))
DP=[0]*(10**6+1)
for x in X:
  DP[x]=1
for i in range(10**6+1):
  if DP[i]:
    for j in range(2*i,10**6+1,i):
      if DP[j]:
        DP[j]=max(DP[j],DP[i]+1)
print(max(DP))
0