結果

問題 No.2922 Rose Garden
ユーザー bluemeganebluemegane
提出日時 2024-10-13 10:19:33
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 93 ms / 3,000 ms
コード長 1,031 bytes
コンパイル時間 14,315 ms
コンパイル使用メモリ 167,372 KB
実行使用メモリ 188,456 KB
最終ジャッジ日時 2024-10-13 10:19:53
合計ジャッジ時間 19,515 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
44,928 KB
testcase_01 AC 61 ms
38,656 KB
testcase_02 AC 67 ms
42,112 KB
testcase_03 AC 93 ms
52,708 KB
testcase_04 AC 68 ms
45,184 KB
testcase_05 AC 63 ms
41,460 KB
testcase_06 AC 58 ms
38,260 KB
testcase_07 AC 72 ms
49,648 KB
testcase_08 AC 53 ms
33,664 KB
testcase_09 AC 74 ms
51,200 KB
testcase_10 AC 62 ms
36,992 KB
testcase_11 AC 53 ms
33,920 KB
testcase_12 AC 67 ms
45,312 KB
testcase_13 AC 76 ms
48,532 KB
testcase_14 AC 55 ms
32,628 KB
testcase_15 AC 66 ms
42,112 KB
testcase_16 AC 69 ms
47,488 KB
testcase_17 AC 77 ms
51,968 KB
testcase_18 AC 50 ms
30,720 KB
testcase_19 AC 64 ms
39,808 KB
testcase_20 AC 71 ms
45,824 KB
testcase_21 AC 79 ms
51,072 KB
testcase_22 AC 67 ms
41,856 KB
testcase_23 AC 76 ms
50,276 KB
testcase_24 AC 54 ms
32,512 KB
testcase_25 AC 63 ms
40,320 KB
testcase_26 AC 74 ms
46,976 KB
testcase_27 AC 73 ms
48,516 KB
testcase_28 AC 73 ms
46,704 KB
testcase_29 AC 72 ms
45,184 KB
testcase_30 AC 51 ms
30,464 KB
testcase_31 AC 50 ms
29,056 KB
testcase_32 AC 53 ms
29,824 KB
testcase_33 AC 46 ms
29,440 KB
testcase_34 AC 48 ms
30,592 KB
testcase_35 AC 48 ms
29,824 KB
testcase_36 AC 51 ms
31,616 KB
testcase_37 AC 52 ms
31,616 KB
testcase_38 AC 52 ms
29,952 KB
testcase_39 AC 51 ms
31,360 KB
testcase_40 AC 72 ms
45,440 KB
testcase_41 AC 61 ms
37,376 KB
testcase_42 AC 80 ms
52,864 KB
testcase_43 AC 65 ms
39,936 KB
testcase_44 AC 78 ms
51,896 KB
testcase_45 AC 62 ms
33,636 KB
testcase_46 AC 81 ms
53,208 KB
testcase_47 AC 72 ms
46,588 KB
testcase_48 AC 55 ms
33,664 KB
testcase_49 AC 77 ms
50,564 KB
testcase_50 AC 47 ms
29,184 KB
testcase_51 AC 46 ms
28,800 KB
testcase_52 AC 47 ms
188,456 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (87 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 static System.Math;
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 = Max(nowh,  h[i]);
        }
        Console.WriteLine("Yes");
    }
}
0