結果

問題 No.2922 Rose Garden
ユーザー InTheBloomInTheBloom
提出日時 2024-10-12 14:46:34
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 42 ms / 3,000 ms
コード長 623 bytes
コンパイル時間 5,066 ms
コンパイル使用メモリ 173,416 KB
実行使用メモリ 10,748 KB
最終ジャッジ日時 2024-10-12 14:46:44
合計ジャッジ時間 7,141 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
6,120 KB
testcase_01 AC 15 ms
5,248 KB
testcase_02 AC 22 ms
5,788 KB
testcase_03 AC 40 ms
10,576 KB
testcase_04 AC 23 ms
5,960 KB
testcase_05 AC 20 ms
5,440 KB
testcase_06 AC 14 ms
5,248 KB
testcase_07 AC 34 ms
7,332 KB
testcase_08 AC 8 ms
5,248 KB
testcase_09 AC 37 ms
10,240 KB
testcase_10 AC 12 ms
5,248 KB
testcase_11 AC 8 ms
5,248 KB
testcase_12 AC 23 ms
5,952 KB
testcase_13 AC 30 ms
6,928 KB
testcase_14 AC 7 ms
5,248 KB
testcase_15 AC 21 ms
5,768 KB
testcase_16 AC 28 ms
6,552 KB
testcase_17 AC 39 ms
10,360 KB
testcase_18 AC 3 ms
5,248 KB
testcase_19 AC 17 ms
5,248 KB
testcase_20 AC 25 ms
6,324 KB
testcase_21 AC 38 ms
10,152 KB
testcase_22 AC 20 ms
5,728 KB
testcase_23 AC 37 ms
10,040 KB
testcase_24 AC 6 ms
5,248 KB
testcase_25 AC 18 ms
5,248 KB
testcase_26 AC 28 ms
6,544 KB
testcase_27 AC 30 ms
6,916 KB
testcase_28 AC 27 ms
6,644 KB
testcase_29 AC 23 ms
5,708 KB
testcase_30 AC 3 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 2 ms
5,248 KB
testcase_34 AC 3 ms
5,248 KB
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 4 ms
5,248 KB
testcase_37 AC 5 ms
5,248 KB
testcase_38 AC 3 ms
5,248 KB
testcase_39 AC 4 ms
5,248 KB
testcase_40 AC 24 ms
6,148 KB
testcase_41 AC 13 ms
5,248 KB
testcase_42 AC 40 ms
10,404 KB
testcase_43 AC 17 ms
5,248 KB
testcase_44 AC 38 ms
10,304 KB
testcase_45 AC 8 ms
5,248 KB
testcase_46 AC 42 ms
10,748 KB
testcase_47 AC 25 ms
6,512 KB
testcase_48 AC 7 ms
5,248 KB
testcase_49 AC 37 ms
10,056 KB
testcase_50 AC 2 ms
5,248 KB
testcase_51 AC 1 ms
5,248 KB
testcase_52 AC 1 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

void main () {
    int N, S, B; readln.read(N, S, B);
    auto H = readln.split.to!(int[]);

    // 最高高度を維持して良いってことか
    bool ok = true;
    long cur = H[0] + 1L * S * B;
    foreach (i; 0..N - 1) {
        cur = max(cur, H[i] + 1L * S * B);
        if (cur < H[i + 1]) ok = false;
    }

    if (ok) {
        writeln("Yes");
    }
    else {
        writeln("No");
    }
}

void read (T...) (string S, ref T args) {
    import std.conv : to;
    import std.array : split;
    auto buf = S.split;
    foreach (i, ref arg; args) {
        arg = buf[i].to!(typeof(arg));
    }
}
0