結果

問題 No.2648 [Cherry 6th Tune D] 一次元の馬
ユーザー tobisatistobisatis
提出日時 2024-02-23 21:57:39
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 258 ms / 2,000 ms
コード長 2,455 bytes
コンパイル時間 12,770 ms
コンパイル使用メモリ 166,132 KB
実行使用メモリ 220,076 KB
最終ジャッジ日時 2024-09-29 06:30:47
合計ジャッジ時間 15,756 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
30,208 KB
testcase_01 AC 218 ms
56,192 KB
testcase_02 AC 193 ms
54,120 KB
testcase_03 AC 198 ms
54,008 KB
testcase_04 AC 145 ms
63,024 KB
testcase_05 AC 148 ms
69,720 KB
testcase_06 AC 139 ms
54,256 KB
testcase_07 AC 146 ms
68,068 KB
testcase_08 AC 152 ms
69,832 KB
testcase_09 AC 145 ms
69,520 KB
testcase_10 AC 145 ms
69,784 KB
testcase_11 AC 153 ms
94,628 KB
testcase_12 AC 157 ms
92,600 KB
testcase_13 AC 147 ms
68,588 KB
testcase_14 AC 144 ms
70,792 KB
testcase_15 AC 142 ms
70,800 KB
testcase_16 AC 142 ms
70,788 KB
testcase_17 AC 143 ms
70,660 KB
testcase_18 AC 144 ms
70,800 KB
testcase_19 AC 145 ms
70,920 KB
testcase_20 AC 141 ms
70,792 KB
testcase_21 AC 143 ms
70,632 KB
testcase_22 AC 141 ms
70,660 KB
testcase_23 AC 142 ms
70,756 KB
testcase_24 AC 144 ms
70,792 KB
testcase_25 AC 151 ms
60,672 KB
testcase_26 AC 145 ms
70,920 KB
testcase_27 AC 150 ms
88,392 KB
testcase_28 AC 143 ms
71,228 KB
testcase_29 AC 149 ms
68,840 KB
testcase_30 AC 144 ms
71,608 KB
testcase_31 AC 146 ms
72,248 KB
testcase_32 AC 145 ms
71,104 KB
testcase_33 AC 143 ms
71,300 KB
testcase_34 AC 141 ms
71,348 KB
testcase_35 AC 258 ms
220,076 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (104 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 #

namespace AtCoder;

#nullable enable

using System.Numerics;

static class Extensions
{
    public static T[] Repeat<T>(this int time, Func<T> F) => Enumerable.Range(0, time).Select(_ => F()).ToArray();
}

class AtCoder
{
    object? Solve()
    {
        var t = Int();
        var ans = new List<long>();
        for (var i = 0; i < t; i++)
        {
            ans.Add(Solve2());
        }
        Out(ans);
        return null;
    }

    long Solve2()
    {
        var n = Int();
        var az = n.Repeat(Int);
        bool F(int x)
        {
            var bz = new long[n];
            long lx = x;
            for (var i = 0; i < n; i++)
            {
                bz[i] = lx * (i + 1) + az[i];
            }
            for (var i = 1; i < n; i++)
            {
                if (bz[i] <= bz[i - 1]) return false;
            }
            return true;
        }
        int BinarySearch(int pass, int fail)
        {
            while (Math.Abs(pass - fail) > 1)
            {
                var middle = (pass + fail) >> 1;
                if (F(middle)) pass = middle; else fail = middle;
            }
            return pass;
        }
        var res = BinarySearch(int.MaxValue / 2 - 2, -1);
        return res;
    }

    public static void Main() => new AtCoder().Run();
    public void Run()
    {
        var res = Solve();
        if (res != null)
        {
            if (res is bool yes) res = yes ? "Yes" : "No";
            sw.WriteLine(res);
        }
        sw.Flush();
    }

    string[] input = Array.Empty<string>();
    int iter = 0;
    readonly StreamWriter sw = new(Console.OpenStandardOutput()) { AutoFlush = false };

    #pragma warning disable IDE0051
    string String()
    {
        while (iter >= input.Length) (input, iter) = (Console.ReadLine()!.Split(' '), 0);
        return input[iter++];
    }
    T Input<T>() where T : IParsable<T> => T.Parse(String(), null);
    int Int() => Input<int>();
    void Out(object? x, string? separator = null)
    {
        separator ??= Environment.NewLine;
        if (x is System.Collections.IEnumerable obj and not string)
        {
            var firstLine = true;
            foreach (var item in obj)
            {
                if (!firstLine) sw.Write(separator);
                firstLine = false;
                sw.Write(item);
            }
        }
        else sw.Write(x);
        sw.WriteLine();
    }
    #pragma warning restore IDE0051
}
0