結果

問題 No.390 最長の数列
ユーザー tookunn_1213tookunn_1213
提出日時 2016-07-09 00:17:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 366 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 39,848 KB
最終ジャッジ日時 2024-04-21 08:55:56
合計ジャッジ時間 7,111 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

N = int(input())
x = sorted([int(i) for i in input().split()])
dp = [0 for i in range(max(x) + 1)]
a = [False for i in range(max(x) + 1)]
for i in range(N):
	a[x[i]] = True
for i in range(N):
	dp[x[i]] = max(dp[x[i]],1)
	for j in range(2,max(x) + 1):
		if x[i] * j >= max(x):
			break
		if a[x[i] * j]:
			dp[x[i] * j] = max(dp[x[i] * j],dp[x[i]] + 1)
print(max(dp))
0