結果

問題 No.550 夏休みの思い出(1)
ユーザー kuuso1kuuso1
提出日時 2016-09-10 17:57:21
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 610 bytes
コンパイル時間 13,280 ms
コンパイル使用メモリ 200,368 KB
実行使用メモリ 43,232 KB
最終ジャッジ日時 2024-07-16 03:37:09
合計ジャッジ時間 25,409 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 87 ms
34,688 KB
testcase_10 WA -
testcase_11 AC 86 ms
34,688 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 82 ms
34,688 KB
testcase_16 AC 81 ms
34,944 KB
testcase_17 AC 80 ms
34,944 KB
testcase_18 AC 83 ms
34,944 KB
testcase_19 AC 87 ms
34,688 KB
testcase_20 AC 83 ms
34,560 KB
testcase_21 AC 87 ms
34,688 KB
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 89 ms
34,816 KB
testcase_35 AC 86 ms
36,800 KB
testcase_36 AC 87 ms
34,944 KB
testcase_37 AC 85 ms
34,560 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 90 ms
34,688 KB
testcase_44 AC 91 ms
34,656 KB
testcase_45 AC 91 ms
34,688 KB
testcase_46 AC 93 ms
34,944 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 84 ms
34,816 KB
testcase_50 AC 87 ms
34,652 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 96 ms
34,816 KB
testcase_54 AC 94 ms
34,560 KB
testcase_55 WA -
testcase_56 WA -
testcase_57 AC 90 ms
34,684 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (591 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
/home/judge/data/code/Main.fs(5,13): warning FS0025: この式のパターン マッチが不完全です たとえば、値 '[|_; _; _; _|]' はパターンに含まれないケースを示す可能性があります。 [/home/judge/data/code/main.fsproj]
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

open System
type Sol() =

    member this.Solve() = 
        let [|A; B; C|] = stdin.ReadLine().Split(' ') |> Array.map int64
        let alpha = Seq.find (fun (x:int64) -> ( x*x*x + A*x*x + B*x + C = 0L ) || ( -x*x*x + A*x*x - B*x + C = 0L )) [0L..100000L]
        
        let A2 = A + alpha
        let B2 = B + alpha*A2
        let D = A2*A2 - 4L*B2
        let sqrtD:int64 = (double D) |> sqrt |> int64
        
        [alpha; (-A2 + sqrtD)/2L; (-A2 - sqrtD)/2L ] 
        |> Seq.sort |> Seq.map string |> Seq.reduce (fun s t -> s + " " + t)
        |> printfn "%s"


let mySol = new Sol()
mySol.Solve()
0