結果

問題 No.116 門松列(1)
ユーザー apierceapierce
提出日時 2022-11-03 19:52:36
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 298 bytes
コンパイル時間 36 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-07-18 03:18:27
合計ジャッジ時間 2,831 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 90 ms
12,160 KB
testcase_02 AC 86 ms
12,288 KB
testcase_03 AC 83 ms
12,160 KB
testcase_04 AC 75 ms
12,160 KB
testcase_05 AC 74 ms
12,288 KB
testcase_06 AC 75 ms
12,160 KB
testcase_07 AC 78 ms
12,160 KB
testcase_08 AC 76 ms
12,160 KB
testcase_09 AC 77 ms
12,288 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 85 ms
12,160 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 74 ms
12,032 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 74 ms
12,160 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