結果

問題 No.390 最長の数列
ユーザー takakintakakin
提出日時 2020-05-16 22:16:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,455 ms / 5,000 ms
コード長 310 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 86,952 KB
最終ジャッジ日時 2024-09-22 20:55:05
合計ジャッジ時間 6,942 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,540 KB
testcase_01 AC 42 ms
58,864 KB
testcase_02 AC 44 ms
59,056 KB
testcase_03 AC 38 ms
53,188 KB
testcase_04 AC 38 ms
52,740 KB
testcase_05 AC 77 ms
78,752 KB
testcase_06 AC 2,455 ms
85,752 KB
testcase_07 AC 39 ms
52,308 KB
testcase_08 AC 38 ms
52,828 KB
testcase_09 AC 130 ms
75,528 KB
testcase_10 AC 421 ms
86,568 KB
testcase_11 AC 465 ms
86,668 KB
testcase_12 AC 436 ms
86,952 KB
testcase_13 AC 753 ms
83,364 KB
testcase_14 AC 443 ms
85,868 KB
testcase_15 AC 39 ms
52,528 KB
testcase_16 AC 41 ms
59,000 KB
testcase_17 AC 78 ms
76,396 KB
testcase_18 AC 87 ms
76,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
import bisect
n=int(input())
X=sorted([int(i) for i in input().split()])
A=[1]*n
for i,x in enumerate(X):
  mul=2
  while mul*x<=X[-1]:
    ind=bisect.bisect_left(X,mul*x)
    if mul*x==X[ind]:
      A[ind]=max(A[ind],A[i]+1)
    mul+=1
print(max(A))

  
0