結果

問題 No.2015 Stair Counter
ユーザー mobchanmobchan
提出日時 2023-05-05 10:20:26
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 729 bytes
コンパイル時間 17,888 ms
コンパイル使用メモリ 167,284 KB
実行使用メモリ 194,632 KB
最終ジャッジ日時 2024-11-22 20:14:06
合計ジャッジ時間 14,847 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
29,952 KB
testcase_01 AC 100 ms
39,040 KB
testcase_02 AC 106 ms
40,064 KB
testcase_03 AC 108 ms
40,320 KB
testcase_04 AC 98 ms
38,656 KB
testcase_05 AC 93 ms
38,272 KB
testcase_06 AC 114 ms
41,088 KB
testcase_07 AC 118 ms
41,088 KB
testcase_08 AC 118 ms
40,960 KB
testcase_09 AC 85 ms
36,864 KB
testcase_10 AC 86 ms
37,376 KB
testcase_11 AC 87 ms
37,632 KB
testcase_12 AC 83 ms
37,504 KB
testcase_13 AC 84 ms
37,376 KB
testcase_14 AC 83 ms
38,400 KB
testcase_15 AC 89 ms
43,620 KB
testcase_16 AC 103 ms
52,092 KB
testcase_17 AC 87 ms
41,344 KB
testcase_18 AC 99 ms
49,792 KB
testcase_19 AC 103 ms
53,376 KB
testcase_20 AC 94 ms
43,520 KB
testcase_21 AC 98 ms
38,656 KB
testcase_22 AC 106 ms
39,936 KB
testcase_23 AC 112 ms
40,320 KB
testcase_24 AC 100 ms
38,912 KB
testcase_25 AC 99 ms
194,632 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (98 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