結果

問題 No.1010 折って重ねて
ユーザー ikdikd
提出日時 2020-05-03 14:34:05
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 1,036 bytes
コンパイル時間 16,496 ms
コンパイル使用メモリ 198,164 KB
実行使用メモリ 35,192 KB
最終ジャッジ日時 2024-06-12 02:37:57
合計ジャッジ時間 34,489 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 345 ms
34,820 KB
testcase_01 AC 346 ms
34,688 KB
testcase_02 AC 352 ms
35,072 KB
testcase_03 AC 346 ms
35,068 KB
testcase_04 WA -
testcase_05 AC 348 ms
34,948 KB
testcase_06 AC 347 ms
34,912 KB
testcase_07 AC 348 ms
34,824 KB
testcase_08 AC 347 ms
34,692 KB
testcase_09 AC 347 ms
35,068 KB
testcase_10 AC 346 ms
34,804 KB
testcase_11 AC 351 ms
34,948 KB
testcase_12 AC 348 ms
34,684 KB
testcase_13 AC 349 ms
34,912 KB
testcase_14 AC 351 ms
34,820 KB
testcase_15 AC 347 ms
35,080 KB
testcase_16 AC 349 ms
34,944 KB
testcase_17 AC 347 ms
35,076 KB
testcase_18 AC 348 ms
34,952 KB
testcase_19 AC 349 ms
34,948 KB
testcase_20 AC 349 ms
34,932 KB
testcase_21 AC 350 ms
34,816 KB
testcase_22 AC 351 ms
34,820 KB
testcase_23 AC 354 ms
35,068 KB
testcase_24 AC 358 ms
34,824 KB
testcase_25 AC 352 ms
34,936 KB
testcase_26 AC 356 ms
34,928 KB
testcase_27 AC 353 ms
34,948 KB
testcase_28 AC 353 ms
34,816 KB
testcase_29 AC 348 ms
34,824 KB
testcase_30 AC 350 ms
34,820 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 346 ms
34,952 KB
testcase_34 AC 350 ms
35,072 KB
testcase_35 AC 354 ms
34,820 KB
testcase_36 AC 347 ms
34,816 KB
testcase_37 AC 354 ms
34,820 KB
testcase_38 AC 352 ms
34,812 KB
testcase_39 AC 347 ms
35,076 KB
testcase_40 AC 350 ms
35,072 KB
testcase_41 AC 349 ms
34,940 KB
testcase_42 AC 347 ms
35,192 KB
testcase_43 AC 349 ms
35,072 KB
testcase_44 AC 346 ms
34,820 KB
testcase_45 AC 348 ms
34,692 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (358 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
/home/judge/data/code/Main.fs(13,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

let rec pow a x =
    if x = 0L then 1L
    elif x = 1L then a
    elif x % 2L = 0L then pow (a * a) (x / 2L)
    else a * (pow a (x - 1L))

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

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