結果

問題 No.390 最長の数列
ユーザー simansiman
提出日時 2020-10-28 13:17:42
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 243 bytes
コンパイル時間 495 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 28,032 KB
最終ジャッジ日時 2024-07-21 22:13:10
合計ジャッジ時間 6,231 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
12,160 KB
testcase_01 AC 90 ms
12,032 KB
testcase_02 AC 93 ms
12,160 KB
testcase_03 AC 93 ms
12,032 KB
testcase_04 AC 92 ms
12,160 KB
testcase_05 AC 174 ms
28,032 KB
testcase_06 AC 1,484 ms
27,904 KB
testcase_07 AC 91 ms
12,288 KB
testcase_08 AC 98 ms
19,840 KB
testcase_09 AC 235 ms
19,968 KB
testcase_10 AC 362 ms
27,904 KB
testcase_11 AC 391 ms
27,776 KB
testcase_12 AC 371 ms
27,776 KB
testcase_13 AC 544 ms
25,984 KB
testcase_14 AC 278 ms
20,096 KB
testcase_15 AC 88 ms
12,032 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
X = gets.split.map(&:to_i).sort
M = X.last

dp = Array.new(M + 1, 0)
dp[X.first] = 1
ans = 0

X.each do |x|
  ans = dp[x] if ans < dp[x]

  (2 * x).step(M, x) do |i|
    dp[i] = dp[x] + 1 if dp[i] < dp[x] + 1
  end
end

puts ans
0