結果

問題 No.63 ポッキーゲーム
ユーザー 3qvwn3qvwn
提出日時 2019-07-03 22:53:21
言語 Elixir
(1.16.2)
結果
TLE  
実行時間 -
コード長 272 bytes
コンパイル時間 1,082 ms
コンパイル使用メモリ 62,552 KB
実行使用メモリ 55,848 KB
最終ジャッジ日時 2024-06-09 22:50:25
合計ジャッジ時間 16,179 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 625 ms
53,996 KB
testcase_01 AC 626 ms
54,096 KB
testcase_02 AC 624 ms
55,848 KB
testcase_03 AC 624 ms
54,444 KB
testcase_04 AC 621 ms
54,604 KB
testcase_05 AC 623 ms
54,376 KB
testcase_06 AC 632 ms
53,740 KB
testcase_07 AC 621 ms
53,856 KB
testcase_08 AC 622 ms
53,724 KB
testcase_09 AC 636 ms
54,512 KB
testcase_10 AC 813 ms
53,692 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do 
  def main do
    IO.gets("") |> String.trim |> String.split |> Enum.map(&String.to_integer/1) |> pokky(0) |> IO.puts
  end
  
  def pokky([l, k], acc) when l-k*2 > 0 do
    pokky([l-k*2, k], acc+k)
  end
  
  def pokky([_, _], acc) do
    acc
  end
end
0