結果

問題 No.207 世界のなんとか
ユーザー 3qvwn3qvwn
提出日時 2019-07-02 00:07:31
言語 Elixir
(1.18.1)
結果
AC  
実行時間 584 ms / 5,000 ms
コード長 357 bytes
コンパイル時間 1,197 ms
コンパイル使用メモリ 64,012 KB
実行使用メモリ 55,300 KB
最終ジャッジ日時 2024-12-31 03:05:19
合計ジャッジ時間 12,934 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 564 ms
53,872 KB
testcase_01 AC 551 ms
54,224 KB
testcase_02 AC 584 ms
54,996 KB
testcase_03 AC 555 ms
53,924 KB
testcase_04 AC 563 ms
54,536 KB
testcase_05 AC 580 ms
54,808 KB
testcase_06 AC 558 ms
54,156 KB
testcase_07 AC 562 ms
54,804 KB
testcase_08 AC 551 ms
53,860 KB
testcase_09 AC 568 ms
54,560 KB
testcase_10 AC 567 ms
54,000 KB
testcase_11 AC 564 ms
54,228 KB
testcase_12 AC 580 ms
55,300 KB
testcase_13 AC 563 ms
54,296 KB
testcase_14 AC 567 ms
54,484 KB
testcase_15 AC 569 ms
54,124 KB
testcase_16 AC 553 ms
54,112 KB
testcase_17 AC 547 ms
54,160 KB
testcase_18 AC 541 ms
54,364 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