結果

問題 No.390 最長の数列
ユーザー TawaraTawara
提出日時 2016-07-26 00:02:03
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 270 bytes
コンパイル時間 598 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 22,684 KB
最終ジャッジ日時 2024-11-06 16:52:27
合計ジャッジ時間 8,562 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 221 ms
13,884 KB
testcase_01 AC 193 ms
13,980 KB
testcase_02 AC 195 ms
14,056 KB
testcase_03 AC 221 ms
14,076 KB
testcase_04 AC 200 ms
14,080 KB
testcase_05 AC 210 ms
22,560 KB
testcase_06 AC 1,431 ms
22,684 KB
testcase_07 WA -
testcase_08 AC 125 ms
13,872 KB
testcase_09 AC 122 ms
14,024 KB
testcase_10 AC 350 ms
22,556 KB
testcase_11 AC 379 ms
22,556 KB
testcase_12 AC 358 ms
22,680 KB
testcase_13 AC 441 ms
20,720 KB
testcase_14 AC 1,416 ms
22,684 KB
testcase_15 AC 123 ms
14,108 KB
testcase_16 AC 122 ms
13,964 KB
testcase_17 AC 132 ms
14,260 KB
testcase_18 AC 136 ms
14,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

dp = [0]*(10**6+1)
N = int(raw_input())
for i in map(int,raw_input().split()):
	dp[i] = 1
for i in xrange(2,10**6):
	if dp[i] == 0:
		continue
	for j in xrange(i*2,10**6+1,i):
		if dp[j] == 0:
			continue
		if dp[i] + 1 > dp[j]:
			dp[j] = dp[i] + 1
print max(dp)+ dp[1]
0