結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー chike_pluschike_plus
提出日時 2019-03-30 14:20:32
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 508 bytes
コンパイル時間 7,733 ms
コンパイル使用メモリ 187,948 KB
実行使用メモリ 29,312 KB
最終ジャッジ日時 2024-04-26 17:14:28
合計ジャッジ時間 10,201 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
29,184 KB
testcase_01 AC 54 ms
29,056 KB
testcase_02 AC 52 ms
29,292 KB
testcase_03 AC 52 ms
29,312 KB
testcase_04 AC 53 ms
29,184 KB
testcase_05 AC 52 ms
29,312 KB
testcase_06 AC 52 ms
29,184 KB
testcase_07 AC 52 ms
29,312 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 53 ms
29,292 KB
testcase_11 AC 54 ms
29,184 KB
testcase_12 AC 53 ms
29,184 KB
testcase_13 AC 53 ms
29,184 KB
testcase_14 AC 53 ms
29,300 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 53 ms
29,288 KB
testcase_18 AC 52 ms
29,184 KB
testcase_19 AC 53 ms
29,184 KB
testcase_20 AC 53 ms
29,020 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (247 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 ``No.47 ポケットを叩くとビスケットが2倍``()=

  stdin.ReadLine()
  |> int
  |> fun n ->
    let rec countDouble s n c =
      if s * 2 < n 
        then countDouble (s*2) n (c + 1)
        else (c , s)

    countDouble 1 n 0
    |> fun (c , s) ->
      match (n - s) with
      | 0 -> c
      | 1 -> c + 1
      | _ ->
          match (n - s) % 2 with
          | 0 -> c + 1
          | _ -> c + 2
    |> stdout.WriteLine
  ()
``No.47 ポケットを叩くとビスケットが2倍``()
0