結果

問題 No.725 木は明らかに森である
ユーザー getty104getty104
提出日時 2018-09-11 15:17:20
言語 Elixir
(1.16.2)
結果
AC  
実行時間 586 ms / 2,000 ms
コード長 133 bytes
コンパイル時間 1,027 ms
コンパイル使用メモリ 63,788 KB
実行使用メモリ 56,156 KB
最終ジャッジ日時 2024-06-09 22:11:33
合計ジャッジ時間 6,919 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 536 ms
53,856 KB
testcase_01 AC 558 ms
54,096 KB
testcase_02 AC 586 ms
54,860 KB
testcase_03 AC 566 ms
56,024 KB
testcase_04 AC 555 ms
56,156 KB
testcase_05 AC 564 ms
54,408 KB
testcase_06 AC 565 ms
54,324 KB
testcase_07 AC 565 ms
55,452 KB
testcase_08 AC 578 ms
54,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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