結果

問題 No.921 ずんだアロー
ユーザー __salty_life__salty_life
提出日時 2019-11-08 23:29:08
言語 Ruby
(3.3.0)
結果
AC  
実行時間 198 ms / 2,000 ms
コード長 267 bytes
コンパイル時間 451 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 23,680 KB
最終ジャッジ日時 2024-09-15 02:35:34
合計ジャッジ時間 5,557 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
12,032 KB
testcase_01 AC 89 ms
12,160 KB
testcase_02 AC 89 ms
12,032 KB
testcase_03 AC 88 ms
12,288 KB
testcase_04 AC 89 ms
12,032 KB
testcase_05 AC 87 ms
12,160 KB
testcase_06 AC 89 ms
12,032 KB
testcase_07 AC 89 ms
12,032 KB
testcase_08 AC 87 ms
12,160 KB
testcase_09 AC 91 ms
12,160 KB
testcase_10 AC 183 ms
22,400 KB
testcase_11 AC 188 ms
23,296 KB
testcase_12 AC 110 ms
14,336 KB
testcase_13 AC 161 ms
20,096 KB
testcase_14 AC 169 ms
20,992 KB
testcase_15 AC 141 ms
15,616 KB
testcase_16 AC 98 ms
12,416 KB
testcase_17 AC 175 ms
21,248 KB
testcase_18 AC 198 ms
23,424 KB
testcase_19 AC 194 ms
23,424 KB
testcase_20 AC 198 ms
23,552 KB
testcase_21 AC 194 ms
23,680 KB
testcase_22 AC 192 ms
23,552 KB
testcase_23 AC 192 ms
23,552 KB
testcase_24 AC 198 ms
23,424 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #


N=gets.to_i
A=gets.split.map(&:to_i)

dp=Array.new(N+1){Array.new(2,0)} #not zunda,zunda
dp[0][0]=0
N.times do |i|
  dp[i+1][0]=dp[i].max
  if i!=0 && A[i]!=A[i-1]
    dp[i+1][1]=[dp[i][0]+1,dp[i][1]].max
  else
    dp[i+1][1]=dp[i].max+1
  end
end

puts dp[N].max
0