結果

問題 No.2970 三次関数の絶対値
ユーザー kakel-sankakel-san
提出日時 2024-11-29 21:53:40
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 1,496 bytes
コンパイル時間 8,429 ms
コンパイル使用メモリ 165,696 KB
実行使用メモリ 185,408 KB
最終ジャッジ日時 2024-11-29 21:53:54
合計ジャッジ時間 13,384 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
30,720 KB
testcase_01 AC 64 ms
30,720 KB
testcase_02 AC 64 ms
30,720 KB
testcase_03 AC 56 ms
30,464 KB
testcase_04 AC 57 ms
30,720 KB
testcase_05 WA -
testcase_06 AC 65 ms
30,848 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 70 ms
30,976 KB
testcase_10 AC 58 ms
30,592 KB
testcase_11 AC 57 ms
30,464 KB
testcase_12 WA -
testcase_13 AC 58 ms
30,464 KB
testcase_14 AC 57 ms
30,592 KB
testcase_15 WA -
testcase_16 AC 64 ms
30,848 KB
testcase_17 WA -
testcase_18 AC 64 ms
30,848 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 64 ms
30,720 KB
testcase_22 WA -
testcase_23 AC 64 ms
30,976 KB
testcase_24 AC 64 ms
30,720 KB
testcase_25 AC 64 ms
30,720 KB
testcase_26 AC 61 ms
30,592 KB
testcase_27 WA -
testcase_28 AC 63 ms
30,720 KB
testcase_29 WA -
testcase_30 AC 56 ms
30,588 KB
testcase_31 AC 56 ms
30,464 KB
testcase_32 AC 57 ms
30,464 KB
testcase_33 WA -
testcase_34 AC 64 ms
30,848 KB
testcase_35 WA -
testcase_36 AC 62 ms
30,592 KB
testcase_37 AC 60 ms
30,464 KB
testcase_38 WA -
testcase_39 AC 70 ms
30,848 KB
testcase_40 AC 61 ms
30,464 KB
testcase_41 WA -
testcase_42 AC 62 ms
30,588 KB
testcase_43 WA -
testcase_44 AC 68 ms
30,720 KB
testcase_45 AC 61 ms
30,464 KB
testcase_46 AC 61 ms
30,464 KB
testcase_47 AC 69 ms
30,848 KB
testcase_48 WA -
testcase_49 AC 66 ms
185,408 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 #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static int[] NMi => ReadLine().Split().Select(c => int.Parse(c) - 1).ToArray();
    static int[][] NMap(int n) => Enumerable.Repeat(0, n).Select(_ => NMi).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var p = NList;
        var (l, r) = (p[0], p[1]);
        var list = new List<double>();
        list.Add(FD(c, l));
        list.Add(FD(c, r));
        if (c[3] != 0)
        {
            var rt = 4 * c[2] * c[2] - 12 * c[1] * c[3];
            if (rt == 0)
            {
                list.Add(FD(c, -c[2] / 3.0 / c[3]));
            }
            else if (rt > 0)
            {
                var sq = Math.Sqrt(rt);
                list.Add(FD(c, (-2 * c[2] + sq) / 6 / c[3]));
                list.Add(FD(c, -(2 * c[2] + sq) / 6 / c[3]));
            }
        }
        else if (c[2] != 0)
        {
            list.Add(FD(c, - c[1] / 2.0 / c[2]));
        }
        list.Sort();
        if (list[0] < 0 && list[^1] > 0) WriteLine(0);
        else WriteLine(list.Select(Math.Abs).Min());
    }
    static double FD(int[] c, double x)
    {
        return c[0] + c[1] * x + c[2] * x * x + c[3] * x * x * x;
    }
}
0