結果

問題 No.358 も~っと!門松列
ユーザー noriocnorioc
提出日時 2024-08-14 01:50:05
言語 Elixir
(1.16.2)
結果
AC  
実行時間 611 ms / 1,000 ms
コード長 641 bytes
コンパイル時間 2,191 ms
コンパイル使用メモリ 62,108 KB
実行使用メモリ 54,408 KB
最終ジャッジ日時 2024-08-14 01:50:24
合計ジャッジ時間 16,931 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 562 ms
53,984 KB
testcase_01 AC 590 ms
53,776 KB
testcase_02 AC 544 ms
53,856 KB
testcase_03 AC 585 ms
54,184 KB
testcase_04 AC 552 ms
54,408 KB
testcase_05 AC 585 ms
53,928 KB
testcase_06 AC 550 ms
53,800 KB
testcase_07 AC 584 ms
54,288 KB
testcase_08 AC 558 ms
53,808 KB
testcase_09 AC 563 ms
53,804 KB
testcase_10 AC 580 ms
54,336 KB
testcase_11 AC 552 ms
53,688 KB
testcase_12 AC 582 ms
53,744 KB
testcase_13 AC 563 ms
53,736 KB
testcase_14 AC 611 ms
53,800 KB
testcase_15 AC 556 ms
53,904 KB
testcase_16 AC 604 ms
54,160 KB
testcase_17 AC 581 ms
54,064 KB
testcase_18 AC 553 ms
53,684 KB
testcase_19 AC 580 ms
53,852 KB
testcase_20 AC 558 ms
54,096 KB
testcase_21 AC 603 ms
54,276 KB
testcase_22 AC 555 ms
53,940 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)
  def yn(b), do: IO.puts(if b, do: "Yes", else: "No")

  def main do
    [a, b, c] = li()
    if is_kadomatu(a, b, c) do
      IO.puts "INF"
    else
      ma = Enum.max([a, b, c])
      1..ma
      |> Enum.count(fn i -> is_kadomatu(rem(a, i), rem(b, i), rem(c, i)) end)
      |> IO.puts
    end
  end

  def is_kadomatu(a, b, c) do
    if a == b or b == c or c == a do
      false
    else
      [_, x, _] = Enum.sort([a, b, c])
      b != x
    end
  end
end
0