結果

問題 No.63 ポッキーゲーム
ユーザー 3qvwn3qvwn
提出日時 2019-07-03 22:53:21
言語 Elixir
(1.18.1)
結果
TLE  
実行時間 -
コード長 272 bytes
コンパイル時間 1,059 ms
コンパイル使用メモリ 63,244 KB
実行使用メモリ 61,360 KB
最終ジャッジ日時 2024-12-31 03:16:10
合計ジャッジ時間 34,267 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 565 ms
54,056 KB
testcase_01 AC 565 ms
54,788 KB
testcase_02 AC 566 ms
54,740 KB
testcase_03 AC 535 ms
54,036 KB
testcase_04 AC 530 ms
54,952 KB
testcase_05 AC 522 ms
54,168 KB
testcase_06 AC 537 ms
54,524 KB
testcase_07 AC 539 ms
54,572 KB
testcase_08 AC 520 ms
54,032 KB
testcase_09 AC 529 ms
54,488 KB
testcase_10 AC 633 ms
54,164 KB
testcase_11 TLE -
testcase_12 AC 769 ms
54,044 KB
testcase_13 TLE -
testcase_14 AC 750 ms
55,124 KB
testcase_15 AC 722 ms
53,956 KB
testcase_16 AC 548 ms
53,736 KB
testcase_17 TLE -
testcase_18 AC 553 ms
53,980 KB
testcase_19 AC 1,852 ms
53,668 KB
testcase_20 AC 702 ms
53,880 KB
testcase_21 AC 959 ms
53,996 KB
権限があれば一括ダウンロードができます

ソースコード

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