結果

問題 No.207 世界のなんとか
ユーザー 3qvwn3qvwn
提出日時 2019-07-02 00:07:31
言語 Elixir
(1.16.2)
結果
AC  
実行時間 598 ms / 5,000 ms
コード長 357 bytes
コンパイル時間 1,154 ms
コンパイル使用メモリ 62,568 KB
実行使用メモリ 55,476 KB
最終ジャッジ日時 2024-06-09 22:43:29
合計ジャッジ時間 13,167 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 561 ms
54,124 KB
testcase_01 AC 570 ms
54,608 KB
testcase_02 AC 598 ms
53,940 KB
testcase_03 AC 553 ms
53,980 KB
testcase_04 AC 558 ms
54,720 KB
testcase_05 AC 570 ms
54,188 KB
testcase_06 AC 543 ms
55,476 KB
testcase_07 AC 549 ms
53,804 KB
testcase_08 AC 569 ms
54,576 KB
testcase_09 AC 586 ms
54,000 KB
testcase_10 AC 598 ms
53,856 KB
testcase_11 AC 565 ms
53,884 KB
testcase_12 AC 594 ms
53,872 KB
testcase_13 AC 581 ms
53,984 KB
testcase_14 AC 586 ms
54,332 KB
testcase_15 AC 577 ms
54,124 KB
testcase_16 AC 563 ms
55,380 KB
testcase_17 AC 563 ms
53,864 KB
testcase_18 AC 543 ms
54,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    [a,b] = IO.gets("") |> String.trim |> String.split |> Enum.map(&String.to_integer(&1))
    Enum.map(a..b, fn num -> nabeatu(num) end)
  end
  
  def nabeatu(num) do
    cond do
      rem(num, 3) == 0 -> IO.puts num
      num |> Integer.to_string |> String.contains?("3") -> IO.puts num
      true -> nil
    end
  end
end
0