結果

問題 No.390 最長の数列
ユーザー pluto77pluto77
提出日時 2016-10-19 09:14:11
言語 Python2
(2.7.18)
結果
AC  
実行時間 2,503 ms / 5,000 ms
コード長 252 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 18,600 KB
最終ジャッジ日時 2024-10-02 12:02:24
合計ジャッジ時間 6,240 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,144 KB
testcase_01 AC 11 ms
6,144 KB
testcase_02 AC 11 ms
6,272 KB
testcase_03 AC 11 ms
6,016 KB
testcase_04 AC 11 ms
6,144 KB
testcase_05 AC 198 ms
18,600 KB
testcase_06 AC 2,503 ms
18,080 KB
testcase_07 AC 11 ms
6,144 KB
testcase_08 AC 65 ms
13,952 KB
testcase_09 AC 140 ms
13,952 KB
testcase_10 AC 370 ms
18,468 KB
testcase_11 AC 396 ms
18,468 KB
testcase_12 AC 386 ms
18,468 KB
testcase_13 AC 396 ms
17,404 KB
testcase_14 AC 639 ms
14,904 KB
testcase_15 AC 12 ms
6,528 KB
testcase_16 AC 64 ms
14,080 KB
testcase_17 AC 75 ms
14,336 KB
testcase_18 AC 81 ms
14,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki_390

n=int(raw_input())
s=map(int,raw_input().split())
s.sort()
r=[0 for i in xrange(s[-1]+1)]
for i in s:
 r[i]=1
res=1
for i in s:
 for j in xrange(i*2,s[-1]+1,i):
  if r[j]!=0:
   if r[i]>r[j]-1:
    r[j]=r[i]+1
   res=max(res,r[j])
print res
0