結果

問題 No.1438 Broken Drawers
ユーザー masashi0217masashi0217
提出日時 2021-04-04 06:18:21
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 946 bytes
コンパイル時間 44 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 34,944 KB
最終ジャッジ日時 2024-06-07 20:46:03
合計ジャッジ時間 6,602 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
12,032 KB
testcase_01 AC 93 ms
12,288 KB
testcase_02 AC 89 ms
12,288 KB
testcase_03 WA -
testcase_04 AC 88 ms
12,288 KB
testcase_05 AC 88 ms
12,032 KB
testcase_06 AC 226 ms
34,944 KB
testcase_07 AC 235 ms
32,000 KB
testcase_08 AC 98 ms
12,288 KB
testcase_09 AC 87 ms
12,160 KB
testcase_10 AC 87 ms
12,160 KB
testcase_11 AC 97 ms
12,672 KB
testcase_12 AC 145 ms
18,560 KB
testcase_13 AC 176 ms
23,808 KB
testcase_14 AC 129 ms
17,280 KB
testcase_15 AC 223 ms
31,744 KB
testcase_16 AC 219 ms
30,848 KB
testcase_17 AC 229 ms
31,616 KB
testcase_18 AC 230 ms
31,360 KB
testcase_19 AC 229 ms
31,488 KB
testcase_20 AC 230 ms
31,616 KB
testcase_21 AC 228 ms
31,616 KB
testcase_22 AC 230 ms
32,128 KB
testcase_23 AC 232 ms
32,384 KB
testcase_24 AC 230 ms
32,512 KB
testcase_25 AC 232 ms
32,384 KB
testcase_26 AC 231 ms
32,256 KB
testcase_27 AC 242 ms
32,384 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.chomp.to_i
a = gets.chomp.split(" ").map(&:to_i)
tmp = []
0.upto(n-2) do |j|
    if a[j] < a[j+1]
        if tmp == []
            tmp << j
            tmp << j + 1
        elsif a[j-1] < a[j]
             tmp << j + 1
        elsif a[j-1] > a[j]
            if tmp[-1] == j-1
                tmp << j + 1
            elsif tmp[-1] == j
                tmp << j + 1
            else
                tmp << j
                tmp << j + 1
            end
        end
    else
        if tmp == []
            tmp << j
        elsif a[j-1] < a[j]
            if tmp[-1] == j - 1
                tmp << j + 1
            elsif tmp[-1] != j
                tmp << j
            end
        elsif a[j-1] > a[j]
            if tmp[-1] == j - 1
                tmp << j + 1
            elsif tmp[-1] != j
                tmp << j
            end
        end
    end
end
puts tmp.count
# arr = []
# tmp.each do |k|
#     arr << a[k]
# end
# p arr
0