結果

問題 No.550 夏休みの思い出(1)
ユーザー kuuso1kuuso1
提出日時 2016-08-16 17:41:18
言語 F#
(F# 4.0)
結果
AC  
実行時間 849 ms / 2,000 ms
コード長 740 bytes
コンパイル時間 13,289 ms
コンパイル使用メモリ 189,236 KB
実行使用メモリ 58,660 KB
最終ジャッジ日時 2024-10-11 05:30:01
合計ジャッジ時間 39,330 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 349 ms
34,364 KB
testcase_01 AC 835 ms
58,020 KB
testcase_02 AC 847 ms
58,116 KB
testcase_03 AC 844 ms
58,116 KB
testcase_04 AC 842 ms
58,152 KB
testcase_05 AC 849 ms
57,868 KB
testcase_06 AC 845 ms
58,652 KB
testcase_07 AC 837 ms
58,660 KB
testcase_08 AC 840 ms
57,904 KB
testcase_09 AC 344 ms
34,496 KB
testcase_10 AC 352 ms
34,624 KB
testcase_11 AC 351 ms
34,752 KB
testcase_12 AC 344 ms
34,500 KB
testcase_13 AC 346 ms
34,364 KB
testcase_14 AC 344 ms
34,756 KB
testcase_15 AC 342 ms
35,100 KB
testcase_16 AC 347 ms
34,492 KB
testcase_17 AC 345 ms
34,748 KB
testcase_18 AC 348 ms
34,496 KB
testcase_19 AC 349 ms
34,500 KB
testcase_20 AC 349 ms
34,504 KB
testcase_21 AC 346 ms
34,636 KB
testcase_22 AC 667 ms
58,152 KB
testcase_23 AC 492 ms
58,120 KB
testcase_24 AC 547 ms
57,996 KB
testcase_25 AC 586 ms
57,996 KB
testcase_26 AC 542 ms
58,560 KB
testcase_27 AC 531 ms
58,128 KB
testcase_28 AC 523 ms
58,060 KB
testcase_29 AC 413 ms
58,032 KB
testcase_30 AC 756 ms
58,156 KB
testcase_31 AC 351 ms
35,236 KB
testcase_32 AC 353 ms
35,852 KB
testcase_33 AC 358 ms
38,020 KB
testcase_34 AC 348 ms
35,160 KB
testcase_35 AC 359 ms
36,032 KB
testcase_36 AC 348 ms
35,900 KB
testcase_37 AC 350 ms
35,532 KB
testcase_38 AC 355 ms
36,084 KB
testcase_39 AC 349 ms
34,744 KB
testcase_40 AC 409 ms
57,872 KB
testcase_41 AC 403 ms
57,988 KB
testcase_42 AC 409 ms
58,000 KB
testcase_43 AC 383 ms
53,724 KB
testcase_44 AC 390 ms
57,016 KB
testcase_45 AC 389 ms
53,580 KB
testcase_46 AC 401 ms
58,252 KB
testcase_47 AC 358 ms
39,148 KB
testcase_48 AC 351 ms
34,536 KB
testcase_49 AC 350 ms
35,132 KB
testcase_50 AC 350 ms
34,624 KB
testcase_51 AC 348 ms
35,060 KB
testcase_52 AC 385 ms
53,036 KB
testcase_53 AC 385 ms
52,788 KB
testcase_54 AC 385 ms
53,036 KB
testcase_55 AC 384 ms
52,780 KB
testcase_56 AC 382 ms
53,172 KB
testcase_57 AC 385 ms
52,780 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (310 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 #

open System
type Sol() =
    member this.minAlpha (a:int64, b:int64, c:int64) = 
        let sq = Seq.initInfinite (fun i -> if i%2 = 0 then int64(i/2) else int64(-i/2))
        sq |> Seq.find (fun j -> j*j*j + a*j*j + b*j + c = 0L)

    member this.Solve() = 
        let (A, B, C) = stdin.ReadLine().Split(' ') |> fun ss -> (int64 ss.[0], int64 ss.[1], int64 ss.[2])
        let alpha = this.minAlpha (A,B,C) 
        let A2 = A + alpha
        let B2 = B + alpha*A2
        let D = A2*A2 - 4L*B2
        let sqrtD:int64 = (double D) |> sqrt |> int64
        let ans = alpha :: (-A2 + sqrtD)/2L :: (-A2 - sqrtD)/2L :: [] |> List.sort |> Seq.toArray
        printfn "%d %d %d" ans.[0] ans.[1] ans.[2]


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