結果

問題 No.2922 Rose Garden
ユーザー YU HiroseYU Hirose
提出日時 2024-10-20 11:52:58
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 227 bytes
コンパイル時間 498 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 27,776 KB
最終ジャッジ日時 2024-10-20 11:53:09
合計ジャッジ時間 10,947 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
21,504 KB
testcase_01 AC 115 ms
17,408 KB
testcase_02 AC 127 ms
20,864 KB
testcase_03 AC 168 ms
27,392 KB
testcase_04 AC 130 ms
21,120 KB
testcase_05 AC 123 ms
19,840 KB
testcase_06 AC 115 ms
17,280 KB
testcase_07 AC 144 ms
24,832 KB
testcase_08 AC 101 ms
14,208 KB
testcase_09 AC 148 ms
25,472 KB
testcase_10 WA -
testcase_11 AC 100 ms
14,336 KB
testcase_12 AC 135 ms
21,120 KB
testcase_13 AC 137 ms
23,680 KB
testcase_14 AC 93 ms
13,824 KB
testcase_15 AC 129 ms
20,480 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 123 ms
18,560 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 163 ms
26,240 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 85 ms
12,160 KB
testcase_51 AC 84 ms
12,416 KB
testcase_52 AC 86 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n, s, b = gets.chomp.split.map(&:to_i)
h = gets.chomp.split.map(&:to_i)
cur = h[0]
i = 0
while s >= 0 && i < n-1
    if cur <= h[i+1]
        i += 1
    else
        cur += b
        s -= 1
    end
end
puts s < 0 ? "No" : "Yes"
0