結果

問題 No.521 Cheeses and a Mousetrap(チーズとネズミ捕り)
ユーザー taktak
提出日時 2018-06-17 17:10:15
言語 F#
(F# 4.0)
結果
AC  
実行時間 345 ms / 2,000 ms
コード長 480 bytes
コンパイル時間 6,676 ms
コンパイル使用メモリ 189,912 KB
実行使用メモリ 35,016 KB
最終ジャッジ日時 2024-06-30 16:33:19
合計ジャッジ時間 17,702 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 340 ms
34,728 KB
testcase_01 AC 340 ms
34,504 KB
testcase_02 AC 341 ms
34,996 KB
testcase_03 AC 341 ms
34,628 KB
testcase_04 AC 336 ms
34,748 KB
testcase_05 AC 338 ms
34,768 KB
testcase_06 AC 340 ms
35,016 KB
testcase_07 AC 339 ms
34,504 KB
testcase_08 AC 340 ms
34,756 KB
testcase_09 AC 339 ms
34,760 KB
testcase_10 AC 338 ms
34,628 KB
testcase_11 AC 339 ms
34,508 KB
testcase_12 AC 338 ms
34,892 KB
testcase_13 AC 337 ms
34,756 KB
testcase_14 AC 338 ms
34,764 KB
testcase_15 AC 339 ms
34,868 KB
testcase_16 AC 342 ms
34,636 KB
testcase_17 AC 340 ms
34,632 KB
testcase_18 AC 339 ms
34,632 KB
testcase_19 AC 339 ms
34,496 KB
testcase_20 AC 339 ms
34,868 KB
testcase_21 AC 340 ms
34,640 KB
testcase_22 AC 345 ms
34,748 KB
testcase_23 AC 340 ms
34,760 KB
testcase_24 AC 340 ms
34,500 KB
testcase_25 AC 344 ms
34,632 KB
testcase_26 AC 338 ms
34,628 KB
testcase_27 AC 338 ms
34,872 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (235 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 safeCheesesNum n k =
    let (|CorrectMsg|ErrorMsg|) (n,k) =
        match 0 < k && k <= n with | true -> CorrectMsg | _ -> ErrorMsg
    match n,k with
    | ErrorMsg   -> 0
    | CorrectMsg ->
        let (|Odd|Eve|) n = match n%2 with | 0 -> Eve | _ -> Odd 
        match n with
        | Eve -> n-2
        | Odd -> if (n/2)+1 = k then n-1 else n-2

let N, K = let t = stdin.ReadLine().Split() |> Array.map int
           in t.[0], t.[1]

safeCheesesNum N K |> printfn "%i"
0