結果

問題 No.127 門松もどき
ユーザー 👑 hos.lyrichos.lyric
提出日時 2015-01-30 14:48:46
言語 Ruby
(3.3.0)
結果
AC  
実行時間 2,187 ms / 5,000 ms
コード長 193 bytes
コンパイル時間 114 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 54,656 KB
最終ジャッジ日時 2024-06-06 08:27:28
合計ジャッジ時間 25,896 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
12,160 KB
testcase_01 AC 74 ms
12,160 KB
testcase_02 AC 77 ms
12,288 KB
testcase_03 AC 75 ms
12,160 KB
testcase_04 AC 2,138 ms
54,528 KB
testcase_05 AC 76 ms
12,160 KB
testcase_06 AC 243 ms
16,000 KB
testcase_07 AC 78 ms
12,160 KB
testcase_08 AC 75 ms
12,160 KB
testcase_09 AC 77 ms
12,160 KB
testcase_10 AC 77 ms
12,160 KB
testcase_11 AC 86 ms
12,160 KB
testcase_12 AC 1,179 ms
33,792 KB
testcase_13 AC 1,522 ms
42,496 KB
testcase_14 AC 1,426 ms
40,448 KB
testcase_15 AC 1,934 ms
51,712 KB
testcase_16 AC 1,354 ms
39,040 KB
testcase_17 AC 1,566 ms
43,136 KB
testcase_18 AC 1,311 ms
37,504 KB
testcase_19 AC 837 ms
28,544 KB
testcase_20 AC 843 ms
28,544 KB
testcase_21 AC 444 ms
22,272 KB
testcase_22 AC 2,187 ms
54,656 KB
testcase_23 AC 2,149 ms
54,528 KB
testcase_24 AC 1,675 ms
45,184 KB
testcase_25 AC 1,962 ms
51,968 KB
testcase_26 AC 1,008 ms
29,184 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n=gets.to_i
a=[0]+gets.split.map(&:to_i)+[0]
p (0..n).inject([0,1].map{(0..n+1).map{0}}){|d,w|[0,1].map{|s|(0..n-w).map{|i|[d[s][i+1-s],(-1)**s==(a[i]<=>a[i+w+1])?1+d[1-s][i+s]:0].max}}}.max[0]
0