結果

問題 No.390 最長の数列
ユーザー hanorverhanorver
提出日時 2016-09-11 12:53:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,988 ms / 5,000 ms
コード長 174 bytes
コンパイル時間 110 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 24,456 KB
最終ジャッジ日時 2024-10-02 11:56:47
合計ジャッジ時間 6,930 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,368 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 159 ms
24,304 KB
testcase_06 AC 2,988 ms
24,104 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 59 ms
18,344 KB
testcase_09 AC 165 ms
18,492 KB
testcase_10 AC 350 ms
24,348 KB
testcase_11 AC 416 ms
24,456 KB
testcase_12 AC 382 ms
24,312 KB
testcase_13 AC 486 ms
23,344 KB
testcase_14 AC 688 ms
20,464 KB
testcase_15 AC 28 ms
10,752 KB
testcase_16 AC 59 ms
18,160 KB
testcase_17 AC 67 ms
18,776 KB
testcase_18 AC 75 ms
19,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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