結果

問題 No.1010 折って重ねて
ユーザー ikdikd
提出日時 2020-05-03 14:54:27
言語 F#
(F# 4.0)
結果
AC  
実行時間 361 ms / 2,000 ms
コード長 902 bytes
コンパイル時間 15,667 ms
コンパイル使用メモリ 199,268 KB
実行使用メモリ 37,284 KB
最終ジャッジ日時 2024-06-12 04:16:12
合計ジャッジ時間 33,989 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 357 ms
35,248 KB
testcase_01 AC 355 ms
35,284 KB
testcase_02 AC 355 ms
35,168 KB
testcase_03 AC 355 ms
35,552 KB
testcase_04 AC 356 ms
35,432 KB
testcase_05 AC 357 ms
35,284 KB
testcase_06 AC 353 ms
35,248 KB
testcase_07 AC 355 ms
35,256 KB
testcase_08 AC 355 ms
35,400 KB
testcase_09 AC 354 ms
35,296 KB
testcase_10 AC 356 ms
35,284 KB
testcase_11 AC 356 ms
35,388 KB
testcase_12 AC 354 ms
35,416 KB
testcase_13 AC 357 ms
35,296 KB
testcase_14 AC 355 ms
35,428 KB
testcase_15 AC 355 ms
35,160 KB
testcase_16 AC 355 ms
35,536 KB
testcase_17 AC 354 ms
35,668 KB
testcase_18 AC 360 ms
35,292 KB
testcase_19 AC 354 ms
35,296 KB
testcase_20 AC 355 ms
35,548 KB
testcase_21 AC 358 ms
35,256 KB
testcase_22 AC 355 ms
35,544 KB
testcase_23 AC 356 ms
35,172 KB
testcase_24 AC 357 ms
35,296 KB
testcase_25 AC 357 ms
35,164 KB
testcase_26 AC 355 ms
35,532 KB
testcase_27 AC 357 ms
35,424 KB
testcase_28 AC 356 ms
35,288 KB
testcase_29 AC 355 ms
35,412 KB
testcase_30 AC 355 ms
35,420 KB
testcase_31 AC 356 ms
35,156 KB
testcase_32 AC 361 ms
35,172 KB
testcase_33 AC 354 ms
37,284 KB
testcase_34 AC 355 ms
35,424 KB
testcase_35 AC 354 ms
35,292 KB
testcase_36 AC 359 ms
35,168 KB
testcase_37 AC 356 ms
35,172 KB
testcase_38 AC 354 ms
35,296 KB
testcase_39 AC 354 ms
35,296 KB
testcase_40 AC 358 ms
35,172 KB
testcase_41 AC 356 ms
35,536 KB
testcase_42 AC 358 ms
35,416 KB
testcase_43 AC 356 ms
35,288 KB
testcase_44 AC 357 ms
35,428 KB
testcase_45 AC 357 ms
35,296 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (347 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
/home/judge/data/code/Main.fs(7,9): 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 #

// Learn more about F# at http://fsharp.org

open System

[<EntryPoint>]
let main argv =
    let [| xx; yy; h |] = stdin.ReadLine().Split() |> Array.map float
    let x, y = Math.Min(xx, yy), Math.Max(xx, yy)

    let ans =
        seq {
            for a in 0 .. 20 do
                // x を a 回折れるか
                // x / 2^(a - 1) > h * 2^(a - 1)
                let p2 = Math.Pow(2.0, float (a) - 1.0)
                if a = 0 || x * 1000.0 / p2 > h * p2 then
                    for b in 0 .. 20 do
                        let q2 = Math.Pow(2.0, float (b) - 1.0)
                        if b = 0
                           || y * 1000.0 / q2 > h * Math.Pow(2.0, float (a))
                                                * q2 then yield (a, b)
        }
        |> Seq.map (fun tup -> (fst tup) + (snd tup))
        |> Seq.max
    printfn "%d" ans
    0 // return an integer exit code
0