結果

問題 No.98 円を描こう
ユーザー noriocnorioc
提出日時 2024-08-08 03:00:34
言語 Elixir
(1.16.2)
結果
WA  
実行時間 -
コード長 356 bytes
コンパイル時間 2,099 ms
コンパイル使用メモリ 62,724 KB
実行使用メモリ 55,024 KB
最終ジャッジ日時 2024-08-08 03:00:47
合計ジャッジ時間 9,150 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 591 ms
54,112 KB
testcase_01 AC 630 ms
54,412 KB
testcase_02 AC 564 ms
53,984 KB
testcase_03 AC 605 ms
53,868 KB
testcase_04 WA -
testcase_05 AC 600 ms
55,024 KB
testcase_06 AC 561 ms
54,432 KB
testcase_07 AC 589 ms
54,352 KB
testcase_08 AC 574 ms
54,336 KB
testcase_09 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def input, do: IO.read(:line) |> String.trim
  def ii, do: input() |> String.to_integer
  def li, do: input() |> String.split |> Enum.map(&String.to_integer/1)
  def yn(b), do: IO.puts(if b, do: "Yes", else: "No")

  def main do
    [x, y] = li()

    d = :math.sqrt(x * x + y * y)
    ans = ceil(2 * d + 0.5)
    IO.puts ans
  end
end
0