結果

問題 No.1224 I hate Sqrt Inequality
ユーザー noriocnorioc
提出日時 2024-11-11 04:59:29
言語 Elixir
(1.16.2)
結果
AC  
実行時間 663 ms / 2,000 ms
コード長 498 bytes
コンパイル時間 5,698 ms
コンパイル使用メモリ 62,144 KB
実行使用メモリ 54,152 KB
最終ジャッジ日時 2024-11-11 04:59:46
合計ジャッジ時間 14,096 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 647 ms
53,936 KB
testcase_01 AC 663 ms
53,508 KB
testcase_02 AC 650 ms
53,544 KB
testcase_03 AC 641 ms
53,688 KB
testcase_04 AC 651 ms
53,560 KB
testcase_05 AC 614 ms
53,932 KB
testcase_06 AC 646 ms
53,544 KB
testcase_07 AC 610 ms
53,932 KB
testcase_08 AC 662 ms
53,672 KB
testcase_09 AC 625 ms
53,676 KB
testcase_10 AC 636 ms
54,152 KB
testcase_11 AC 610 ms
53,676 KB
testcase_12 AC 639 ms
53,940 KB
testcase_13 AC 614 ms
53,676 KB
testcase_14 AC 628 ms
53,680 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)

  import Integer

  def divide_loop(x, d) do
    case rem(x, d) do
      0 -> divide_loop(div(x, d), d)
      _ -> x
    end
  end

  def main do
    [a, b] = li()

    x = div(b, gcd(a, b))
    res = divide_loop(divide_loop(x, 2), 5)
    case res do
      1 -> "No"
      _ -> "Yes"
    end
    |> IO.puts
  end
end
0