結果

問題 No.725 木は明らかに森である
ユーザー getty104getty104
提出日時 2018-09-11 15:17:20
言語 Elixir
(1.16.2)
結果
AC  
実行時間 673 ms / 2,000 ms
コード長 133 bytes
コンパイル時間 1,075 ms
コンパイル使用メモリ 55,332 KB
実行使用メモリ 50,212 KB
最終ジャッジ日時 2023-08-29 22:56:50
合計ジャッジ時間 8,509 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 658 ms
49,956 KB
testcase_01 AC 668 ms
50,060 KB
testcase_02 AC 664 ms
49,304 KB
testcase_03 AC 657 ms
49,392 KB
testcase_04 AC 664 ms
49,240 KB
testcase_05 AC 665 ms
50,024 KB
testcase_06 AC 655 ms
50,212 KB
testcase_07 AC 673 ms
49,952 KB
testcase_08 AC 664 ms
49,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    str = IO.gets("") |> String.trim
    IO.puts Regex.replace(~r/treeone/, str, "forest")
  end
end
0