結果

問題 No.390 最長の数列
ユーザー hanorverhanorver
提出日時 2016-09-11 13:05:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 3,034 ms / 5,000 ms
コード長 162 bytes
コンパイル時間 120 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 24,476 KB
最終ジャッジ日時 2024-10-02 11:56:55
合計ジャッジ時間 7,431 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,496 KB
testcase_01 AC 32 ms
10,496 KB
testcase_02 AC 31 ms
10,496 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,496 KB
testcase_05 AC 179 ms
24,476 KB
testcase_06 AC 3,034 ms
23,872 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 60 ms
18,556 KB
testcase_09 AC 167 ms
18,356 KB
testcase_10 AC 409 ms
24,236 KB
testcase_11 AC 433 ms
24,308 KB
testcase_12 AC 422 ms
24,308 KB
testcase_13 AC 523 ms
23,116 KB
testcase_14 AC 705 ms
20,592 KB
testcase_15 AC 30 ms
10,752 KB
testcase_16 AC 60 ms
18,168 KB
testcase_17 AC 70 ms
18,984 KB
testcase_18 AC 79 ms
18,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

input()
n=sorted(map(int,input().split()))
m=n[-1]+1
d=[0]*m
for i in n:d[i]=1
for i in n:
 for j in range(i*2,m,i):
  if d[j]:d[j]=max(d[j],d[i]+1)
print(max(d))
0