結果

問題 No.1224 I hate Sqrt Inequality
ユーザー noriocnorioc
提出日時 2024-11-11 04:38:44
言語 Elixir
(1.16.2)
結果
MLE  
実行時間 -
コード長 491 bytes
コンパイル時間 4,891 ms
コンパイル使用メモリ 61,152 KB
実行使用メモリ 559,640 KB
最終ジャッジ日時 2024-11-11 04:39:02
合計ジャッジ時間 15,625 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 538 ms
53,924 KB
testcase_01 AC 584 ms
54,028 KB
testcase_02 AC 545 ms
53,560 KB
testcase_03 AC 588 ms
53,816 KB
testcase_04 AC 552 ms
54,032 KB
testcase_05 AC 569 ms
53,876 KB
testcase_06 AC 541 ms
53,676 KB
testcase_07 AC 538 ms
53,812 KB
testcase_08 AC 557 ms
53,672 KB
testcase_09 MLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
権限があれば一括ダウンロードができます

ソースコード

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)

  def f(a, b, st) do
    m = rem(a, b)

    cond do
      m == 0 -> false
      MapSet.member?(st, m) -> true
      true -> f(10*m, b, MapSet.put(st, m))
    end
  end

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

    case f(a, b, MapSet.new()) do
      true -> IO.puts "Yes"
      false -> IO.puts "No"
    end
  end
end
0