結果

問題 No.390 最長の数列
ユーザー raven7959raven7959
提出日時 2021-09-01 09:18:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 199 ms / 5,000 ms
コード長 227 bytes
コンパイル時間 606 ms
コンパイル使用メモリ 81,864 KB
実行使用メモリ 112,164 KB
最終ジャッジ日時 2024-11-27 07:54:00
合計ジャッジ時間 2,673 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
65,936 KB
testcase_01 AC 49 ms
66,084 KB
testcase_02 AC 51 ms
66,276 KB
testcase_03 AC 49 ms
65,804 KB
testcase_04 AC 51 ms
66,168 KB
testcase_05 AC 81 ms
106,008 KB
testcase_06 AC 199 ms
112,164 KB
testcase_07 AC 50 ms
66,368 KB
testcase_08 AC 48 ms
66,124 KB
testcase_09 AC 49 ms
66,944 KB
testcase_10 AC 107 ms
112,148 KB
testcase_11 AC 110 ms
112,100 KB
testcase_12 AC 112 ms
111,952 KB
testcase_13 AC 96 ms
102,304 KB
testcase_14 AC 189 ms
111,724 KB
testcase_15 AC 45 ms
66,012 KB
testcase_16 AC 48 ms
66,308 KB
testcase_17 AC 55 ms
71,752 KB
testcase_18 AC 56 ms
72,572 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