結果

問題 No.550 夏休みの思い出(1)
ユーザー kuuso1kuuso1
提出日時 2016-09-10 18:15:45
言語 F#
(F# 4.0)
結果
AC  
実行時間 250 ms / 2,000 ms
コード長 734 bytes
コンパイル時間 13,364 ms
コンパイル使用メモリ 200,456 KB
実行使用メモリ 63,432 KB
最終ジャッジ日時 2024-10-11 05:30:44
合計ジャッジ時間 18,038 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 149 ms
62,948 KB
testcase_01 AC 247 ms
63,076 KB
testcase_02 AC 245 ms
63,064 KB
testcase_03 AC 245 ms
62,948 KB
testcase_04 AC 246 ms
63,072 KB
testcase_05 AC 247 ms
63,196 KB
testcase_06 AC 242 ms
62,948 KB
testcase_07 AC 244 ms
63,064 KB
testcase_08 AC 250 ms
62,948 KB
testcase_09 AC 149 ms
62,944 KB
testcase_10 AC 147 ms
62,944 KB
testcase_11 AC 145 ms
63,080 KB
testcase_12 AC 146 ms
63,080 KB
testcase_13 AC 146 ms
62,940 KB
testcase_14 AC 148 ms
63,208 KB
testcase_15 AC 145 ms
62,820 KB
testcase_16 AC 146 ms
63,072 KB
testcase_17 AC 143 ms
63,312 KB
testcase_18 AC 149 ms
63,076 KB
testcase_19 AC 148 ms
63,204 KB
testcase_20 AC 147 ms
63,080 KB
testcase_21 AC 144 ms
62,940 KB
testcase_22 AC 207 ms
63,072 KB
testcase_23 AC 169 ms
63,332 KB
testcase_24 AC 184 ms
63,336 KB
testcase_25 AC 193 ms
62,944 KB
testcase_26 AC 182 ms
63,004 KB
testcase_27 AC 178 ms
63,432 KB
testcase_28 AC 181 ms
63,076 KB
testcase_29 AC 157 ms
63,208 KB
testcase_30 AC 225 ms
62,952 KB
testcase_31 AC 146 ms
63,068 KB
testcase_32 AC 145 ms
63,072 KB
testcase_33 AC 147 ms
63,072 KB
testcase_34 AC 146 ms
63,072 KB
testcase_35 AC 147 ms
63,144 KB
testcase_36 AC 149 ms
63,200 KB
testcase_37 AC 145 ms
63,332 KB
testcase_38 AC 144 ms
62,944 KB
testcase_39 AC 142 ms
63,324 KB
testcase_40 AC 153 ms
62,944 KB
testcase_41 AC 152 ms
63,072 KB
testcase_42 AC 157 ms
63,200 KB
testcase_43 AC 151 ms
63,080 KB
testcase_44 AC 152 ms
62,952 KB
testcase_45 AC 151 ms
62,948 KB
testcase_46 AC 153 ms
63,324 KB
testcase_47 AC 146 ms
63,080 KB
testcase_48 AC 147 ms
62,948 KB
testcase_49 AC 146 ms
63,208 KB
testcase_50 AC 147 ms
63,200 KB
testcase_51 AC 143 ms
63,200 KB
testcase_52 AC 149 ms
62,944 KB
testcase_53 AC 151 ms
63,200 KB
testcase_54 AC 154 ms
63,080 KB
testcase_55 AC 151 ms
62,948 KB
testcase_56 AC 152 ms
62,948 KB
testcase_57 AC 151 ms
63,204 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (277 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 f x = x*x*x + A*x*x + B*x + C
        let g t =
            if (f t) = 0L then Some t
            elif (f -t) = 0L then Some -t
            else None
        
        let alpha = Seq.map g [0L..1000000L] |> Seq.find Option.isSome |> Option.get
        
        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