結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー 3qvwn3qvwn
提出日時 2019-07-02 10:49:49
言語 Elixir
(1.16.2)
結果
AC  
実行時間 552 ms / 5,000 ms
コード長 409 bytes
コンパイル時間 845 ms
コンパイル使用メモリ 62,632 KB
実行使用メモリ 54,088 KB
最終ジャッジ日時 2024-06-09 22:45:22
合計ジャッジ時間 14,844 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 520 ms
53,676 KB
testcase_01 AC 524 ms
53,684 KB
testcase_02 AC 522 ms
53,796 KB
testcase_03 AC 524 ms
53,944 KB
testcase_04 AC 535 ms
53,932 KB
testcase_05 AC 544 ms
54,064 KB
testcase_06 AC 547 ms
53,932 KB
testcase_07 AC 552 ms
54,088 KB
testcase_08 AC 540 ms
53,680 KB
testcase_09 AC 527 ms
53,812 KB
testcase_10 AC 544 ms
53,820 KB
testcase_11 AC 529 ms
53,936 KB
testcase_12 AC 517 ms
53,920 KB
testcase_13 AC 545 ms
53,936 KB
testcase_14 AC 539 ms
53,552 KB
testcase_15 AC 534 ms
53,688 KB
testcase_16 AC 541 ms
54,064 KB
testcase_17 AC 541 ms
53,876 KB
testcase_18 AC 520 ms
53,748 KB
testcase_19 AC 522 ms
53,676 KB
testcase_20 AC 546 ms
54,028 KB
testcase_21 AC 517 ms
53,672 KB
testcase_22 AC 518 ms
53,940 KB
testcase_23 AC 523 ms
53,672 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