結果

問題 No.2648 [Cherry 6th Tune D] 一次元の馬
ユーザー kakel-sankakel-san
提出日時 2024-02-23 21:32:35
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 171 ms / 2,000 ms
コード長 967 bytes
コンパイル時間 8,804 ms
コンパイル使用メモリ 166,628 KB
実行使用メモリ 213,876 KB
最終ジャッジ日時 2024-09-29 05:40:22
合計ジャッジ時間 14,715 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
30,520 KB
testcase_01 AC 133 ms
50,688 KB
testcase_02 AC 118 ms
46,688 KB
testcase_03 AC 114 ms
46,464 KB
testcase_04 AC 112 ms
54,360 KB
testcase_05 AC 113 ms
56,348 KB
testcase_06 AC 114 ms
51,200 KB
testcase_07 AC 114 ms
56,204 KB
testcase_08 AC 113 ms
50,944 KB
testcase_09 AC 117 ms
56,520 KB
testcase_10 AC 114 ms
56,496 KB
testcase_11 AC 115 ms
54,560 KB
testcase_12 AC 118 ms
55,844 KB
testcase_13 AC 113 ms
56,060 KB
testcase_14 AC 115 ms
56,936 KB
testcase_15 AC 114 ms
56,800 KB
testcase_16 AC 115 ms
56,808 KB
testcase_17 AC 115 ms
56,912 KB
testcase_18 AC 115 ms
56,808 KB
testcase_19 AC 115 ms
56,804 KB
testcase_20 AC 116 ms
56,804 KB
testcase_21 AC 115 ms
56,936 KB
testcase_22 AC 115 ms
56,812 KB
testcase_23 AC 116 ms
56,936 KB
testcase_24 AC 116 ms
56,776 KB
testcase_25 AC 113 ms
50,688 KB
testcase_26 AC 115 ms
56,552 KB
testcase_27 AC 118 ms
54,860 KB
testcase_28 AC 118 ms
56,984 KB
testcase_29 AC 119 ms
56,132 KB
testcase_30 AC 119 ms
56,980 KB
testcase_31 AC 120 ms
57,108 KB
testcase_32 AC 117 ms
56,820 KB
testcase_33 AC 116 ms
56,164 KB
testcase_34 AC 117 ms
56,856 KB
testcase_35 AC 171 ms
213,876 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (91 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 static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static long[] NList => ReadLine().Split().Select(long.Parse).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var t = NN;
        var ans = new int[t];
        for (var u = 0; u < t; ++u)
        {
            var n = NN;
            var a = NList;
            var ok = 1_000_000_000;
            var ng = -1;
            while (ok - ng > 1)
            {
                var mid = (ok + ng) / 2;
                var flg = true;
                for (var i = 0L; i + 1 < n; ++i) if (a[i] + (i + 1) * mid >= a[i + 1] + (i + 2) * mid) flg = false;
                if (flg) ok = mid;
                else ng = mid;
            }
            ans[u] = ok;
        }
        WriteLine(string.Join("\n", ans));
    }
}
0