結果

問題 No.116 門松列(1)
ユーザー apierceapierce
提出日時 2022-11-03 19:52:36
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 298 bytes
コンパイル時間 61 ms
コンパイル使用メモリ 11,348 KB
実行使用メモリ 15,292 KB
最終ジャッジ日時 2023-09-25 03:41:09
合計ジャッジ時間 3,539 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 78 ms
15,060 KB
testcase_02 AC 78 ms
15,236 KB
testcase_03 AC 81 ms
15,124 KB
testcase_04 AC 81 ms
15,204 KB
testcase_05 AC 84 ms
15,144 KB
testcase_06 AC 80 ms
15,100 KB
testcase_07 AC 79 ms
15,224 KB
testcase_08 AC 80 ms
15,032 KB
testcase_09 AC 79 ms
15,240 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 79 ms
15,264 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 83 ms
15,128 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 81 ms
15,056 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.to_i
a = gets.split.map(&:to_i)

cnt = 0

n.times do |i|
    next if i == 0 || i == n-1
    if a[i-1] != a[i] && a[i] != a[i+1] && a[i+1] != a[i-1]
        c, d = [a[i-1], a[i], a[i+1]].minmax
        unless c == a[i-1] && d == a[i+1]
            cnt += 1
        end
    end
end

puts cnt
0