結果

問題 No.921 ずんだアロー
ユーザー __salty_life__salty_life
提出日時 2019-11-09 00:20:41
言語 Ruby
(3.3.0)
結果
AC  
実行時間 199 ms / 2,000 ms
コード長 250 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 23,680 KB
最終ジャッジ日時 2024-09-15 03:13:21
合計ジャッジ時間 4,789 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
12,032 KB
testcase_01 AC 88 ms
12,288 KB
testcase_02 AC 88 ms
12,032 KB
testcase_03 AC 88 ms
12,032 KB
testcase_04 AC 88 ms
12,160 KB
testcase_05 AC 87 ms
12,160 KB
testcase_06 AC 87 ms
12,032 KB
testcase_07 AC 88 ms
12,288 KB
testcase_08 AC 89 ms
12,032 KB
testcase_09 AC 89 ms
12,160 KB
testcase_10 AC 183 ms
22,272 KB
testcase_11 AC 187 ms
23,424 KB
testcase_12 AC 110 ms
14,208 KB
testcase_13 AC 159 ms
19,968 KB
testcase_14 AC 168 ms
20,992 KB
testcase_15 AC 139 ms
15,488 KB
testcase_16 AC 96 ms
12,544 KB
testcase_17 AC 170 ms
21,120 KB
testcase_18 AC 195 ms
23,424 KB
testcase_19 AC 194 ms
23,680 KB
testcase_20 AC 195 ms
23,552 KB
testcase_21 AC 196 ms
23,552 KB
testcase_22 AC 197 ms
23,552 KB
testcase_23 AC 192 ms
23,680 KB
testcase_24 AC 199 ms
23,552 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
  else
    dp[i+1][1]=dp[i].max+1
  end
end

puts dp[N].max
0