結果

問題 No.390 最長の数列
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-06-17 09:12:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,513 ms / 5,000 ms
コード長 318 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 231,212 KB
最終ジャッジ日時 2024-06-10 17:20:48
合計ジャッジ時間 4,783 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,024 KB
testcase_01 AC 34 ms
52,488 KB
testcase_02 AC 35 ms
53,308 KB
testcase_03 AC 34 ms
52,092 KB
testcase_04 AC 34 ms
53,136 KB
testcase_05 AC 143 ms
120,672 KB
testcase_06 AC 1,513 ms
231,212 KB
testcase_07 AC 36 ms
53,136 KB
testcase_08 AC 92 ms
120,212 KB
testcase_09 AC 99 ms
120,612 KB
testcase_10 AC 230 ms
135,964 KB
testcase_11 AC 261 ms
136,596 KB
testcase_12 AC 231 ms
136,008 KB
testcase_13 AC 156 ms
120,320 KB
testcase_14 AC 219 ms
112,144 KB
testcase_15 AC 37 ms
59,660 KB
testcase_16 AC 92 ms
119,876 KB
testcase_17 AC 98 ms
117,780 KB
testcase_18 AC 103 ms
116,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
a.sort()
s=set(a)
m=max(a)+1
g=[[] for _ in range(m+1)]
for x in a:
  xx=x+x
  while xx<=m:
    if xx in s:
      g[xx].append(x)
    xx+=x
mat=[0]*m
seen=[1]*(m+1)
for v in a[::-1]:
  for nv in g[v]:
    if seen[nv]<seen[v]+1:
      seen[nv]=seen[v]+1
print(max(seen))
0