結果

問題 No.1119 Division 3
ユーザー noriocnorioc
提出日時 2024-11-07 05:57:06
言語 Elixir
(1.16.2)
結果
AC  
実行時間 650 ms / 1,000 ms
コード長 307 bytes
コンパイル時間 1,676 ms
コンパイル使用メモリ 61,916 KB
実行使用メモリ 54,060 KB
最終ジャッジ日時 2024-11-07 05:57:21
合計ジャッジ時間 14,090 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 617 ms
53,676 KB
testcase_01 AC 638 ms
53,924 KB
testcase_02 AC 609 ms
53,672 KB
testcase_03 AC 644 ms
53,672 KB
testcase_04 AC 613 ms
53,680 KB
testcase_05 AC 634 ms
53,692 KB
testcase_06 AC 616 ms
53,692 KB
testcase_07 AC 639 ms
53,936 KB
testcase_08 AC 615 ms
53,824 KB
testcase_09 AC 638 ms
53,656 KB
testcase_10 AC 623 ms
54,060 KB
testcase_11 AC 627 ms
53,548 KB
testcase_12 AC 626 ms
53,668 KB
testcase_13 AC 650 ms
53,944 KB
testcase_14 AC 614 ms
54,056 KB
testcase_15 AC 622 ms
53,800 KB
testcase_16 AC 619 ms
53,428 KB
testcase_17 AC 642 ms
53,560 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
    [x, y, z] = li()
    yn(rem(x*y*z, 3) == 0)
  end
end
0