結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
12,288 KB
testcase_01 AC 83 ms
12,416 KB
testcase_02 AC 76 ms
12,416 KB
testcase_03 AC 76 ms
12,160 KB
testcase_04 AC 1,389 ms
153,216 KB
testcase_05 AC 75 ms
12,032 KB
testcase_06 AC 203 ms
51,456 KB
testcase_07 AC 77 ms
15,616 KB
testcase_08 AC 75 ms
13,952 KB
testcase_09 AC 75 ms
13,568 KB
testcase_10 AC 75 ms
13,312 KB
testcase_11 AC 85 ms
18,688 KB
testcase_12 AC 780 ms
114,432 KB
testcase_13 AC 1,012 ms
130,816 KB
testcase_14 AC 931 ms
125,312 KB
testcase_15 AC 1,253 ms
145,792 KB
testcase_16 AC 941 ms
123,392 KB
testcase_17 AC 1,030 ms
132,224 KB
testcase_18 AC 855 ms
121,344 KB
testcase_19 AC 642 ms
97,536 KB
testcase_20 AC 575 ms
98,688 KB
testcase_21 AC 329 ms
70,528 KB
testcase_22 AC 1,364 ms
153,216 KB
testcase_23 AC 1,371 ms
153,344 KB
testcase_24 AC 1,063 ms
135,680 KB
testcase_25 AC 1,261 ms
146,432 KB
testcase_26 AC 666 ms
106,240 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|y=r[w-1][i];l[w][i]=[x=l[w-1][i+1],a[i]>a[i+w]?y+1:0].max;r[w][i]=[y,a[i]<a[i+w]?x+1:0].max}}
p [l[n][0],r[n][0]].max
0