結果

問題 No.2922 Rose Garden
ユーザー ducktailducktail
提出日時 2024-11-03 19:57:12
言語 Ruby
(3.3.0)
結果
AC  
実行時間 409 ms / 3,000 ms
コード長 368 bytes
コンパイル時間 993 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 28,672 KB
最終ジャッジ日時 2024-11-03 19:57:27
合計ジャッジ時間 14,782 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 227 ms
21,632 KB
testcase_01 AC 171 ms
18,176 KB
testcase_02 AC 223 ms
20,736 KB
testcase_03 AC 332 ms
28,288 KB
testcase_04 AC 244 ms
21,632 KB
testcase_05 AC 210 ms
19,968 KB
testcase_06 AC 170 ms
17,792 KB
testcase_07 AC 291 ms
26,112 KB
testcase_08 AC 127 ms
15,104 KB
testcase_09 AC 308 ms
26,880 KB
testcase_10 AC 151 ms
17,024 KB
testcase_11 AC 128 ms
15,360 KB
testcase_12 AC 225 ms
21,632 KB
testcase_13 AC 268 ms
24,960 KB
testcase_14 AC 116 ms
14,720 KB
testcase_15 AC 221 ms
20,608 KB
testcase_16 AC 257 ms
24,320 KB
testcase_17 AC 328 ms
27,904 KB
testcase_18 AC 99 ms
13,312 KB
testcase_19 AC 189 ms
19,072 KB
testcase_20 AC 248 ms
22,528 KB
testcase_21 AC 354 ms
27,136 KB
testcase_22 AC 211 ms
20,224 KB
testcase_23 AC 300 ms
26,496 KB
testcase_24 AC 116 ms
14,720 KB
testcase_25 AC 194 ms
19,456 KB
testcase_26 AC 287 ms
24,192 KB
testcase_27 AC 270 ms
24,832 KB
testcase_28 AC 257 ms
23,168 KB
testcase_29 AC 236 ms
21,504 KB
testcase_30 AC 102 ms
13,184 KB
testcase_31 AC 95 ms
12,288 KB
testcase_32 AC 97 ms
12,288 KB
testcase_33 AC 90 ms
12,288 KB
testcase_34 AC 101 ms
13,184 KB
testcase_35 AC 95 ms
12,160 KB
testcase_36 AC 110 ms
13,568 KB
testcase_37 AC 112 ms
13,952 KB
testcase_38 AC 99 ms
12,800 KB
testcase_39 AC 106 ms
13,568 KB
testcase_40 AC 243 ms
22,144 KB
testcase_41 AC 185 ms
17,408 KB
testcase_42 AC 346 ms
28,160 KB
testcase_43 AC 192 ms
19,072 KB
testcase_44 AC 335 ms
27,520 KB
testcase_45 AC 129 ms
15,104 KB
testcase_46 AC 409 ms
28,672 KB
testcase_47 AC 263 ms
22,656 KB
testcase_48 AC 134 ms
14,848 KB
testcase_49 AC 315 ms
26,624 KB
testcase_50 AC 92 ms
12,288 KB
testcase_51 AC 120 ms
12,288 KB
testcase_52 AC 89 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

module RoseGarden
  def solve(n, s, b, a)
    sb = s * b
    h = a[0] + sb
    (1...n).each do |i|
      if h >= a[i]
        h = [h, a[i] + sb].max
      else
        return :No
      end
    end
    :Yes
  end

  module_function :solve
end

n, s, b = gets.chomp.split(/\s+/).map(&:to_i)
ah = gets.chomp.split(/\s+/).map(&:to_i)
  
puts RoseGarden.solve(n, s, b, ah)
0