結果

問題 No.390 最長の数列
ユーザー hanorverhanorver
提出日時 2016-09-11 12:46:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 175 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 47,608 KB
最終ジャッジ日時 2024-11-17 03:23:28
合計ジャッジ時間 38,452 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
15,744 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 26 ms
15,872 KB
testcase_04 WA -
testcase_05 AC 162 ms
32,872 KB
testcase_06 TLE -
testcase_07 AC 27 ms
10,624 KB
testcase_08 AC 70 ms
26,240 KB
testcase_09 AC 259 ms
26,240 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 27 ms
10,752 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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