結果

問題 No.1063 ルートの計算 / Sqrt Calculation
ユーザー noriocnorioc
提出日時 2024-08-12 07:11:27
言語 Elixir
(1.16.2)
結果
TLE  
実行時間 -
コード長 484 bytes
コンパイル時間 1,844 ms
コンパイル使用メモリ 61,712 KB
実行使用メモリ 53,936 KB
最終ジャッジ日時 2024-08-12 07:11:35
合計ジャッジ時間 6,539 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 607 ms
53,936 KB
testcase_01 TLE -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
権限があれば一括ダウンロードができます

ソースコード

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
    n = ii()

    {a, b} = f(1, n, 1)
    IO.puts "#{a} #{b}"
  end

  def f(x, n, a) do
    cond do
      x*x > n -> {a, n}
      rem(n, x*x) == 0 ->
        f(x+1, div(n, x*x), a*x)
      true ->
        f(x, n, a)
    end
  end
end
0