結果

問題 No.2970 三次関数の絶対値
ユーザー tobisatistobisatis
提出日時 2024-11-29 21:46:06
言語 C#
(.NET 8.0.203)
結果
TLE  
実行時間 -
コード長 1,905 bytes
コンパイル時間 7,735 ms
コンパイル使用メモリ 167,900 KB
実行使用メモリ 191,916 KB
最終ジャッジ日時 2024-11-29 21:46:39
合計ジャッジ時間 28,985 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
29,940 KB
testcase_01 AC 154 ms
30,948 KB
testcase_02 AC 283 ms
30,976 KB
testcase_03 AC 369 ms
30,720 KB
testcase_04 AC 157 ms
30,696 KB
testcase_05 AC 159 ms
30,848 KB
testcase_06 AC 158 ms
30,976 KB
testcase_07 AC 171 ms
30,976 KB
testcase_08 AC 160 ms
31,100 KB
testcase_09 AC 260 ms
30,720 KB
testcase_10 AC 256 ms
30,720 KB
testcase_11 AC 571 ms
30,824 KB
testcase_12 AC 158 ms
30,952 KB
testcase_13 AC 153 ms
30,696 KB
testcase_14 AC 261 ms
30,848 KB
testcase_15 AC 171 ms
30,976 KB
testcase_16 AC 257 ms
30,848 KB
testcase_17 AC 159 ms
31,104 KB
testcase_18 AC 156 ms
30,976 KB
testcase_19 AC 156 ms
30,836 KB
testcase_20 AC 172 ms
30,976 KB
testcase_21 AC 159 ms
30,968 KB
testcase_22 AC 182 ms
30,948 KB
testcase_23 AC 153 ms
31,104 KB
testcase_24 AC 159 ms
30,976 KB
testcase_25 AC 157 ms
30,976 KB
testcase_26 AC 1,435 ms
31,080 KB
testcase_27 AC 157 ms
30,976 KB
testcase_28 AC 160 ms
30,976 KB
testcase_29 AC 169 ms
30,976 KB
testcase_30 AC 161 ms
30,976 KB
testcase_31 AC 387 ms
30,968 KB
testcase_32 AC 1,202 ms
30,848 KB
testcase_33 AC 1,008 ms
30,976 KB
testcase_34 AC 160 ms
30,976 KB
testcase_35 AC 157 ms
30,968 KB
testcase_36 AC 160 ms
30,848 KB
testcase_37 AC 389 ms
30,848 KB
testcase_38 AC 882 ms
31,080 KB
testcase_39 AC 286 ms
30,976 KB
testcase_40 AC 1,082 ms
30,976 KB
testcase_41 AC 815 ms
30,976 KB
testcase_42 TLE -
testcase_43 AC 1,131 ms
30,848 KB
testcase_44 AC 158 ms
30,968 KB
testcase_45 AC 259 ms
30,848 KB
testcase_46 AC 376 ms
30,976 KB
testcase_47 AC 903 ms
31,104 KB
testcase_48 AC 156 ms
30,848 KB
testcase_49 AC 914 ms
191,916 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (90 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 step = 0.0000001;
        var cz = 4.Repeat(Int);
        var l = Int();
        var r = Int();
        var min = double.MaxValue;
        for (double i = l; i <= r; i += step)
        {
            var v = 0.0;
            for (var j = 0; j < 4; j++)
            {
                double d = cz[j];
                for (var k = 0; k < j; k++) d *= i;
                v += d;
            }
            min = Math.Min(min, Math.Abs(v));
        }
        if (min < step) return 0;
        return min;
    }

    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 };

    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();
    }
}
0