結果

問題 No.495 (^^*) Easy
ユーザー gemmarogemmaro
提出日時 2020-04-15 09:53:34
言語 Elixir
(1.16.2)
結果
AC  
実行時間 668 ms / 2,000 ms
コード長 232 bytes
コンパイル時間 925 ms
コンパイル使用メモリ 62,888 KB
実行使用メモリ 62,112 KB
最終ジャッジ日時 2024-06-09 23:24:07
合計ジャッジ時間 6,029 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 513 ms
53,680 KB
testcase_01 AC 528 ms
54,100 KB
testcase_02 AC 521 ms
53,676 KB
testcase_03 AC 531 ms
54,056 KB
testcase_04 AC 541 ms
54,032 KB
testcase_05 AC 564 ms
54,064 KB
testcase_06 AC 668 ms
62,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

  defp solve(s) do
    [~r/\^\*/, ~r/\*\^/]
    |> Enum.map(&(Regex.scan(&1, s) |> length))
    |> Enum.join(" ")
  end
end
0