結果

問題 No.2414 2 KA 3 KA
ユーザー noriocnorioc
提出日時 2024-11-07 05:38:18
言語 Elixir
(1.16.2)
結果
AC  
実行時間 672 ms / 2,000 ms
コード長 372 bytes
コンパイル時間 5,163 ms
コンパイル使用メモリ 61,084 KB
実行使用メモリ 54,416 KB
最終ジャッジ日時 2024-11-07 05:38:45
合計ジャッジ時間 23,454 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 617 ms
53,692 KB
testcase_01 AC 645 ms
53,668 KB
testcase_02 AC 626 ms
53,952 KB
testcase_03 AC 657 ms
53,688 KB
testcase_04 AC 613 ms
53,732 KB
testcase_05 AC 649 ms
54,076 KB
testcase_06 AC 627 ms
53,804 KB
testcase_07 AC 641 ms
53,560 KB
testcase_08 AC 612 ms
53,476 KB
testcase_09 AC 654 ms
53,936 KB
testcase_10 AC 635 ms
53,676 KB
testcase_11 AC 654 ms
53,992 KB
testcase_12 AC 626 ms
53,432 KB
testcase_13 AC 652 ms
53,672 KB
testcase_14 AC 631 ms
53,808 KB
testcase_15 AC 662 ms
53,912 KB
testcase_16 AC 634 ms
53,668 KB
testcase_17 AC 655 ms
53,908 KB
testcase_18 AC 634 ms
53,680 KB
testcase_19 AC 672 ms
53,908 KB
testcase_20 AC 622 ms
53,676 KB
testcase_21 AC 651 ms
53,548 KB
testcase_22 AC 614 ms
53,676 KB
testcase_23 AC 660 ms
53,800 KB
testcase_24 AC 622 ms
53,816 KB
testcase_25 AC 648 ms
54,416 KB
testcase_26 AC 636 ms
53,936 KB
testcase_27 AC 666 ms
53,952 KB
testcase_28 AC 624 ms
53,620 KB
testcase_29 AC 646 ms
53,768 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()

    x = 2 * (a * b + b * c + c * a)
    y = a * b * c
    IO.puts if x > y, do: 2, else: 3
  end
end
0