結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー 3qvwn3qvwn
提出日時 2019-07-02 10:55:26
言語 Elixir
(1.16.2)
結果
WA  
実行時間 -
コード長 322 bytes
コンパイル時間 1,162 ms
コンパイル使用メモリ 62,712 KB
実行使用メモリ 55,712 KB
最終ジャッジ日時 2024-06-09 22:45:40
合計ジャッジ時間 18,026 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 625 ms
53,936 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 624 ms
54,112 KB
testcase_04 AC 622 ms
54,132 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 631 ms
53,420 KB
testcase_08 AC 637 ms
53,908 KB
testcase_09 AC 618 ms
54,000 KB
testcase_10 AC 622 ms
53,716 KB
testcase_11 AC 621 ms
54,056 KB
testcase_12 AC 626 ms
53,756 KB
testcase_13 AC 624 ms
54,068 KB
testcase_14 AC 633 ms
54,016 KB
testcase_15 AC 630 ms
53,936 KB
testcase_16 AC 617 ms
53,560 KB
testcase_17 AC 624 ms
53,820 KB
testcase_18 AC 616 ms
54,120 KB
testcase_19 AC 632 ms
53,672 KB
testcase_20 AC 627 ms
53,544 KB
testcase_21 AC 629 ms
54,548 KB
testcase_22 AC 628 ms
54,064 KB
testcase_23 AC 626 ms
53,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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