結果

問題 No.1438 Broken Drawers
ユーザー masashi0217masashi0217
提出日時 2021-04-04 06:19:53
言語 Ruby
(3.3.0)
結果
AC  
実行時間 227 ms / 2,000 ms
コード長 982 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 34,944 KB
最終ジャッジ日時 2024-06-07 20:47:36
合計ジャッジ時間 5,726 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
12,288 KB
testcase_01 AC 80 ms
12,032 KB
testcase_02 AC 92 ms
12,032 KB
testcase_03 AC 82 ms
12,160 KB
testcase_04 AC 79 ms
12,160 KB
testcase_05 AC 82 ms
12,416 KB
testcase_06 AC 209 ms
34,944 KB
testcase_07 AC 214 ms
32,000 KB
testcase_08 AC 80 ms
12,160 KB
testcase_09 AC 79 ms
12,160 KB
testcase_10 AC 82 ms
12,288 KB
testcase_11 AC 88 ms
12,672 KB
testcase_12 AC 136 ms
18,688 KB
testcase_13 AC 165 ms
23,680 KB
testcase_14 AC 118 ms
17,408 KB
testcase_15 AC 201 ms
31,744 KB
testcase_16 AC 204 ms
31,232 KB
testcase_17 AC 210 ms
31,616 KB
testcase_18 AC 209 ms
31,744 KB
testcase_19 AC 213 ms
31,488 KB
testcase_20 AC 208 ms
32,128 KB
testcase_21 AC 215 ms
31,872 KB
testcase_22 AC 211 ms
32,128 KB
testcase_23 AC 217 ms
32,384 KB
testcase_24 AC 214 ms
32,384 KB
testcase_25 AC 218 ms
32,384 KB
testcase_26 AC 227 ms
32,512 KB
testcase_27 AC 221 ms
32,512 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.chomp.to_i
a = gets.chomp.split(" ").map(&:to_i)
tmp = []
if n == 1
    puts "1"
    exit
end
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