結果

問題 No.48 ロボットの操縦
ユーザー 3qvwn3qvwn
提出日時 2019-07-04 22:34:04
言語 Elixir
(1.18.1)
結果
AC  
実行時間 547 ms / 5,000 ms
コード長 650 bytes
コンパイル時間 1,126 ms
コンパイル使用メモリ 62,904 KB
実行使用メモリ 55,456 KB
最終ジャッジ日時 2024-12-31 03:20:14
合計ジャッジ時間 16,168 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 541 ms
54,904 KB
testcase_01 AC 540 ms
54,540 KB
testcase_02 AC 539 ms
54,556 KB
testcase_03 AC 544 ms
54,424 KB
testcase_04 AC 543 ms
54,552 KB
testcase_05 AC 544 ms
54,932 KB
testcase_06 AC 541 ms
54,548 KB
testcase_07 AC 544 ms
54,548 KB
testcase_08 AC 544 ms
54,780 KB
testcase_09 AC 546 ms
55,256 KB
testcase_10 AC 541 ms
54,680 KB
testcase_11 AC 541 ms
54,296 KB
testcase_12 AC 540 ms
54,676 KB
testcase_13 AC 536 ms
55,456 KB
testcase_14 AC 543 ms
55,096 KB
testcase_15 AC 544 ms
55,080 KB
testcase_16 AC 547 ms
54,668 KB
testcase_17 AC 547 ms
54,384 KB
testcase_18 AC 547 ms
54,384 KB
testcase_19 AC 544 ms
54,424 KB
testcase_20 AC 543 ms
54,544 KB
testcase_21 AC 547 ms
54,408 KB
testcase_22 AC 546 ms
54,620 KB
testcase_23 AC 542 ms
54,548 KB
testcase_24 AC 544 ms
54,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do 
  def main do
    IO.stream(:stdio, :line) |> Enum.take(3) |> Enum.map(&String.trim/1)|> Enum.map(&String.to_integer/1) |> count |> IO.puts
  end
  
  def count([0, 0, _]) do
    0
  end
  
  def count([0, y, l]) when y > 0 do
    y/l |> abs |> ceil |> trunc
  end
  
  def count([0, y, l]) do
    y/l |> abs |> ceil |> trunc |> (fn num -> num + 2 end).()
  end

  def count([x, 0, l]) do
    x/l |> abs |> ceil |> trunc |> (fn num -> num + 1 end).()
  end

  def count([x, y, l]) do
    count([0, y, l]) + count([x, 0, l]) + rotate(x,y)
  end
  
  def rotate(_,y) when y > 0 do
    0
  end
  
  def rotate(_,_) do
    -1
  end
end
0