結果

問題 No.2015 Stair Counter
ユーザー kakel-sankakel-san
提出日時 2022-07-22 21:28:47
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 1,223 bytes
コンパイル時間 972 ms
コンパイル使用メモリ 107,264 KB
実行使用メモリ 37,248 KB
最終ジャッジ日時 2024-07-04 05:26:20
合計ジャッジ時間 3,762 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
18,944 KB
testcase_01 AC 61 ms
23,168 KB
testcase_02 AC 62 ms
23,296 KB
testcase_03 AC 64 ms
23,168 KB
testcase_04 AC 60 ms
23,168 KB
testcase_05 AC 59 ms
23,168 KB
testcase_06 AC 72 ms
23,040 KB
testcase_07 AC 71 ms
23,248 KB
testcase_08 AC 70 ms
23,168 KB
testcase_09 AC 62 ms
27,136 KB
testcase_10 AC 62 ms
27,008 KB
testcase_11 AC 64 ms
28,160 KB
testcase_12 AC 57 ms
25,472 KB
testcase_13 AC 57 ms
25,856 KB
testcase_14 AC 59 ms
26,496 KB
testcase_15 AC 66 ms
28,544 KB
testcase_16 AC 92 ms
36,736 KB
testcase_17 AC 62 ms
27,904 KB
testcase_18 AC 84 ms
35,328 KB
testcase_19 AC 100 ms
37,248 KB
testcase_20 AC 78 ms
33,408 KB
testcase_21 AC 63 ms
23,168 KB
testcase_22 AC 64 ms
23,296 KB
testcase_23 AC 69 ms
23,424 KB
testcase_24 AC 62 ms
23,168 KB
testcase_25 AC 60 ms
23,296 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static void Main()
    {
        var t = NN;
        var res = new bool[t];
        for (var u = 0; u < t; ++u)
        {
            var c = NList;
            var (n, m) = (c[0], c[1]);
            var a = NList;
            res[u] = Stair(n, m, a);
        }
        WriteLine(string.Join("\n", res.Select(f => f ? "Yes" : "No")));
    }
    static bool Stair(int n, int m, int[] a)
    {
        var dp = new int[n + 1];
        dp[0] = m;
        for (var i = 0; i < n; ++i)
        {
            if (dp[i + 1] < a[i])
            {
                var mv = a[i] - dp[i + 1];
                dp[i] -= mv;
                dp[i + 1] += mv;
            }
            if (i + 2 <= n && dp[i + 2] < a[i + 1])
            {
                var mv = Math.Min(dp[i], a[i + 1] - dp[i + 2]);
                dp[i] -= mv;
                dp[i + 2] += mv;
            }
            if (dp[i] > 0) return false;
        }
        return true;
    }
}
0