結果

問題 No.2922 Rose Garden
ユーザー ks2mks2m
提出日時 2024-10-14 15:42:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 337 ms / 3,000 ms
コード長 728 bytes
コンパイル時間 2,074 ms
コンパイル使用メモリ 74,924 KB
実行使用メモリ 60,376 KB
最終ジャッジ日時 2024-10-14 15:42:20
合計ジャッジ時間 14,021 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 232 ms
53,376 KB
testcase_01 AC 194 ms
48,768 KB
testcase_02 AC 212 ms
49,268 KB
testcase_03 AC 301 ms
57,476 KB
testcase_04 AC 244 ms
53,152 KB
testcase_05 AC 196 ms
49,784 KB
testcase_06 AC 198 ms
48,544 KB
testcase_07 AC 295 ms
54,896 KB
testcase_08 AC 142 ms
44,468 KB
testcase_09 AC 269 ms
55,280 KB
testcase_10 AC 183 ms
44,788 KB
testcase_11 AC 146 ms
44,648 KB
testcase_12 AC 236 ms
54,240 KB
testcase_13 AC 330 ms
54,980 KB
testcase_14 AC 135 ms
41,308 KB
testcase_15 AC 227 ms
49,208 KB
testcase_16 AC 254 ms
53,244 KB
testcase_17 AC 271 ms
56,864 KB
testcase_18 AC 102 ms
39,752 KB
testcase_19 AC 204 ms
49,128 KB
testcase_20 AC 251 ms
54,004 KB
testcase_21 AC 337 ms
55,712 KB
testcase_22 AC 198 ms
49,088 KB
testcase_23 AC 271 ms
54,556 KB
testcase_24 AC 126 ms
41,532 KB
testcase_25 AC 204 ms
49,136 KB
testcase_26 AC 250 ms
53,980 KB
testcase_27 AC 310 ms
55,108 KB
testcase_28 AC 238 ms
53,236 KB
testcase_29 AC 262 ms
54,124 KB
testcase_30 AC 100 ms
39,440 KB
testcase_31 AC 60 ms
37,636 KB
testcase_32 AC 74 ms
37,860 KB
testcase_33 AC 58 ms
37,640 KB
testcase_34 AC 105 ms
39,724 KB
testcase_35 AC 79 ms
38,504 KB
testcase_36 AC 111 ms
40,584 KB
testcase_37 AC 117 ms
40,896 KB
testcase_38 AC 93 ms
39,464 KB
testcase_39 AC 108 ms
40,304 KB
testcase_40 AC 240 ms
52,912 KB
testcase_41 AC 179 ms
44,820 KB
testcase_42 AC 312 ms
57,640 KB
testcase_43 AC 202 ms
49,336 KB
testcase_44 AC 324 ms
60,376 KB
testcase_45 AC 148 ms
44,752 KB
testcase_46 AC 279 ms
57,248 KB
testcase_47 AC 235 ms
53,276 KB
testcase_48 AC 128 ms
43,344 KB
testcase_49 AC 299 ms
55,024 KB
testcase_50 AC 47 ms
36,944 KB
testcase_51 AC 47 ms
36,900 KB
testcase_52 AC 47 ms
37,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int n = Integer.parseInt(sa[0]);
		int s = Integer.parseInt(sa[1]);
		long b = Integer.parseInt(sa[2]);
		sa = br.readLine().split(" ");
		int[] h = new int[n];
		for (int i = 0; i < n; i++) {
			h[i] = Integer.parseInt(sa[i]);
		}
		br.close();

		long sb = s * b;
		long now = h[0] + sb;
		for (int i = 1; i < n; i++) {
			if (now < h[i]) {
				System.out.println("No");
				return;
			}
			now = Math.max(now, h[i] + sb);
		}
		System.out.println("Yes");
	}
}
0