結果

問題 No.892 タピオカ
ユーザー noriocnorioc
提出日時 2024-11-07 06:10:45
言語 Elixir
(1.16.2)
結果
AC  
実行時間 672 ms / 1,000 ms
コード長 397 bytes
コンパイル時間 1,908 ms
コンパイル使用メモリ 61,884 KB
実行使用メモリ 54,396 KB
最終ジャッジ日時 2024-11-07 06:10:55
合計ジャッジ時間 9,146 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 672 ms
54,396 KB
testcase_01 AC 643 ms
53,656 KB
testcase_02 AC 630 ms
54,072 KB
testcase_03 AC 644 ms
53,556 KB
testcase_04 AC 626 ms
53,752 KB
testcase_05 AC 655 ms
53,552 KB
testcase_06 AC 668 ms
54,076 KB
testcase_07 AC 639 ms
53,948 KB
testcase_08 AC 635 ms
53,936 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
    [a1, _b1, a2, _b2, a3, _b3] = li()
    x = rem(a1, 2) + rem(a2, 2) + rem(a3, 2)
    IO.puts if rem(x, 2) == 0, do: ":-)", else: ":-("
  end
end
0