結果

問題 No.2922 Rose Garden
ユーザー viral8viral8
提出日時 2024-10-14 22:21:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 789 ms / 3,000 ms
コード長 414 bytes
コンパイル時間 2,814 ms
コンパイル使用メモリ 74,020 KB
実行使用メモリ 53,164 KB
最終ジャッジ日時 2024-10-14 22:22:31
合計ジャッジ時間 29,653 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 348 ms
47,824 KB
testcase_01 AC 301 ms
46,908 KB
testcase_02 AC 494 ms
47,928 KB
testcase_03 AC 585 ms
48,824 KB
testcase_04 AC 504 ms
47,420 KB
testcase_05 AC 555 ms
47,868 KB
testcase_06 AC 459 ms
47,540 KB
testcase_07 AC 656 ms
49,892 KB
testcase_08 AC 373 ms
47,680 KB
testcase_09 AC 458 ms
47,612 KB
testcase_10 AC 180 ms
42,060 KB
testcase_11 AC 437 ms
47,772 KB
testcase_12 AC 390 ms
47,604 KB
testcase_13 AC 567 ms
47,712 KB
testcase_14 AC 361 ms
47,716 KB
testcase_15 AC 567 ms
47,672 KB
testcase_16 AC 626 ms
49,888 KB
testcase_17 AC 725 ms
52,348 KB
testcase_18 AC 264 ms
46,660 KB
testcase_19 AC 621 ms
47,796 KB
testcase_20 AC 610 ms
48,984 KB
testcase_21 AC 718 ms
51,952 KB
testcase_22 AC 542 ms
47,332 KB
testcase_23 AC 614 ms
51,828 KB
testcase_24 AC 381 ms
47,704 KB
testcase_25 AC 579 ms
47,684 KB
testcase_26 AC 660 ms
48,652 KB
testcase_27 AC 672 ms
50,992 KB
testcase_28 AC 643 ms
49,652 KB
testcase_29 AC 608 ms
47,672 KB
testcase_30 AC 259 ms
46,712 KB
testcase_31 AC 197 ms
43,072 KB
testcase_32 AC 229 ms
45,400 KB
testcase_33 AC 176 ms
42,596 KB
testcase_34 AC 256 ms
46,656 KB
testcase_35 AC 239 ms
45,436 KB
testcase_36 AC 310 ms
47,292 KB
testcase_37 AC 318 ms
47,424 KB
testcase_38 AC 250 ms
46,532 KB
testcase_39 AC 326 ms
47,144 KB
testcase_40 AC 623 ms
47,904 KB
testcase_41 AC 544 ms
48,084 KB
testcase_42 AC 728 ms
52,520 KB
testcase_43 AC 631 ms
48,144 KB
testcase_44 AC 685 ms
52,724 KB
testcase_45 AC 410 ms
47,720 KB
testcase_46 AC 789 ms
53,164 KB
testcase_47 AC 627 ms
48,996 KB
testcase_48 AC 423 ms
47,708 KB
testcase_49 AC 724 ms
51,696 KB
testcase_50 AC 116 ms
40,884 KB
testcase_51 AC 121 ms
39,760 KB
testcase_52 AC 107 ms
39,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.HashMap;
class Main{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		long S = sc.nextInt();
		long B = sc.nextInt();
		int max = sc.nextInt();
		while(--N>0){
			int H = sc.nextInt();
			if(max+S*B<H){
				System.out.println("No");
				return;
			}
			max = Math.max(max,H);
		}
		System.out.println("Yes");
	}
}
0