結果

問題 No.816 Beautiful tuples
ユーザー nao22bnao22b
提出日時 2019-04-19 21:36:11
言語 Elixir
(1.16.2)
結果
WA  
実行時間 -
コード長 636 bytes
コンパイル時間 1,138 ms
コンパイル使用メモリ 63,684 KB
実行使用メモリ 55,516 KB
最終ジャッジ日時 2024-06-09 22:32:28
合計ジャッジ時間 13,512 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 624 ms
53,932 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 921 ms
53,928 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 630 ms
53,720 KB
testcase_08 AC 657 ms
53,548 KB
testcase_09 AC 774 ms
53,696 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 652 ms
53,684 KB
testcase_13 AC 631 ms
53,564 KB
testcase_14 AC 634 ms
53,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do

    def divisors(n, curr) when curr > n, do: []
    def divisors(n, curr) when rem(n, curr) == 0, do: [curr] ++ divisors(div(n, curr), curr + 1)
    def divisors(n, curr), do: divisors(n, curr + 1)

    def find([], _, _), do: -1
    def find([x|xs], a, b) do
        cond do
            rem(x + a, b) == 0 && rem(x + b, a) == 0 -> x
            true -> find(xs, a, b)
        end
    end

    def solve(a, b) do
        divisors(a + b, 1) |> find(a, b)
    end

    def main do
        [a, b] = IO.gets("") |> String.trim |> String.split |> Enum.map(&String.to_integer/1)
        solve(a, b) |> IO.puts
    end
end

0