結果
問題 | No.816 Beautiful tuples |
ユーザー | nao22b |
提出日時 | 2019-04-19 21:40:28 |
言語 | Elixir (1.18.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 659 bytes |
コンパイル時間 | 1,067 ms |
コンパイル使用メモリ | 63,008 KB |
実行使用メモリ | 69,704 KB |
最終ジャッジ日時 | 2024-12-31 02:50:19 |
合計ジャッジ時間 | 36,655 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 565 ms
55,520 KB |
testcase_01 | AC | 576 ms
55,136 KB |
testcase_02 | AC | 1,122 ms
54,120 KB |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | AC | 561 ms
54,108 KB |
ソースコード
defmodule Main do def divisors(n, curr) when curr > n, do: [] def divisors(n, curr) when rem(n, curr) == 0, do: [curr, div(n, curr)] ++ divisors(n, 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 && a != x && b != x -> 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