結果

問題 No.2922 Rose Garden
ユーザー ks2mks2m
提出日時 2024-10-14 15:33:35
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 679 bytes
コンパイル時間 2,350 ms
コンパイル使用メモリ 73,612 KB
実行使用メモリ 59,828 KB
最終ジャッジ日時 2024-10-14 15:33:51
合計ジャッジ時間 15,562 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 240 ms
53,212 KB
testcase_01 AC 220 ms
49,072 KB
testcase_02 AC 238 ms
51,416 KB
testcase_03 AC 330 ms
57,056 KB
testcase_04 AC 253 ms
53,508 KB
testcase_05 AC 230 ms
49,172 KB
testcase_06 AC 222 ms
48,432 KB
testcase_07 AC 303 ms
53,532 KB
testcase_08 AC 154 ms
44,816 KB
testcase_09 AC 316 ms
55,348 KB
testcase_10 AC 194 ms
44,992 KB
testcase_11 AC 157 ms
44,912 KB
testcase_12 AC 263 ms
53,224 KB
testcase_13 AC 333 ms
55,156 KB
testcase_14 AC 132 ms
41,492 KB
testcase_15 WA -
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 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 114 ms
39,676 KB
testcase_31 AC 68 ms
37,720 KB
testcase_32 AC 87 ms
38,764 KB
testcase_33 AC 62 ms
37,096 KB
testcase_34 AC 115 ms
39,908 KB
testcase_35 AC 94 ms
38,732 KB
testcase_36 AC 119 ms
40,492 KB
testcase_37 AC 135 ms
41,112 KB
testcase_38 AC 103 ms
39,340 KB
testcase_39 AC 119 ms
40,408 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 53 ms
36,636 KB
testcase_51 AC 53 ms
36,952 KB
testcase_52 AC 54 ms
36,948 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;
		for (int i = 1; i < n; i++) {
			if (h[i - 1] + sb < h[i]) {
				System.out.println("No");
				return;
			}
		}
		System.out.println("Yes");
	}
}
0