結果

問題 No.2648 [Cherry 6th Tune D] 一次元の馬
ユーザー bluemeganebluemegane
提出日時 2024-03-02 14:45:20
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 451 ms / 2,000 ms
コード長 681 bytes
コンパイル時間 7,485 ms
コンパイル使用メモリ 167,024 KB
実行使用メモリ 209,484 KB
最終ジャッジ日時 2024-09-29 15:56:25
合計ジャッジ時間 13,205 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
29,036 KB
testcase_01 AC 177 ms
47,872 KB
testcase_02 AC 92 ms
43,264 KB
testcase_03 AC 89 ms
43,264 KB
testcase_04 AC 84 ms
51,044 KB
testcase_05 AC 86 ms
53,152 KB
testcase_06 AC 88 ms
48,256 KB
testcase_07 AC 87 ms
53,140 KB
testcase_08 AC 84 ms
48,256 KB
testcase_09 AC 88 ms
53,596 KB
testcase_10 AC 87 ms
53,176 KB
testcase_11 AC 88 ms
51,948 KB
testcase_12 AC 88 ms
53,868 KB
testcase_13 AC 88 ms
52,752 KB
testcase_14 AC 86 ms
53,876 KB
testcase_15 AC 89 ms
53,964 KB
testcase_16 AC 88 ms
53,988 KB
testcase_17 AC 85 ms
53,876 KB
testcase_18 AC 89 ms
54,004 KB
testcase_19 AC 93 ms
53,972 KB
testcase_20 AC 90 ms
53,724 KB
testcase_21 AC 87 ms
53,728 KB
testcase_22 AC 89 ms
54,000 KB
testcase_23 AC 90 ms
54,000 KB
testcase_24 AC 88 ms
53,696 KB
testcase_25 AC 85 ms
47,872 KB
testcase_26 AC 88 ms
53,872 KB
testcase_27 AC 87 ms
51,752 KB
testcase_28 AC 87 ms
53,668 KB
testcase_29 AC 86 ms
53,044 KB
testcase_30 AC 87 ms
53,796 KB
testcase_31 AC 87 ms
53,928 KB
testcase_32 AC 87 ms
54,180 KB
testcase_33 AC 84 ms
53,096 KB
testcase_34 AC 87 ms
53,788 KB
testcase_35 AC 451 ms
209,484 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (94 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()
    {
        var T = int.Parse(Console.ReadLine().Trim());
        while (T-- > 0)
        {
            var n = int.Parse(Console.ReadLine().Trim());
            string[] line = Console.ReadLine().Trim().Split(' ');
            var a = Array.ConvertAll(line, int.Parse);
            getAns(n, a);
        }
    }
    static void getAns(int n, int[] a)
    {
        var ans = 0;
        for (int i = 0; i < n - 1; i++)
        {
            if (a[i] < a[i + 1]) continue;
            var d = a[i] - a[i + 1];
            ans = Max(ans, d + 1);
        }
        Console.WriteLine(ans);
    }
}
0