結果

問題 No.414 衝動
ユーザー katkkatk
提出日時 2016-09-03 03:34:36
言語 Elixir
(1.16.2)
結果
AC  
実行時間 678 ms / 1,000 ms
コード長 302 bytes
コンパイル時間 4,641 ms
コンパイル使用メモリ 61,732 KB
実行使用メモリ 54,016 KB
最終ジャッジ日時 2024-11-15 11:41:30
合計ジャッジ時間 14,859 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 641 ms
53,592 KB
testcase_01 AC 621 ms
53,816 KB
testcase_02 AC 625 ms
53,684 KB
testcase_03 AC 635 ms
53,420 KB
testcase_04 AC 638 ms
54,016 KB
testcase_05 AC 642 ms
53,488 KB
testcase_06 AC 678 ms
53,660 KB
testcase_07 AC 627 ms
53,412 KB
testcase_08 AC 639 ms
53,368 KB
testcase_09 AC 628 ms
53,680 KB
testcase_10 AC 629 ms
53,684 KB
testcase_11 AC 634 ms
53,428 KB
testcase_12 AC 626 ms
53,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
    def main() do
        m = IO.gets("") |> Integer.parse |> elem(0)
        d1 = find_div(m, round(:math.sqrt(m)))
        d2 = round(m / d1)
        IO.puts("#{d1} #{d2}")
    end

    def find_div(n, t) when rem(n, t) == 0, do: t

    def find_div(n, t), do: find_div(n, t-1)
end
0