結果

問題 No.550 夏休みの思い出(1)
ユーザー kuuso1kuuso1
提出日時 2016-09-10 17:58:41
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 611 bytes
コンパイル時間 14,665 ms
コンパイル使用メモリ 200,568 KB
実行使用メモリ 65,416 KB
最終ジャッジ日時 2024-07-16 03:37:45
合計ジャッジ時間 18,254 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 221 ms
63,128 KB
testcase_02 WA -
testcase_03 AC 227 ms
63,248 KB
testcase_04 WA -
testcase_05 AC 229 ms
63,088 KB
testcase_06 WA -
testcase_07 AC 226 ms
63,124 KB
testcase_08 WA -
testcase_09 AC 148 ms
63,380 KB
testcase_10 WA -
testcase_11 AC 149 ms
63,252 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 150 ms
63,092 KB
testcase_16 AC 149 ms
63,128 KB
testcase_17 AC 150 ms
63,372 KB
testcase_18 AC 148 ms
63,384 KB
testcase_19 AC 148 ms
63,380 KB
testcase_20 AC 150 ms
63,216 KB
testcase_21 AC 148 ms
63,396 KB
testcase_22 AC 201 ms
63,380 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 179 ms
63,132 KB
testcase_27 AC 178 ms
63,256 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 150 ms
63,132 KB
testcase_35 AC 152 ms
63,124 KB
testcase_36 AC 152 ms
63,120 KB
testcase_37 AC 152 ms
63,124 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 155 ms
63,128 KB
testcase_44 AC 154 ms
63,248 KB
testcase_45 AC 153 ms
63,108 KB
testcase_46 AC 156 ms
63,220 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 150 ms
63,248 KB
testcase_50 AC 148 ms
63,132 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 153 ms
63,120 KB
testcase_54 AC 153 ms
63,380 KB
testcase_55 WA -
testcase_56 WA -
testcase_57 AC 153 ms
63,128 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (333 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..1000000L]
        
        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