結果

問題 No.1003 サイコロの実装 (1)
ユーザー gemmarogemmaro
提出日時 2020-04-19 22:53:18
言語 Elixir
(1.16.2)
結果
AC  
実行時間 760 ms / 2,000 ms
コード長 234 bytes
コンパイル時間 1,435 ms
コンパイル使用メモリ 63,720 KB
実行使用メモリ 57,836 KB
最終ジャッジ日時 2024-06-09 23:45:52
合計ジャッジ時間 20,499 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 628 ms
53,700 KB
testcase_01 AC 619 ms
55,128 KB
testcase_02 AC 614 ms
54,112 KB
testcase_03 AC 632 ms
54,820 KB
testcase_04 AC 640 ms
54,124 KB
testcase_05 AC 647 ms
54,228 KB
testcase_06 AC 640 ms
54,652 KB
testcase_07 AC 619 ms
54,828 KB
testcase_08 AC 623 ms
53,608 KB
testcase_09 AC 640 ms
54,128 KB
testcase_10 AC 626 ms
54,320 KB
testcase_11 AC 640 ms
54,236 KB
testcase_12 AC 627 ms
53,612 KB
testcase_13 AC 760 ms
54,684 KB
testcase_14 AC 630 ms
57,836 KB
testcase_15 AC 628 ms
55,188 KB
testcase_16 AC 629 ms
54,640 KB
testcase_17 AC 626 ms
54,760 KB
testcase_18 AC 638 ms
54,996 KB
testcase_19 AC 639 ms
54,212 KB
testcase_20 AC 626 ms
55,968 KB
testcase_21 AC 633 ms
54,284 KB
testcase_22 AC 633 ms
53,676 KB
testcase_23 AC 632 ms
54,624 KB
testcase_24 AC 639 ms
54,132 KB
testcase_25 AC 636 ms
54,668 KB
testcase_26 AC 633 ms
54,140 KB
testcase_27 AC 643 ms
54,564 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