結果

問題 No.2922 Rose Garden
ユーザー bluemeganebluemegane
提出日時 2024-10-13 08:01:23
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 919 bytes
コンパイル時間 15,406 ms
コンパイル使用メモリ 166,164 KB
実行使用メモリ 184,472 KB
最終ジャッジ日時 2024-10-13 08:01:46
合計ジャッジ時間 18,615 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
45,168 KB
testcase_01 AC 64 ms
38,912 KB
testcase_02 AC 68 ms
42,240 KB
testcase_03 AC 83 ms
52,736 KB
testcase_04 AC 72 ms
44,928 KB
testcase_05 AC 69 ms
41,216 KB
testcase_06 AC 66 ms
38,144 KB
testcase_07 AC 79 ms
49,776 KB
testcase_08 AC 57 ms
33,664 KB
testcase_09 AC 81 ms
50,676 KB
testcase_10 AC 62 ms
37,240 KB
testcase_11 AC 59 ms
33,656 KB
testcase_12 AC 73 ms
45,304 KB
testcase_13 AC 76 ms
48,768 KB
testcase_14 AC 55 ms
32,384 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 53 ms
30,080 KB
testcase_31 AC 52 ms
29,424 KB
testcase_32 AC 52 ms
29,568 KB
testcase_33 AC 52 ms
29,440 KB
testcase_34 AC 53 ms
30,208 KB
testcase_35 AC 53 ms
29,408 KB
testcase_36 AC 57 ms
31,232 KB
testcase_37 AC 56 ms
31,744 KB
testcase_38 AC 52 ms
29,952 KB
testcase_39 AC 55 ms
31,488 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 50 ms
29,056 KB
testcase_51 AC 53 ms
29,056 KB
testcase_52 AC 50 ms
184,472 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (92 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;

public class Hello
{
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var n = int.Parse(line[0]);
        var s = int.Parse(line[1]);
        var b = int.Parse(line[2]);
        line = Console.ReadLine().Trim().Split(' ');
        var h = Array.ConvertAll(line, int.Parse);
        getAns(n, s, b, h);
    }
    static void getAns(int n, int s, int b, int[] h)
    {
        if (n == 1) { Console.WriteLine("Yes"); return; }
        var nows = s;
        var nowh = h[0];
        for (int i = 1; i < n; i++)
        {
            if (h[i] > nowh)
            {
                var d = h[i] - nowh;
                var needs = (d + b - 1) / b;
                nows -= needs;
                if (nows < 0) { Console.WriteLine("No"); return; }
            }
            nows = s;
            nowh = h[i];
        }
        Console.WriteLine("Yes");
    }
}
0