結果

問題 No.207 世界のなんとか
ユーザー gemmarogemmaro
提出日時 2020-04-16 20:51:32
言語 Elixir
(1.16.2)
結果
AC  
実行時間 552 ms / 5,000 ms
コード長 354 bytes
コンパイル時間 984 ms
コンパイル使用メモリ 62,964 KB
実行使用メモリ 54,412 KB
最終ジャッジ日時 2024-06-09 23:27:55
合計ジャッジ時間 12,236 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 532 ms
54,092 KB
testcase_01 AC 527 ms
54,192 KB
testcase_02 AC 523 ms
54,348 KB
testcase_03 AC 532 ms
54,068 KB
testcase_04 AC 535 ms
53,928 KB
testcase_05 AC 537 ms
53,808 KB
testcase_06 AC 552 ms
53,616 KB
testcase_07 AC 530 ms
54,140 KB
testcase_08 AC 543 ms
53,800 KB
testcase_09 AC 518 ms
54,148 KB
testcase_10 AC 529 ms
54,284 KB
testcase_11 AC 518 ms
54,408 KB
testcase_12 AC 532 ms
53,952 KB
testcase_13 AC 524 ms
53,680 KB
testcase_14 AC 536 ms
53,956 KB
testcase_15 AC 538 ms
54,412 KB
testcase_16 AC 537 ms
54,008 KB
testcase_17 AC 527 ms
54,116 KB
testcase_18 AC 528 ms
54,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    IO.read(:line)
    |> String.split()
    |> Enum.map(&String.to_integer/1)
    |> solve
    |> IO.puts()
  end

  defp solve([a, b]) do
    a..b
    |> Enum.filter(fn i ->
      i |> rem(3) == 0 ||
        i |> to_string |> String.to_charlist() |> Enum.count(&(&1 == ?3)) >= 1
    end)
    |> Enum.join("\n")
  end
end
0