結果

問題 No.48 ロボットの操縦
ユーザー 3qvwn3qvwn
提出日時 2019-07-04 22:34:04
言語 Elixir
(1.16.2)
結果
AC  
実行時間 563 ms / 5,000 ms
コード長 650 bytes
コンパイル時間 978 ms
コンパイル使用メモリ 62,600 KB
実行使用メモリ 54,664 KB
最終ジャッジ日時 2024-06-09 22:53:02
合計ジャッジ時間 15,984 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 549 ms
53,988 KB
testcase_01 AC 559 ms
54,412 KB
testcase_02 AC 563 ms
54,448 KB
testcase_03 AC 535 ms
54,176 KB
testcase_04 AC 543 ms
54,540 KB
testcase_05 AC 552 ms
54,664 KB
testcase_06 AC 544 ms
54,056 KB
testcase_07 AC 540 ms
54,128 KB
testcase_08 AC 541 ms
52,832 KB
testcase_09 AC 561 ms
52,784 KB
testcase_10 AC 536 ms
54,380 KB
testcase_11 AC 543 ms
54,436 KB
testcase_12 AC 545 ms
54,332 KB
testcase_13 AC 541 ms
54,352 KB
testcase_14 AC 542 ms
54,172 KB
testcase_15 AC 555 ms
54,580 KB
testcase_16 AC 549 ms
54,132 KB
testcase_17 AC 543 ms
54,412 KB
testcase_18 AC 548 ms
54,320 KB
testcase_19 AC 544 ms
53,968 KB
testcase_20 AC 552 ms
54,548 KB
testcase_21 AC 532 ms
54,316 KB
testcase_22 AC 544 ms
54,068 KB
testcase_23 AC 537 ms
54,192 KB
testcase_24 AC 562 ms
54,456 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