結果

問題 No.2414 2 KA 3 KA
ユーザー noriocnorioc
提出日時 2024-11-07 05:36:41
言語 Elixir
(1.16.2)
結果
AC  
実行時間 670 ms / 2,000 ms
コード長 384 bytes
コンパイル時間 4,868 ms
コンパイル使用メモリ 60,868 KB
実行使用メモリ 54,224 KB
最終ジャッジ日時 2024-11-07 05:37:08
合計ジャッジ時間 26,370 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 628 ms
53,800 KB
testcase_01 AC 660 ms
53,856 KB
testcase_02 AC 631 ms
53,668 KB
testcase_03 AC 668 ms
53,692 KB
testcase_04 AC 649 ms
53,636 KB
testcase_05 AC 660 ms
53,548 KB
testcase_06 AC 634 ms
53,540 KB
testcase_07 AC 665 ms
53,804 KB
testcase_08 AC 637 ms
54,224 KB
testcase_09 AC 661 ms
53,668 KB
testcase_10 AC 641 ms
53,724 KB
testcase_11 AC 669 ms
53,552 KB
testcase_12 AC 630 ms
54,056 KB
testcase_13 AC 667 ms
53,932 KB
testcase_14 AC 632 ms
53,816 KB
testcase_15 AC 665 ms
53,796 KB
testcase_16 AC 631 ms
53,948 KB
testcase_17 AC 659 ms
53,672 KB
testcase_18 AC 629 ms
53,800 KB
testcase_19 AC 656 ms
53,672 KB
testcase_20 AC 635 ms
53,548 KB
testcase_21 AC 670 ms
53,920 KB
testcase_22 AC 628 ms
53,928 KB
testcase_23 AC 661 ms
53,544 KB
testcase_24 AC 629 ms
53,800 KB
testcase_25 AC 657 ms
53,928 KB
testcase_26 AC 639 ms
53,808 KB
testcase_27 AC 626 ms
54,064 KB
testcase_28 AC 628 ms
53,936 KB
testcase_29 AC 650 ms
53,804 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) + (2 * b * c) + (2 * c * a)
    y = a * b * c
    IO.puts if x > y, do: 2, else: 3
  end
end
0