結果

問題 No.1063 ルートの計算 / Sqrt Calculation
ユーザー noriocnorioc
提出日時 2024-08-12 07:14:37
言語 Elixir
(1.16.2)
結果
AC  
実行時間 579 ms / 2,000 ms
コード長 484 bytes
コンパイル時間 1,061 ms
コンパイル使用メモリ 63,116 KB
実行使用メモリ 55,280 KB
最終ジャッジ日時 2024-08-12 07:14:50
合計ジャッジ時間 12,055 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 560 ms
54,296 KB
testcase_01 AC 545 ms
54,020 KB
testcase_02 AC 559 ms
53,624 KB
testcase_03 AC 538 ms
53,868 KB
testcase_04 AC 567 ms
53,748 KB
testcase_05 AC 560 ms
53,680 KB
testcase_06 AC 553 ms
54,124 KB
testcase_07 AC 579 ms
54,100 KB
testcase_08 AC 555 ms
54,820 KB
testcase_09 AC 566 ms
54,160 KB
testcase_10 AC 550 ms
53,996 KB
testcase_11 AC 571 ms
54,700 KB
testcase_12 AC 547 ms
54,012 KB
testcase_13 AC 579 ms
54,128 KB
testcase_14 AC 551 ms
54,524 KB
testcase_15 AC 545 ms
55,280 KB
testcase_16 AC 576 ms
54,284 KB
権限があれば一括ダウンロードができます

ソースコード

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(2, 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, div(n, x*x), a*x)
      true ->
        f(x+1, n, a)
    end
  end
end
0