結果

問題 No.127 門松もどき
ユーザー 👑 hos.lyrichos.lyric
提出日時 2015-01-30 15:13:28
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,413 ms / 5,000 ms
コード長 240 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 153,344 KB
最終ジャッジ日時 2024-06-06 08:33:17
合計ジャッジ時間 18,681 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
12,032 KB
testcase_01 AC 91 ms
12,416 KB
testcase_02 AC 92 ms
12,544 KB
testcase_03 AC 93 ms
12,032 KB
testcase_04 AC 1,409 ms
153,344 KB
testcase_05 AC 91 ms
12,160 KB
testcase_06 AC 221 ms
51,584 KB
testcase_07 AC 95 ms
15,616 KB
testcase_08 AC 95 ms
13,696 KB
testcase_09 AC 93 ms
13,440 KB
testcase_10 AC 93 ms
13,184 KB
testcase_11 AC 100 ms
18,688 KB
testcase_12 AC 811 ms
114,304 KB
testcase_13 AC 1,033 ms
130,688 KB
testcase_14 AC 973 ms
125,312 KB
testcase_15 AC 1,284 ms
145,536 KB
testcase_16 AC 937 ms
123,392 KB
testcase_17 AC 1,041 ms
132,224 KB
testcase_18 AC 895 ms
121,216 KB
testcase_19 AC 599 ms
97,280 KB
testcase_20 AC 611 ms
98,560 KB
testcase_21 AC 361 ms
70,528 KB
testcase_22 AC 1,413 ms
153,088 KB
testcase_23 AC 1,405 ms
153,344 KB
testcase_24 AC 1,094 ms
135,680 KB
testcase_25 AC 1,284 ms
146,432 KB
testcase_26 AC 705 ms
106,112 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n=gets.to_i+1
a=[0]+gets.split.map(&:to_i)+[0]
l=(0..n).map{[0]*3005}
r=(0..n).map{[0]*3005}
(1..n).each{|w|(0..n-w).each{|i|s=a[i]-a[i+w];x=l[w-1][i+1];y=r[w-1][i];l[w][i]=s>0?y<x ?x:y+1:x;r[w][i]=s<0?x<y ?y:x+1:y}}
p [l[n][0],r[n][0]].max
0