結果

問題 No.2922 Rose Garden
ユーザー YU HiroseYU Hirose
提出日時 2024-10-20 12:28:25
言語 Ruby
(3.3.0)
結果
AC  
実行時間 183 ms / 3,000 ms
コード長 196 bytes
コンパイル時間 488 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 27,392 KB
最終ジャッジ日時 2024-10-20 12:28:35
合計ジャッジ時間 9,572 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
21,376 KB
testcase_01 AC 118 ms
17,536 KB
testcase_02 AC 141 ms
20,608 KB
testcase_03 AC 169 ms
27,264 KB
testcase_04 AC 141 ms
21,120 KB
testcase_05 AC 134 ms
19,968 KB
testcase_06 AC 121 ms
17,408 KB
testcase_07 AC 160 ms
24,704 KB
testcase_08 AC 102 ms
14,208 KB
testcase_09 AC 156 ms
25,600 KB
testcase_10 AC 105 ms
16,128 KB
testcase_11 AC 102 ms
14,336 KB
testcase_12 AC 137 ms
21,120 KB
testcase_13 AC 150 ms
23,808 KB
testcase_14 AC 101 ms
13,824 KB
testcase_15 AC 134 ms
20,480 KB
testcase_16 AC 153 ms
22,912 KB
testcase_17 AC 177 ms
26,496 KB
testcase_18 AC 90 ms
12,544 KB
testcase_19 AC 127 ms
18,304 KB
testcase_20 AC 147 ms
21,376 KB
testcase_21 AC 167 ms
25,984 KB
testcase_22 AC 134 ms
20,096 KB
testcase_23 AC 166 ms
25,216 KB
testcase_24 AC 99 ms
13,952 KB
testcase_25 AC 133 ms
18,432 KB
testcase_26 AC 149 ms
22,656 KB
testcase_27 AC 155 ms
23,680 KB
testcase_28 AC 151 ms
22,656 KB
testcase_29 AC 150 ms
20,992 KB
testcase_30 AC 91 ms
12,672 KB
testcase_31 AC 88 ms
12,160 KB
testcase_32 AC 99 ms
12,416 KB
testcase_33 AC 88 ms
12,160 KB
testcase_34 AC 92 ms
12,544 KB
testcase_35 AC 90 ms
12,160 KB
testcase_36 AC 95 ms
13,056 KB
testcase_37 AC 97 ms
13,440 KB
testcase_38 AC 95 ms
12,416 KB
testcase_39 AC 93 ms
13,056 KB
testcase_40 AC 150 ms
21,504 KB
testcase_41 AC 113 ms
16,128 KB
testcase_42 AC 178 ms
26,880 KB
testcase_43 AC 130 ms
18,432 KB
testcase_44 AC 171 ms
26,240 KB
testcase_45 AC 102 ms
14,464 KB
testcase_46 AC 183 ms
27,392 KB
testcase_47 AC 149 ms
22,656 KB
testcase_48 AC 100 ms
14,208 KB
testcase_49 AC 168 ms
25,216 KB
testcase_50 AC 84 ms
12,160 KB
testcase_51 AC 88 ms
12,160 KB
testcase_52 AC 85 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

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