結果

問題 No.816 Beautiful tuples
ユーザー nao22bnao22b
提出日時 2019-04-19 22:00:37
言語 Elixir
(1.16.2)
結果
AC  
実行時間 542 ms / 1,500 ms
コード長 782 bytes
コンパイル時間 1,034 ms
コンパイル使用メモリ 63,920 KB
実行使用メモリ 54,660 KB
最終ジャッジ日時 2024-06-09 22:32:40
合計ジャッジ時間 10,160 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 535 ms
53,816 KB
testcase_01 AC 541 ms
53,868 KB
testcase_02 AC 539 ms
54,660 KB
testcase_03 AC 529 ms
53,924 KB
testcase_04 AC 538 ms
53,876 KB
testcase_05 AC 528 ms
53,792 KB
testcase_06 AC 527 ms
54,056 KB
testcase_07 AC 529 ms
54,012 KB
testcase_08 AC 532 ms
54,196 KB
testcase_09 AC 542 ms
54,312 KB
testcase_10 AC 529 ms
54,056 KB
testcase_11 AC 540 ms
54,416 KB
testcase_12 AC 533 ms
54,160 KB
testcase_13 AC 538 ms
53,688 KB
testcase_14 AC 527 ms
54,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do

    def is_answer(a, b, _) when (a == b), do: false
    def is_answer(a, _, c) when (a == c), do: false
    def is_answer(_, b, c) when (b == c), do: false
    def is_answer(a, b, c) do
        r1 = rem(a + b, c)
        r2 = rem(a + c, b)
        r3 = rem(b + c, a)
        r1 == 0 && r2 == 0 && r3 == 0
    end

    def solve(a, b, n) do
        r = rem(a + b, n)
        d2 = div(a + b, n)
        cond do
            is_answer(a, b, a + b) -> (a + b)
            r == 0 && is_answer(a, b, d2) -> d2
            d2 < a - b || d2 < b - a -> -1
            true -> solve(a, b, n + 1)
        end
    end

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

0