結果

問題 No.2922 Rose Garden
ユーザー tentententen
提出日時 2024-10-21 10:01:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 301 ms / 3,000 ms
コード長 1,656 bytes
コンパイル時間 2,491 ms
コンパイル使用メモリ 78,276 KB
実行使用メモリ 60,888 KB
最終ジャッジ日時 2024-10-21 10:02:07
合計ジャッジ時間 14,899 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 227 ms
57,744 KB
testcase_01 AC 202 ms
54,848 KB
testcase_02 AC 214 ms
56,208 KB
testcase_03 AC 258 ms
60,592 KB
testcase_04 AC 212 ms
57,180 KB
testcase_05 AC 203 ms
56,008 KB
testcase_06 AC 199 ms
55,048 KB
testcase_07 AC 245 ms
57,832 KB
testcase_08 AC 155 ms
54,476 KB
testcase_09 AC 259 ms
58,596 KB
testcase_10 AC 201 ms
55,780 KB
testcase_11 AC 150 ms
54,192 KB
testcase_12 AC 234 ms
57,484 KB
testcase_13 AC 239 ms
57,652 KB
testcase_14 AC 131 ms
54,204 KB
testcase_15 AC 238 ms
56,264 KB
testcase_16 AC 237 ms
57,580 KB
testcase_17 AC 301 ms
60,584 KB
testcase_18 AC 116 ms
52,252 KB
testcase_19 AC 189 ms
55,416 KB
testcase_20 AC 231 ms
57,580 KB
testcase_21 AC 259 ms
58,416 KB
testcase_22 AC 210 ms
55,940 KB
testcase_23 AC 254 ms
58,804 KB
testcase_24 AC 146 ms
54,536 KB
testcase_25 AC 197 ms
55,496 KB
testcase_26 AC 250 ms
58,016 KB
testcase_27 AC 247 ms
57,624 KB
testcase_28 AC 253 ms
58,076 KB
testcase_29 AC 234 ms
58,176 KB
testcase_30 AC 114 ms
52,112 KB
testcase_31 AC 74 ms
51,248 KB
testcase_32 AC 91 ms
51,984 KB
testcase_33 AC 71 ms
51,200 KB
testcase_34 AC 112 ms
52,152 KB
testcase_35 AC 96 ms
51,932 KB
testcase_36 AC 129 ms
52,492 KB
testcase_37 AC 133 ms
54,684 KB
testcase_38 AC 109 ms
52,052 KB
testcase_39 AC 124 ms
52,564 KB
testcase_40 AC 240 ms
57,916 KB
testcase_41 AC 205 ms
55,972 KB
testcase_42 AC 271 ms
60,592 KB
testcase_43 AC 204 ms
55,148 KB
testcase_44 AC 255 ms
58,636 KB
testcase_45 AC 159 ms
54,528 KB
testcase_46 AC 275 ms
60,888 KB
testcase_47 AC 232 ms
57,384 KB
testcase_48 AC 155 ms
54,440 KB
testcase_49 AC 255 ms
58,416 KB
testcase_50 AC 53 ms
50,312 KB
testcase_51 AC 51 ms
50,400 KB
testcase_52 AC 52 ms
50,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int s = sc.nextInt();
        int b = sc.nextInt();
        int[] heights = new int[n];
        for (int i = 0; i < n; i++) {
            heights[i] = sc.nextInt();
        }
        int current = heights[0];
        int helth = s;
        for (int i = 1; i < n; i++) {
            if (heights[i] > current) {
                if ((heights[i] - current + b - 1) / b > s) {
                    System.out.println("No");
                    return;
                }
                current = heights[i];
                helth = s;
            }
        }
        System.out.println("Yes");
    }
}

class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");

    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0