結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
21,248 KB
testcase_01 AC 115 ms
17,408 KB
testcase_02 AC 130 ms
20,608 KB
testcase_03 AC 161 ms
27,136 KB
testcase_04 AC 133 ms
20,992 KB
testcase_05 AC 125 ms
19,456 KB
testcase_06 AC 115 ms
17,152 KB
testcase_07 AC 155 ms
24,704 KB
testcase_08 AC 99 ms
14,464 KB
testcase_09 AC 149 ms
25,472 KB
testcase_10 WA -
testcase_11 AC 99 ms
14,336 KB
testcase_12 AC 134 ms
21,120 KB
testcase_13 AC 142 ms
23,552 KB
testcase_14 AC 96 ms
13,824 KB
testcase_15 AC 135 ms
20,352 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 124 ms
18,432 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 164 ms
26,368 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 85 ms
12,288 KB
testcase_51 AC 85 ms
12,288 KB
testcase_52 AC 90 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n, s, b = gets.chomp.split.map(&:to_i)
h = gets.chomp.split.map(&:to_i)
cur = h[0]
(1...n).each do |i|
    next if cur <= h[i]
    if (cur + b*s) <= h[i]
        cur = h[i]
    else
        puts "No"
        exit
    end
end
puts "Yes"
0