結果

問題 No.390 最長の数列
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-29 23:15:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 249 ms / 5,000 ms
コード長 235 bytes
コンパイル時間 412 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 105,860 KB
最終ジャッジ日時 2024-09-29 23:15:23
合計ジャッジ時間 3,820 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,272 KB
testcase_01 AC 43 ms
59,440 KB
testcase_02 AC 41 ms
58,376 KB
testcase_03 AC 37 ms
52,688 KB
testcase_04 AC 37 ms
52,216 KB
testcase_05 AC 178 ms
105,364 KB
testcase_06 AC 249 ms
105,380 KB
testcase_07 AC 37 ms
52,496 KB
testcase_08 AC 156 ms
91,600 KB
testcase_09 AC 143 ms
91,260 KB
testcase_10 AC 189 ms
105,108 KB
testcase_11 AC 187 ms
105,860 KB
testcase_12 AC 196 ms
105,496 KB
testcase_13 AC 222 ms
102,168 KB
testcase_14 AC 89 ms
91,172 KB
testcase_15 AC 48 ms
63,252 KB
testcase_16 AC 155 ms
91,236 KB
testcase_17 AC 152 ms
91,556 KB
testcase_18 AC 152 ms
91,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
L=max(a)
o=[0]*(L+1)
for v in a:
  o[v]=1
q=[0]*(L+1)
for i in range(1,L+1):
  q[i]+=o[i]
  for j in range(i+i,L+1,i):
    q[j]=max(q[j],q[i])
print(max(q[i] for i in range(L+1) if o[i]))
0