結果

問題 No.1003 サイコロの実装 (1)
ユーザー gemmarogemmaro
提出日時 2020-04-19 22:53:18
言語 Elixir
(1.18.1)
結果
AC  
実行時間 570 ms / 2,000 ms
コード長 234 bytes
コンパイル時間 1,118 ms
コンパイル使用メモリ 63,028 KB
実行使用メモリ 55,800 KB
最終ジャッジ日時 2024-12-31 04:30:56
合計ジャッジ時間 18,240 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 561 ms
54,308 KB
testcase_01 AC 546 ms
54,468 KB
testcase_02 AC 538 ms
53,740 KB
testcase_03 AC 551 ms
54,508 KB
testcase_04 AC 548 ms
54,240 KB
testcase_05 AC 545 ms
55,800 KB
testcase_06 AC 536 ms
54,256 KB
testcase_07 AC 549 ms
54,824 KB
testcase_08 AC 552 ms
55,080 KB
testcase_09 AC 549 ms
54,636 KB
testcase_10 AC 540 ms
53,740 KB
testcase_11 AC 542 ms
53,872 KB
testcase_12 AC 544 ms
54,172 KB
testcase_13 AC 544 ms
54,684 KB
testcase_14 AC 550 ms
53,888 KB
testcase_15 AC 548 ms
54,168 KB
testcase_16 AC 549 ms
54,132 KB
testcase_17 AC 570 ms
54,808 KB
testcase_18 AC 554 ms
53,812 KB
testcase_19 AC 549 ms
54,140 KB
testcase_20 AC 545 ms
53,864 KB
testcase_21 AC 539 ms
53,988 KB
testcase_22 AC 540 ms
54,248 KB
testcase_23 AC 555 ms
54,200 KB
testcase_24 AC 555 ms
54,328 KB
testcase_25 AC 548 ms
55,660 KB
testcase_26 AC 552 ms
53,744 KB
testcase_27 AC 547 ms
54,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    IO.read(:line)
    |> String.trim()
    |> String.to_integer()
    |> solve
    |> IO.puts()
  end

  def solve(n) do
    cond do
      n |> rem(6) == 0 -> "Yes"
      true -> "No"
    end
  end
end
0