結果

問題 No.2015 Stair Counter
ユーザー mobchanmobchan
提出日時 2023-05-05 10:20:26
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 729 bytes
コンパイル時間 18,752 ms
コンパイル使用メモリ 169,092 KB
実行使用メモリ 193,800 KB
最終ジャッジ日時 2024-05-02 08:05:33
合計ジャッジ時間 22,849 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
29,824 KB
testcase_01 AC 112 ms
39,168 KB
testcase_02 AC 116 ms
39,544 KB
testcase_03 AC 121 ms
39,808 KB
testcase_04 AC 103 ms
38,784 KB
testcase_05 AC 95 ms
38,008 KB
testcase_06 AC 116 ms
41,088 KB
testcase_07 AC 115 ms
41,088 KB
testcase_08 AC 115 ms
40,828 KB
testcase_09 AC 84 ms
36,864 KB
testcase_10 AC 88 ms
37,120 KB
testcase_11 AC 91 ms
37,632 KB
testcase_12 AC 84 ms
37,224 KB
testcase_13 AC 88 ms
37,504 KB
testcase_14 AC 85 ms
38,528 KB
testcase_15 AC 89 ms
43,520 KB
testcase_16 AC 97 ms
51,832 KB
testcase_17 AC 87 ms
41,216 KB
testcase_18 AC 94 ms
49,752 KB
testcase_19 AC 109 ms
53,492 KB
testcase_20 AC 98 ms
43,520 KB
testcase_21 AC 102 ms
38,784 KB
testcase_22 AC 113 ms
39,552 KB
testcase_23 AC 116 ms
40,320 KB
testcase_24 AC 102 ms
38,784 KB
testcase_25 AC 98 ms
193,800 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (131 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;
using System.Collections.Generic;
using System.Linq;

class Program
{
    static void Main(string[] args)
    {
        var T = int.Parse(Console.ReadLine());

        for (int i = 0; i < T; i++)
        {
            var input = Console.ReadLine().Split().Select(int.Parse).ToArray();
            var N = input[0];
            var M = input[1];
            var A = Console.ReadLine().Split().Select(int.Parse).ToArray();
            var ans = "Yes";

            for (int j = 1; j < N - 1; j++)
            {
                if (A[j] < M - A[j - 1])
                {
                    ans = "No";
                    break;
                }
            }

            Console.WriteLine(ans);
        }
    }
}
0