結果

問題 No.2922 Rose Garden
ユーザー maguroflymagurofly
提出日時 2024-10-12 14:50:13
言語 Ruby
(3.3.0)
結果
AC  
実行時間 197 ms / 3,000 ms
コード長 261 bytes
コンパイル時間 63 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 25,728 KB
最終ジャッジ日時 2024-10-12 14:50:24
合計ジャッジ時間 9,254 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
20,224 KB
testcase_01 AC 122 ms
16,896 KB
testcase_02 AC 142 ms
19,584 KB
testcase_03 AC 179 ms
25,216 KB
testcase_04 AC 141 ms
20,096 KB
testcase_05 AC 139 ms
18,560 KB
testcase_06 AC 123 ms
16,768 KB
testcase_07 AC 167 ms
23,424 KB
testcase_08 AC 106 ms
13,952 KB
testcase_09 AC 161 ms
23,936 KB
testcase_10 AC 107 ms
15,744 KB
testcase_11 AC 108 ms
14,080 KB
testcase_12 AC 139 ms
20,096 KB
testcase_13 AC 155 ms
22,272 KB
testcase_14 AC 103 ms
13,440 KB
testcase_15 AC 145 ms
19,328 KB
testcase_16 AC 159 ms
21,632 KB
testcase_17 AC 186 ms
24,704 KB
testcase_18 AC 96 ms
12,544 KB
testcase_19 AC 144 ms
17,536 KB
testcase_20 AC 156 ms
20,352 KB
testcase_21 AC 179 ms
24,320 KB
testcase_22 AC 144 ms
19,072 KB
testcase_23 AC 173 ms
23,552 KB
testcase_24 AC 104 ms
13,696 KB
testcase_25 AC 135 ms
17,792 KB
testcase_26 AC 164 ms
21,504 KB
testcase_27 AC 168 ms
22,400 KB
testcase_28 AC 160 ms
21,504 KB
testcase_29 AC 153 ms
19,840 KB
testcase_30 AC 94 ms
12,544 KB
testcase_31 AC 88 ms
12,288 KB
testcase_32 AC 97 ms
12,288 KB
testcase_33 AC 88 ms
12,288 KB
testcase_34 AC 98 ms
12,544 KB
testcase_35 AC 95 ms
12,416 KB
testcase_36 AC 102 ms
12,928 KB
testcase_37 AC 102 ms
13,056 KB
testcase_38 AC 96 ms
12,416 KB
testcase_39 AC 98 ms
12,672 KB
testcase_40 AC 151 ms
20,480 KB
testcase_41 AC 116 ms
16,000 KB
testcase_42 AC 192 ms
25,216 KB
testcase_43 AC 136 ms
17,536 KB
testcase_44 AC 192 ms
24,576 KB
testcase_45 AC 107 ms
14,208 KB
testcase_46 AC 197 ms
25,728 KB
testcase_47 AC 161 ms
21,376 KB
testcase_48 AC 107 ms
13,952 KB
testcase_49 AC 175 ms
23,552 KB
testcase_50 AC 88 ms
12,160 KB
testcase_51 AC 87 ms
12,160 KB
testcase_52 AC 87 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, S, B = gets.split.map(&:to_i)
H = gets.split.map(&:to_i)

h = H[0]
s = S
(1 ... N).each do |i|
	if H[i] >= h
		if H[i] - h > B * s
			puts "No"
			exit
		end
		h = H[i]
		s = S
	else
		if (S - s) * B > h - H[i]
			h = H[i]
			s = S
		end
	end
end

puts "Yes"
0