結果

問題 No.921 ずんだアロー
ユーザー wipexwipex
提出日時 2019-12-22 17:03:42
言語 Ruby
(3.3.0)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 175 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 19,328 KB
最終ジャッジ日時 2024-09-14 09:54:18
合計ジャッジ時間 4,815 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
12,160 KB
testcase_01 AC 86 ms
12,032 KB
testcase_02 AC 87 ms
12,032 KB
testcase_03 AC 89 ms
12,160 KB
testcase_04 AC 88 ms
12,032 KB
testcase_05 AC 86 ms
12,160 KB
testcase_06 AC 89 ms
12,032 KB
testcase_07 AC 87 ms
12,032 KB
testcase_08 AC 89 ms
12,160 KB
testcase_09 AC 87 ms
12,160 KB
testcase_10 AC 140 ms
18,432 KB
testcase_11 AC 143 ms
19,072 KB
testcase_12 AC 100 ms
13,312 KB
testcase_13 AC 130 ms
17,280 KB
testcase_14 AC 133 ms
17,792 KB
testcase_15 AC 112 ms
15,360 KB
testcase_16 AC 92 ms
12,416 KB
testcase_17 AC 136 ms
18,176 KB
testcase_18 AC 144 ms
19,328 KB
testcase_19 AC 145 ms
19,328 KB
testcase_20 AC 144 ms
19,200 KB
testcase_21 AC 146 ms
19,200 KB
testcase_22 AC 145 ms
19,328 KB
testcase_23 AC 142 ms
19,328 KB
testcase_24 AC 143 ms
19,328 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
a = gets.split(" ").map(&:to_i)
dp = Array.new(100,0)

N.times do |i|
 m = 0
 m = dp[i] if a[i-1]==a[i]
 m =  [m,dp[i-1]].max if i>1
 dp[i+1] = m+1
end

p dp[N]
0