結果

問題 No.390 最長の数列
ユーザー ぴろずぴろず
提出日時 2015-04-12 13:34:34
言語 Ruby
(3.3.0)
結果
AC  
実行時間 4,477 ms / 5,000 ms
コード長 293 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 29,568 KB
最終ジャッジ日時 2024-10-02 10:22:03
合計ジャッジ時間 20,110 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 861 ms
20,224 KB
testcase_01 AC 490 ms
19,968 KB
testcase_02 AC 765 ms
20,224 KB
testcase_03 AC 584 ms
19,968 KB
testcase_04 AC 786 ms
19,968 KB
testcase_05 AC 450 ms
29,568 KB
testcase_06 AC 3,547 ms
29,184 KB
testcase_07 AC 506 ms
20,352 KB
testcase_08 AC 226 ms
19,968 KB
testcase_09 AC 503 ms
20,096 KB
testcase_10 AC 814 ms
29,312 KB
testcase_11 AC 872 ms
29,312 KB
testcase_12 AC 833 ms
29,312 KB
testcase_13 AC 1,269 ms
25,856 KB
testcase_14 AC 4,477 ms
29,184 KB
testcase_15 AC 230 ms
19,840 KB
testcase_16 AC 229 ms
19,968 KB
testcase_17 AC 261 ms
20,480 KB
testcase_18 AC 275 ms
20,736 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:2: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

X_MAX = 1000000
n = gets.to_i
x = gets.split.map(&:to_i)
dp = Array.new(X_MAX+1){0}
x.each{|i| dp[i] = 1}
ans = 0
(1..X_MAX).each{|i|
	if (dp[i] <= 0) then
		next
	end
	(i*2..X_MAX).step(i).each{|j|
		if (dp[j] >= 1) then
			dp[j] = [dp[j],dp[i]+1].max
		end
	}
	ans = [ans,dp[i]].max
}
p ans
0