結果

問題 No.1119 Division 3
ユーザー noriocnorioc
提出日時 2024-11-07 05:56:32
言語 Elixir
(1.16.2)
結果
WA  
実行時間 -
コード長 302 bytes
コンパイル時間 1,599 ms
コンパイル使用メモリ 61,604 KB
実行使用メモリ 54,092 KB
最終ジャッジ日時 2024-11-07 05:56:47
合計ジャッジ時間 14,191 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 599 ms
53,544 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 642 ms
53,432 KB
testcase_05 WA -
testcase_06 AC 625 ms
53,544 KB
testcase_07 AC 612 ms
53,924 KB
testcase_08 AC 630 ms
53,804 KB
testcase_09 AC 609 ms
53,672 KB
testcase_10 AC 612 ms
54,004 KB
testcase_11 AC 619 ms
53,876 KB
testcase_12 AC 616 ms
53,940 KB
testcase_13 AC 611 ms
53,932 KB
testcase_14 AC 600 ms
53,680 KB
testcase_15 WA -
testcase_16 AC 608 ms
53,724 KB
testcase_17 WA -
権限があれば一括ダウンロードができます

ソースコード

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
    [x, y, z] = li()
    yn(rem(x*y*z, 3))
  end
end
0