結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー 3qvwn3qvwn
提出日時 2019-07-02 10:49:49
言語 Elixir
(1.18.1)
結果
AC  
実行時間 585 ms / 5,000 ms
コード長 409 bytes
コンパイル時間 1,008 ms
コンパイル使用メモリ 64,936 KB
実行使用メモリ 55,452 KB
最終ジャッジ日時 2024-12-31 03:08:45
合計ジャッジ時間 15,975 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 574 ms
54,800 KB
testcase_01 AC 578 ms
54,644 KB
testcase_02 AC 579 ms
54,212 KB
testcase_03 AC 573 ms
55,208 KB
testcase_04 AC 567 ms
53,996 KB
testcase_05 AC 578 ms
54,060 KB
testcase_06 AC 567 ms
54,132 KB
testcase_07 AC 571 ms
53,748 KB
testcase_08 AC 581 ms
54,476 KB
testcase_09 AC 579 ms
54,388 KB
testcase_10 AC 576 ms
54,212 KB
testcase_11 AC 580 ms
54,480 KB
testcase_12 AC 579 ms
54,340 KB
testcase_13 AC 578 ms
53,880 KB
testcase_14 AC 585 ms
53,948 KB
testcase_15 AC 580 ms
54,380 KB
testcase_16 AC 559 ms
53,724 KB
testcase_17 AC 548 ms
55,452 KB
testcase_18 AC 526 ms
55,200 KB
testcase_19 AC 522 ms
53,724 KB
testcase_20 AC 535 ms
53,952 KB
testcase_21 AC 525 ms
54,960 KB
testcase_22 AC 533 ms
54,944 KB
testcase_23 AC 532 ms
53,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    n = IO.gets("") |> String.trim |> String.to_integer
    strike(1, n, 0)
  end
  
  def strike(n, n, count) do
    IO.puts count
  end
  
  def strike(biscuit, n, count) do
    if biscuit * 2 <= n do
      strike(pocket(biscuit), n , count + 1)
    else
      strike(2*biscuit - n + pocket(n - biscuit), n, count + 1)
    end
  end
  
  def pocket(n) do
    n * 2
  end
end
0