結果

問題 No.236 鴛鴦茶
ユーザー taktak
提出日時 2018-04-13 17:55:54
言語 F#
(F# 4.0)
結果
AC  
実行時間 350 ms / 2,000 ms
コード長 496 bytes
コンパイル時間 12,627 ms
コンパイル使用メモリ 185,672 KB
実行使用メモリ 35,264 KB
最終ジャッジ日時 2024-06-28 13:16:12
合計ジャッジ時間 18,528 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 342 ms
34,724 KB
testcase_01 AC 344 ms
34,588 KB
testcase_02 AC 343 ms
35,004 KB
testcase_03 AC 346 ms
35,264 KB
testcase_04 AC 343 ms
35,008 KB
testcase_05 AC 349 ms
35,120 KB
testcase_06 AC 348 ms
34,844 KB
testcase_07 AC 348 ms
35,124 KB
testcase_08 AC 347 ms
34,840 KB
testcase_09 AC 346 ms
35,060 KB
testcase_10 AC 346 ms
34,880 KB
testcase_11 AC 345 ms
34,852 KB
testcase_12 AC 346 ms
35,260 KB
testcase_13 AC 347 ms
34,456 KB
testcase_14 AC 346 ms
35,132 KB
testcase_15 AC 345 ms
34,876 KB
testcase_16 AC 348 ms
35,264 KB
testcase_17 AC 344 ms
34,760 KB
testcase_18 AC 348 ms
35,012 KB
testcase_19 AC 350 ms
34,180 KB
testcase_20 AC 348 ms
34,584 KB
testcase_21 AC 349 ms
35,148 KB
testcase_22 AC 344 ms
34,880 KB
testcase_23 AC 345 ms
34,880 KB
testcase_24 AC 350 ms
35,012 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (280 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 #

let A,B,X,Y = let t = stdin.ReadLine().Split()
                      |> Array.map(float)
              t.[0],t.[1],t.[2],t.[3]

let ajustA = 
    let t = B/A
    if X*t <= Y then Some(X*(1.0+t))
    else             None

let ajustB =
    let t = A/B
    if Y*t <= X then Some(Y*(1.0+t))
    else             None                        

match ajustA,ajustB with
| Some(a),Some(b) -> max a b 
| Some(a),None    -> a 
| None   ,Some(b) -> b 
| None   ,None    -> failwith "error"
|> printfn "%f"
0